diff --git a/grammar.js b/grammar.js index 0d1b2be..82ea841 100644 --- a/grammar.js +++ b/grammar.js @@ -1018,7 +1018,10 @@ module.exports = grammar({ reference_expression: $ => prec(PREC.unary, seq( '&', - optional($.mutable_specifier), + choice( + seq('raw', choice('const', $.mutable_specifier)), + optional($.mutable_specifier), + ), field('value', $._expression), )), diff --git a/queries/highlights.scm b/queries/highlights.scm index 66adfd7..48c7284 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -121,6 +121,7 @@ "mod" @keyword "move" @keyword "pub" @keyword +"raw" @keyword "ref" @keyword "return" @keyword "static" @keyword diff --git a/src/grammar.json b/src/grammar.json index 60ec724..378ac5d 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -5717,11 +5717,38 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "mutable_specifier" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "raw" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "const" + }, + { + "type": "SYMBOL", + "name": "mutable_specifier" + } + ] + } + ] }, { - "type": "BLANK" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "mutable_specifier" + }, + { + "type": "BLANK" + } + ] } ] }, diff --git a/src/node-types.json b/src/node-types.json index 2ec8009..0b09861 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -5307,6 +5307,10 @@ "type": "pub", "named": false }, + { + "type": "raw", + "named": false + }, { "type": "ref", "named": false diff --git a/src/parser.c b/src/parser.c index 9820ce7..5914aaf 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3636 -#define LARGE_STATE_COUNT 1010 -#define SYMBOL_COUNT 345 +#define STATE_COUNT 3646 +#define LARGE_STATE_COUNT 1014 +#define SYMBOL_COUNT 346 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 154 +#define TOKEN_COUNT 155 #define EXTERNAL_TOKEN_COUNT 10 #define FIELD_COUNT 31 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 279 +#define PRODUCTION_ID_COUNT 280 enum ts_symbol_identifiers { sym_identifier = 1, @@ -136,234 +136,235 @@ enum ts_symbol_identifiers { anon_sym_LT2 = 118, anon_sym_dyn = 119, sym_mutable_specifier = 120, - anon_sym_yield = 121, - anon_sym_move = 122, - anon_sym_try = 123, - sym_integer_literal = 124, - aux_sym_string_literal_token1 = 125, - anon_sym_DQUOTE = 126, - sym_char_literal = 127, - sym_escape_sequence = 128, - anon_sym_true = 129, - anon_sym_false = 130, - anon_sym_SLASH_SLASH = 131, - aux_sym_line_comment_token1 = 132, - aux_sym_line_comment_token2 = 133, - aux_sym_line_comment_token3 = 134, - anon_sym_BANG2 = 135, - anon_sym_SLASH2 = 136, - anon_sym_SLASH_STAR = 137, - anon_sym_STAR_SLASH = 138, - sym_shebang = 139, - sym_self = 140, - sym_super = 141, - sym_crate = 142, - sym_metavariable = 143, - sym_string_content = 144, - sym__raw_string_literal_start = 145, - sym_raw_string_literal_content = 146, - sym__raw_string_literal_end = 147, - sym_float_literal = 148, - sym__outer_block_doc_comment_marker = 149, - sym__inner_block_doc_comment_marker = 150, - sym__block_comment_content = 151, - sym__line_doc_content = 152, - sym__error_sentinel = 153, - sym_source_file = 154, - sym__statement = 155, - sym_empty_statement = 156, - sym_expression_statement = 157, - sym_macro_definition = 158, - sym_macro_rule = 159, - sym__token_pattern = 160, - sym_token_tree_pattern = 161, - sym_token_binding_pattern = 162, - sym_token_repetition_pattern = 163, - sym_fragment_specifier = 164, - sym_token_tree = 165, - sym_token_repetition = 166, - sym_attribute_item = 167, - sym_inner_attribute_item = 168, - sym_attribute = 169, - sym_mod_item = 170, - sym_foreign_mod_item = 171, - sym_declaration_list = 172, - sym_struct_item = 173, - sym_union_item = 174, - sym_enum_item = 175, - sym_enum_variant_list = 176, - sym_enum_variant = 177, - sym_field_declaration_list = 178, - sym_field_declaration = 179, - sym_ordered_field_declaration_list = 180, - sym_extern_crate_declaration = 181, - sym_const_item = 182, - sym_static_item = 183, - sym_type_item = 184, - sym_function_item = 185, - sym_function_signature_item = 186, - sym_function_modifiers = 187, - sym_where_clause = 188, - sym_where_predicate = 189, - sym_impl_item = 190, - sym_trait_item = 191, - sym_associated_type = 192, - sym_trait_bounds = 193, - sym_higher_ranked_trait_bound = 194, - sym_removed_trait_bound = 195, - sym_type_parameters = 196, - sym_const_parameter = 197, - sym_constrained_type_parameter = 198, - sym_optional_type_parameter = 199, - sym_let_declaration = 200, - sym_use_declaration = 201, - sym__use_clause = 202, - sym_scoped_use_list = 203, - sym_use_list = 204, - sym_use_as_clause = 205, - sym_use_wildcard = 206, - sym_parameters = 207, - sym_self_parameter = 208, - sym_variadic_parameter = 209, - sym_parameter = 210, - sym_extern_modifier = 211, - sym_visibility_modifier = 212, - sym__type = 213, - sym_bracketed_type = 214, - sym_qualified_type = 215, - sym_lifetime = 216, - sym_array_type = 217, - sym_for_lifetimes = 218, - sym_function_type = 219, - sym_tuple_type = 220, - sym_unit_type = 221, - sym_generic_function = 222, - sym_generic_type = 223, - sym_generic_type_with_turbofish = 224, - sym_bounded_type = 225, - sym_type_arguments = 226, - sym_type_binding = 227, - sym_reference_type = 228, - sym_pointer_type = 229, - sym_never_type = 230, - sym_abstract_type = 231, - sym_dynamic_type = 232, - sym__expression_except_range = 233, - sym__expression = 234, - sym_macro_invocation = 235, - sym_delim_token_tree = 236, - sym__delim_tokens = 237, - sym__non_delim_token = 238, - sym_scoped_identifier = 239, - sym_scoped_type_identifier_in_expression_position = 240, - sym_scoped_type_identifier = 241, - sym_range_expression = 242, - sym_unary_expression = 243, - sym_try_expression = 244, - sym_reference_expression = 245, - sym_binary_expression = 246, - sym_assignment_expression = 247, - sym_compound_assignment_expr = 248, - sym_type_cast_expression = 249, - sym_return_expression = 250, - sym_yield_expression = 251, - sym_call_expression = 252, - sym_arguments = 253, - sym_array_expression = 254, - sym_parenthesized_expression = 255, - sym_tuple_expression = 256, - sym_unit_expression = 257, - sym_struct_expression = 258, - sym_field_initializer_list = 259, - sym_shorthand_field_initializer = 260, - sym_field_initializer = 261, - sym_base_field_initializer = 262, - sym_if_expression = 263, - sym_let_condition = 264, - sym__let_chain = 265, - sym__condition = 266, - sym_else_clause = 267, - sym_match_expression = 268, - sym_match_block = 269, - sym_match_arm = 270, - sym_last_match_arm = 271, - sym_match_pattern = 272, - sym_while_expression = 273, - sym_loop_expression = 274, - sym_for_expression = 275, - sym_const_block = 276, - sym_closure_expression = 277, - sym_closure_parameters = 278, - sym_label = 279, - sym_break_expression = 280, - sym_continue_expression = 281, - sym_index_expression = 282, - sym_await_expression = 283, - sym_field_expression = 284, - sym_unsafe_block = 285, - sym_async_block = 286, - sym_gen_block = 287, - sym_try_block = 288, - sym_block = 289, - sym__pattern = 290, - sym_tuple_pattern = 291, - sym_slice_pattern = 292, - sym_tuple_struct_pattern = 293, - sym_struct_pattern = 294, - sym_field_pattern = 295, - sym_remaining_field_pattern = 296, - sym_mut_pattern = 297, - sym_range_pattern = 298, - sym_ref_pattern = 299, - sym_captured_pattern = 300, - sym_reference_pattern = 301, - sym_or_pattern = 302, - sym__literal = 303, - sym__literal_pattern = 304, - sym_negative_literal = 305, - sym_string_literal = 306, - sym_raw_string_literal = 307, - sym_boolean_literal = 308, - sym_line_comment = 309, - sym__line_doc_comment_marker = 310, - sym__inner_line_doc_comment_marker = 311, - sym__outer_line_doc_comment_marker = 312, - sym_block_comment = 313, - sym__block_doc_comment_marker = 314, - aux_sym_source_file_repeat1 = 315, - aux_sym_macro_definition_repeat1 = 316, - aux_sym_token_tree_pattern_repeat1 = 317, - aux_sym_token_tree_repeat1 = 318, - aux_sym__non_special_token_repeat1 = 319, - aux_sym_declaration_list_repeat1 = 320, - aux_sym_enum_variant_list_repeat1 = 321, - aux_sym_enum_variant_list_repeat2 = 322, - aux_sym_field_declaration_list_repeat1 = 323, - aux_sym_ordered_field_declaration_list_repeat1 = 324, - aux_sym_function_modifiers_repeat1 = 325, - aux_sym_where_clause_repeat1 = 326, - aux_sym_trait_bounds_repeat1 = 327, - aux_sym_type_parameters_repeat1 = 328, - aux_sym_use_list_repeat1 = 329, - aux_sym_parameters_repeat1 = 330, - aux_sym_for_lifetimes_repeat1 = 331, - aux_sym_tuple_type_repeat1 = 332, - aux_sym_type_arguments_repeat1 = 333, - aux_sym_delim_token_tree_repeat1 = 334, - aux_sym_arguments_repeat1 = 335, - aux_sym_tuple_expression_repeat1 = 336, - aux_sym_field_initializer_list_repeat1 = 337, - aux_sym_match_block_repeat1 = 338, - aux_sym_match_arm_repeat1 = 339, - aux_sym_closure_parameters_repeat1 = 340, - aux_sym_tuple_pattern_repeat1 = 341, - aux_sym_slice_pattern_repeat1 = 342, - aux_sym_struct_pattern_repeat1 = 343, - aux_sym_string_literal_repeat1 = 344, - alias_sym_field_identifier = 345, - alias_sym_let_chain = 346, - alias_sym_shorthand_field_identifier = 347, - alias_sym_type_identifier = 348, + anon_sym_raw = 121, + anon_sym_yield = 122, + anon_sym_move = 123, + anon_sym_try = 124, + sym_integer_literal = 125, + aux_sym_string_literal_token1 = 126, + anon_sym_DQUOTE = 127, + sym_char_literal = 128, + sym_escape_sequence = 129, + anon_sym_true = 130, + anon_sym_false = 131, + anon_sym_SLASH_SLASH = 132, + aux_sym_line_comment_token1 = 133, + aux_sym_line_comment_token2 = 134, + aux_sym_line_comment_token3 = 135, + anon_sym_BANG2 = 136, + anon_sym_SLASH2 = 137, + anon_sym_SLASH_STAR = 138, + anon_sym_STAR_SLASH = 139, + sym_shebang = 140, + sym_self = 141, + sym_super = 142, + sym_crate = 143, + sym_metavariable = 144, + sym_string_content = 145, + sym__raw_string_literal_start = 146, + sym_raw_string_literal_content = 147, + sym__raw_string_literal_end = 148, + sym_float_literal = 149, + sym__outer_block_doc_comment_marker = 150, + sym__inner_block_doc_comment_marker = 151, + sym__block_comment_content = 152, + sym__line_doc_content = 153, + sym__error_sentinel = 154, + sym_source_file = 155, + sym__statement = 156, + sym_empty_statement = 157, + sym_expression_statement = 158, + sym_macro_definition = 159, + sym_macro_rule = 160, + sym__token_pattern = 161, + sym_token_tree_pattern = 162, + sym_token_binding_pattern = 163, + sym_token_repetition_pattern = 164, + sym_fragment_specifier = 165, + sym_token_tree = 166, + sym_token_repetition = 167, + sym_attribute_item = 168, + sym_inner_attribute_item = 169, + sym_attribute = 170, + sym_mod_item = 171, + sym_foreign_mod_item = 172, + sym_declaration_list = 173, + sym_struct_item = 174, + sym_union_item = 175, + sym_enum_item = 176, + sym_enum_variant_list = 177, + sym_enum_variant = 178, + sym_field_declaration_list = 179, + sym_field_declaration = 180, + sym_ordered_field_declaration_list = 181, + sym_extern_crate_declaration = 182, + sym_const_item = 183, + sym_static_item = 184, + sym_type_item = 185, + sym_function_item = 186, + sym_function_signature_item = 187, + sym_function_modifiers = 188, + sym_where_clause = 189, + sym_where_predicate = 190, + sym_impl_item = 191, + sym_trait_item = 192, + sym_associated_type = 193, + sym_trait_bounds = 194, + sym_higher_ranked_trait_bound = 195, + sym_removed_trait_bound = 196, + sym_type_parameters = 197, + sym_const_parameter = 198, + sym_constrained_type_parameter = 199, + sym_optional_type_parameter = 200, + sym_let_declaration = 201, + sym_use_declaration = 202, + sym__use_clause = 203, + sym_scoped_use_list = 204, + sym_use_list = 205, + sym_use_as_clause = 206, + sym_use_wildcard = 207, + sym_parameters = 208, + sym_self_parameter = 209, + sym_variadic_parameter = 210, + sym_parameter = 211, + sym_extern_modifier = 212, + sym_visibility_modifier = 213, + sym__type = 214, + sym_bracketed_type = 215, + sym_qualified_type = 216, + sym_lifetime = 217, + sym_array_type = 218, + sym_for_lifetimes = 219, + sym_function_type = 220, + sym_tuple_type = 221, + sym_unit_type = 222, + sym_generic_function = 223, + sym_generic_type = 224, + sym_generic_type_with_turbofish = 225, + sym_bounded_type = 226, + sym_type_arguments = 227, + sym_type_binding = 228, + sym_reference_type = 229, + sym_pointer_type = 230, + sym_never_type = 231, + sym_abstract_type = 232, + sym_dynamic_type = 233, + sym__expression_except_range = 234, + sym__expression = 235, + sym_macro_invocation = 236, + sym_delim_token_tree = 237, + sym__delim_tokens = 238, + sym__non_delim_token = 239, + sym_scoped_identifier = 240, + sym_scoped_type_identifier_in_expression_position = 241, + sym_scoped_type_identifier = 242, + sym_range_expression = 243, + sym_unary_expression = 244, + sym_try_expression = 245, + sym_reference_expression = 246, + sym_binary_expression = 247, + sym_assignment_expression = 248, + sym_compound_assignment_expr = 249, + sym_type_cast_expression = 250, + sym_return_expression = 251, + sym_yield_expression = 252, + sym_call_expression = 253, + sym_arguments = 254, + sym_array_expression = 255, + sym_parenthesized_expression = 256, + sym_tuple_expression = 257, + sym_unit_expression = 258, + sym_struct_expression = 259, + sym_field_initializer_list = 260, + sym_shorthand_field_initializer = 261, + sym_field_initializer = 262, + sym_base_field_initializer = 263, + sym_if_expression = 264, + sym_let_condition = 265, + sym__let_chain = 266, + sym__condition = 267, + sym_else_clause = 268, + sym_match_expression = 269, + sym_match_block = 270, + sym_match_arm = 271, + sym_last_match_arm = 272, + sym_match_pattern = 273, + sym_while_expression = 274, + sym_loop_expression = 275, + sym_for_expression = 276, + sym_const_block = 277, + sym_closure_expression = 278, + sym_closure_parameters = 279, + sym_label = 280, + sym_break_expression = 281, + sym_continue_expression = 282, + sym_index_expression = 283, + sym_await_expression = 284, + sym_field_expression = 285, + sym_unsafe_block = 286, + sym_async_block = 287, + sym_gen_block = 288, + sym_try_block = 289, + sym_block = 290, + sym__pattern = 291, + sym_tuple_pattern = 292, + sym_slice_pattern = 293, + sym_tuple_struct_pattern = 294, + sym_struct_pattern = 295, + sym_field_pattern = 296, + sym_remaining_field_pattern = 297, + sym_mut_pattern = 298, + sym_range_pattern = 299, + sym_ref_pattern = 300, + sym_captured_pattern = 301, + sym_reference_pattern = 302, + sym_or_pattern = 303, + sym__literal = 304, + sym__literal_pattern = 305, + sym_negative_literal = 306, + sym_string_literal = 307, + sym_raw_string_literal = 308, + sym_boolean_literal = 309, + sym_line_comment = 310, + sym__line_doc_comment_marker = 311, + sym__inner_line_doc_comment_marker = 312, + sym__outer_line_doc_comment_marker = 313, + sym_block_comment = 314, + sym__block_doc_comment_marker = 315, + aux_sym_source_file_repeat1 = 316, + aux_sym_macro_definition_repeat1 = 317, + aux_sym_token_tree_pattern_repeat1 = 318, + aux_sym_token_tree_repeat1 = 319, + aux_sym__non_special_token_repeat1 = 320, + aux_sym_declaration_list_repeat1 = 321, + aux_sym_enum_variant_list_repeat1 = 322, + aux_sym_enum_variant_list_repeat2 = 323, + aux_sym_field_declaration_list_repeat1 = 324, + aux_sym_ordered_field_declaration_list_repeat1 = 325, + aux_sym_function_modifiers_repeat1 = 326, + aux_sym_where_clause_repeat1 = 327, + aux_sym_trait_bounds_repeat1 = 328, + aux_sym_type_parameters_repeat1 = 329, + aux_sym_use_list_repeat1 = 330, + aux_sym_parameters_repeat1 = 331, + aux_sym_for_lifetimes_repeat1 = 332, + aux_sym_tuple_type_repeat1 = 333, + aux_sym_type_arguments_repeat1 = 334, + aux_sym_delim_token_tree_repeat1 = 335, + aux_sym_arguments_repeat1 = 336, + aux_sym_tuple_expression_repeat1 = 337, + aux_sym_field_initializer_list_repeat1 = 338, + aux_sym_match_block_repeat1 = 339, + aux_sym_match_arm_repeat1 = 340, + aux_sym_closure_parameters_repeat1 = 341, + aux_sym_tuple_pattern_repeat1 = 342, + aux_sym_slice_pattern_repeat1 = 343, + aux_sym_struct_pattern_repeat1 = 344, + aux_sym_string_literal_repeat1 = 345, + alias_sym_field_identifier = 346, + alias_sym_let_chain = 347, + alias_sym_shorthand_field_identifier = 348, + alias_sym_type_identifier = 349, }; static const char * const ts_symbol_names[] = { @@ -488,6 +489,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_LT2] = "<", [anon_sym_dyn] = "dyn", [sym_mutable_specifier] = "mutable_specifier", + [anon_sym_raw] = "raw", [anon_sym_yield] = "yield", [anon_sym_move] = "move", [anon_sym_try] = "try", @@ -840,6 +842,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LT2] = anon_sym_LT, [anon_sym_dyn] = anon_sym_dyn, [sym_mutable_specifier] = sym_mutable_specifier, + [anon_sym_raw] = anon_sym_raw, [anon_sym_yield] = anon_sym_yield, [anon_sym_move] = anon_sym_move, [anon_sym_try] = anon_sym_try, @@ -1555,6 +1558,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [anon_sym_raw] = { + .visible = true, + .named = false, + }, [anon_sym_yield] = { .visible = true, .named = false, @@ -2595,225 +2602,226 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [52] = {.index = 44, .length = 2}, [53] = {.index = 11, .length = 3}, [54] = {.index = 3, .length = 1}, - [56] = {.index = 56, .length = 1}, - [57] = {.index = 56, .length = 1}, + [55] = {.index = 56, .length = 1}, + [57] = {.index = 57, .length = 1}, [58] = {.index = 57, .length = 1}, - [60] = {.index = 58, .length = 2}, - [61] = {.index = 56, .length = 1}, - [62] = {.index = 60, .length = 1}, + [59] = {.index = 58, .length = 1}, + [61] = {.index = 59, .length = 2}, + [62] = {.index = 57, .length = 1}, [63] = {.index = 61, .length = 1}, [64] = {.index = 62, .length = 1}, - [65] = {.index = 63, .length = 2}, - [66] = {.index = 65, .length = 2}, - [67] = {.index = 65, .length = 2}, - [68] = {.index = 67, .length = 1}, - [69] = {.index = 67, .length = 1}, - [70] = {.index = 57, .length = 1}, - [71] = {.index = 68, .length = 2}, - [72] = {.index = 70, .length = 3}, - [73] = {.index = 73, .length = 2}, - [74] = {.index = 75, .length = 3}, - [75] = {.index = 78, .length = 3}, - [77] = {.index = 81, .length = 2}, - [78] = {.index = 81, .length = 2}, - [79] = {.index = 83, .length = 2}, - [80] = {.index = 85, .length = 3}, - [81] = {.index = 88, .length = 2}, - [82] = {.index = 90, .length = 1}, - [83] = {.index = 91, .length = 2}, - [84] = {.index = 93, .length = 2}, - [85] = {.index = 95, .length = 3}, - [86] = {.index = 98, .length = 2}, - [87] = {.index = 100, .length = 2}, - [88] = {.index = 102, .length = 2}, - [89] = {.index = 104, .length = 2}, - [90] = {.index = 106, .length = 2}, - [91] = {.index = 104, .length = 2}, - [92] = {.index = 106, .length = 2}, - [93] = {.index = 108, .length = 1}, - [94] = {.index = 102, .length = 2}, - [95] = {.index = 108, .length = 1}, + [65] = {.index = 63, .length = 1}, + [66] = {.index = 64, .length = 2}, + [67] = {.index = 66, .length = 2}, + [68] = {.index = 66, .length = 2}, + [69] = {.index = 68, .length = 1}, + [70] = {.index = 68, .length = 1}, + [71] = {.index = 58, .length = 1}, + [72] = {.index = 69, .length = 2}, + [73] = {.index = 71, .length = 3}, + [74] = {.index = 74, .length = 2}, + [75] = {.index = 76, .length = 3}, + [76] = {.index = 79, .length = 3}, + [78] = {.index = 82, .length = 2}, + [79] = {.index = 82, .length = 2}, + [80] = {.index = 84, .length = 2}, + [81] = {.index = 86, .length = 3}, + [82] = {.index = 89, .length = 2}, + [83] = {.index = 91, .length = 1}, + [84] = {.index = 92, .length = 2}, + [85] = {.index = 94, .length = 2}, + [86] = {.index = 96, .length = 3}, + [87] = {.index = 99, .length = 2}, + [88] = {.index = 101, .length = 2}, + [89] = {.index = 103, .length = 2}, + [90] = {.index = 105, .length = 2}, + [91] = {.index = 107, .length = 2}, + [92] = {.index = 105, .length = 2}, + [93] = {.index = 107, .length = 2}, + [94] = {.index = 109, .length = 1}, + [95] = {.index = 103, .length = 2}, [96] = {.index = 109, .length = 1}, - [97] = {.index = 110, .length = 3}, - [98] = {.index = 113, .length = 1}, + [97] = {.index = 110, .length = 1}, + [98] = {.index = 111, .length = 3}, [99] = {.index = 114, .length = 1}, - [100] = {.index = 115, .length = 2}, - [101] = {.index = 3, .length = 1}, - [102] = {.index = 117, .length = 1}, - [103] = {.index = 118, .length = 2}, - [104] = {.index = 120, .length = 1}, - [105] = {.index = 120, .length = 1}, - [106] = {.index = 121, .length = 3}, - [107] = {.index = 124, .length = 1}, - [108] = {.index = 121, .length = 3}, - [109] = {.index = 18, .length = 1}, - [110] = {.index = 125, .length = 2}, - [111] = {.index = 127, .length = 3}, - [112] = {.index = 130, .length = 3}, - [113] = {.index = 133, .length = 4}, - [114] = {.index = 137, .length = 3}, - [115] = {.index = 140, .length = 3}, - [116] = {.index = 143, .length = 2}, - [117] = {.index = 145, .length = 2}, - [118] = {.index = 145, .length = 2}, - [120] = {.index = 147, .length = 2}, - [121] = {.index = 149, .length = 3}, - [122] = {.index = 152, .length = 3}, - [123] = {.index = 147, .length = 2}, - [124] = {.index = 149, .length = 3}, - [125] = {.index = 155, .length = 2}, - [127] = {.index = 157, .length = 3}, - [128] = {.index = 160, .length = 3}, - [129] = {.index = 163, .length = 4}, - [130] = {.index = 125, .length = 2}, - [131] = {.index = 167, .length = 3}, - [132] = {.index = 170, .length = 2}, - [133] = {.index = 172, .length = 3}, - [134] = {.index = 175, .length = 2}, - [135] = {.index = 177, .length = 2}, - [136] = {.index = 179, .length = 3}, - [137] = {.index = 182, .length = 3}, - [138] = {.index = 185, .length = 2}, - [139] = {.index = 185, .length = 2}, - [140] = {.index = 187, .length = 2}, - [141] = {.index = 189, .length = 3}, - [142] = {.index = 192, .length = 2}, - [143] = {.index = 194, .length = 2}, - [144] = {.index = 196, .length = 1}, - [145] = {.index = 197, .length = 2}, - [146] = {.index = 199, .length = 1}, - [147] = {.index = 200, .length = 2}, - [148] = {.index = 108, .length = 1}, - [149] = {.index = 202, .length = 2}, - [150] = {.index = 204, .length = 2}, - [151] = {.index = 206, .length = 1}, - [152] = {.index = 207, .length = 2}, - [153] = {.index = 209, .length = 3}, - [154] = {.index = 209, .length = 3}, - [155] = {.index = 212, .length = 2}, - [156] = {.index = 214, .length = 4}, - [157] = {.index = 218, .length = 3}, - [158] = {.index = 221, .length = 4}, - [159] = {.index = 225, .length = 2}, - [160] = {.index = 227, .length = 3}, - [161] = {.index = 225, .length = 2}, - [162] = {.index = 227, .length = 3}, - [163] = {.index = 230, .length = 3}, - [164] = {.index = 233, .length = 3}, - [165] = {.index = 236, .length = 4}, - [166] = {.index = 233, .length = 3}, - [167] = {.index = 236, .length = 4}, - [168] = {.index = 230, .length = 3}, - [169] = {.index = 240, .length = 2}, - [170] = {.index = 242, .length = 2}, - [171] = {.index = 244, .length = 2}, - [172] = {.index = 246, .length = 2}, - [173] = {.index = 248, .length = 1}, - [174] = {.index = 249, .length = 2}, - [175] = {.index = 251, .length = 3}, - [176] = {.index = 254, .length = 2}, - [177] = {.index = 256, .length = 2}, - [178] = {.index = 200, .length = 2}, - [179] = {.index = 258, .length = 4}, - [180] = {.index = 262, .length = 3}, - [181] = {.index = 265, .length = 3}, - [182] = {.index = 268, .length = 3}, - [183] = {.index = 271, .length = 3}, - [184] = {.index = 274, .length = 4}, - [185] = {.index = 278, .length = 2}, - [186] = {.index = 280, .length = 2}, - [187] = {.index = 280, .length = 2}, - [188] = {.index = 282, .length = 3}, - [189] = {.index = 285, .length = 4}, - [190] = {.index = 289, .length = 3}, - [191] = {.index = 249, .length = 2}, - [192] = {.index = 292, .length = 2}, - [193] = {.index = 294, .length = 3}, - [194] = {.index = 297, .length = 3}, - [195] = {.index = 300, .length = 2}, - [196] = {.index = 302, .length = 3}, - [197] = {.index = 200, .length = 2}, - [198] = {.index = 305, .length = 3}, - [199] = {.index = 308, .length = 2}, - [200] = {.index = 310, .length = 2}, - [201] = {.index = 312, .length = 3}, - [202] = {.index = 315, .length = 3}, - [203] = {.index = 318, .length = 2}, - [204] = {.index = 320, .length = 4}, - [205] = {.index = 324, .length = 5}, - [206] = {.index = 329, .length = 4}, - [207] = {.index = 333, .length = 3}, - [208] = {.index = 333, .length = 3}, - [209] = {.index = 336, .length = 3}, - [210] = {.index = 339, .length = 4}, - [211] = {.index = 336, .length = 3}, - [212] = {.index = 339, .length = 4}, - [213] = {.index = 343, .length = 4}, - [214] = {.index = 343, .length = 4}, - [215] = {.index = 347, .length = 3}, - [216] = {.index = 350, .length = 3}, - [217] = {.index = 353, .length = 3}, - [218] = {.index = 356, .length = 2}, - [219] = {.index = 358, .length = 2}, - [220] = {.index = 125, .length = 2}, - [221] = {.index = 360, .length = 2}, - [222] = {.index = 362, .length = 3}, - [223] = {.index = 360, .length = 2}, - [224] = {.index = 362, .length = 3}, - [225] = {.index = 365, .length = 3}, - [226] = {.index = 368, .length = 4}, - [227] = {.index = 365, .length = 3}, - [228] = {.index = 368, .length = 4}, - [229] = {.index = 372, .length = 4}, - [230] = {.index = 376, .length = 4}, - [231] = {.index = 380, .length = 3}, - [232] = {.index = 383, .length = 4}, - [233] = {.index = 387, .length = 3}, - [234] = {.index = 390, .length = 3}, - [235] = {.index = 393, .length = 3}, - [236] = {.index = 396, .length = 4}, - [237] = {.index = 400, .length = 2}, - [238] = {.index = 402, .length = 3}, - [239] = {.index = 405, .length = 4}, - [240] = {.index = 409, .length = 3}, - [241] = {.index = 412, .length = 3}, - [242] = {.index = 415, .length = 2}, - [243] = {.index = 417, .length = 3}, - [244] = {.index = 420, .length = 5}, - [245] = {.index = 425, .length = 4}, - [246] = {.index = 425, .length = 4}, - [247] = {.index = 429, .length = 3}, - [248] = {.index = 432, .length = 3}, - [249] = {.index = 435, .length = 3}, - [250] = {.index = 438, .length = 3}, - [251] = {.index = 441, .length = 2}, - [252] = {.index = 443, .length = 3}, - [253] = {.index = 443, .length = 3}, - [254] = {.index = 446, .length = 3}, - [255] = {.index = 449, .length = 4}, - [256] = {.index = 446, .length = 3}, - [257] = {.index = 449, .length = 4}, - [258] = {.index = 453, .length = 4}, - [259] = {.index = 453, .length = 4}, - [260] = {.index = 457, .length = 4}, - [261] = {.index = 461, .length = 5}, - [262] = {.index = 466, .length = 4}, - [263] = {.index = 470, .length = 2}, - [264] = {.index = 472, .length = 4}, - [265] = {.index = 476, .length = 4}, - [266] = {.index = 480, .length = 3}, - [267] = {.index = 483, .length = 4}, - [268] = {.index = 487, .length = 4}, - [269] = {.index = 491, .length = 3}, - [270] = {.index = 494, .length = 4}, - [271] = {.index = 494, .length = 4}, - [272] = {.index = 498, .length = 5}, - [273] = {.index = 503, .length = 4}, - [274] = {.index = 507, .length = 5}, - [275] = {.index = 512, .length = 4}, - [276] = {.index = 516, .length = 4}, - [277] = {.index = 520, .length = 3}, - [278] = {.index = 523, .length = 5}, + [100] = {.index = 115, .length = 1}, + [101] = {.index = 116, .length = 2}, + [102] = {.index = 3, .length = 1}, + [103] = {.index = 118, .length = 1}, + [104] = {.index = 119, .length = 2}, + [105] = {.index = 121, .length = 1}, + [106] = {.index = 121, .length = 1}, + [107] = {.index = 122, .length = 3}, + [108] = {.index = 125, .length = 1}, + [109] = {.index = 122, .length = 3}, + [110] = {.index = 18, .length = 1}, + [111] = {.index = 126, .length = 2}, + [112] = {.index = 128, .length = 3}, + [113] = {.index = 131, .length = 3}, + [114] = {.index = 134, .length = 4}, + [115] = {.index = 138, .length = 3}, + [116] = {.index = 141, .length = 3}, + [117] = {.index = 144, .length = 2}, + [118] = {.index = 146, .length = 2}, + [119] = {.index = 146, .length = 2}, + [121] = {.index = 148, .length = 2}, + [122] = {.index = 150, .length = 3}, + [123] = {.index = 153, .length = 3}, + [124] = {.index = 148, .length = 2}, + [125] = {.index = 150, .length = 3}, + [126] = {.index = 156, .length = 2}, + [128] = {.index = 158, .length = 3}, + [129] = {.index = 161, .length = 3}, + [130] = {.index = 164, .length = 4}, + [131] = {.index = 126, .length = 2}, + [132] = {.index = 168, .length = 3}, + [133] = {.index = 171, .length = 2}, + [134] = {.index = 173, .length = 3}, + [135] = {.index = 176, .length = 2}, + [136] = {.index = 178, .length = 2}, + [137] = {.index = 180, .length = 3}, + [138] = {.index = 183, .length = 3}, + [139] = {.index = 186, .length = 2}, + [140] = {.index = 186, .length = 2}, + [141] = {.index = 188, .length = 2}, + [142] = {.index = 190, .length = 3}, + [143] = {.index = 193, .length = 2}, + [144] = {.index = 195, .length = 2}, + [145] = {.index = 197, .length = 1}, + [146] = {.index = 198, .length = 2}, + [147] = {.index = 200, .length = 1}, + [148] = {.index = 201, .length = 2}, + [149] = {.index = 109, .length = 1}, + [150] = {.index = 203, .length = 2}, + [151] = {.index = 205, .length = 2}, + [152] = {.index = 207, .length = 1}, + [153] = {.index = 208, .length = 2}, + [154] = {.index = 210, .length = 3}, + [155] = {.index = 210, .length = 3}, + [156] = {.index = 213, .length = 2}, + [157] = {.index = 215, .length = 4}, + [158] = {.index = 219, .length = 3}, + [159] = {.index = 222, .length = 4}, + [160] = {.index = 226, .length = 2}, + [161] = {.index = 228, .length = 3}, + [162] = {.index = 226, .length = 2}, + [163] = {.index = 228, .length = 3}, + [164] = {.index = 231, .length = 3}, + [165] = {.index = 234, .length = 3}, + [166] = {.index = 237, .length = 4}, + [167] = {.index = 234, .length = 3}, + [168] = {.index = 237, .length = 4}, + [169] = {.index = 231, .length = 3}, + [170] = {.index = 241, .length = 2}, + [171] = {.index = 243, .length = 2}, + [172] = {.index = 245, .length = 2}, + [173] = {.index = 247, .length = 2}, + [174] = {.index = 249, .length = 1}, + [175] = {.index = 250, .length = 2}, + [176] = {.index = 252, .length = 3}, + [177] = {.index = 255, .length = 2}, + [178] = {.index = 257, .length = 2}, + [179] = {.index = 201, .length = 2}, + [180] = {.index = 259, .length = 4}, + [181] = {.index = 263, .length = 3}, + [182] = {.index = 266, .length = 3}, + [183] = {.index = 269, .length = 3}, + [184] = {.index = 272, .length = 3}, + [185] = {.index = 275, .length = 4}, + [186] = {.index = 279, .length = 2}, + [187] = {.index = 281, .length = 2}, + [188] = {.index = 281, .length = 2}, + [189] = {.index = 283, .length = 3}, + [190] = {.index = 286, .length = 4}, + [191] = {.index = 290, .length = 3}, + [192] = {.index = 250, .length = 2}, + [193] = {.index = 293, .length = 2}, + [194] = {.index = 295, .length = 3}, + [195] = {.index = 298, .length = 3}, + [196] = {.index = 301, .length = 2}, + [197] = {.index = 303, .length = 3}, + [198] = {.index = 201, .length = 2}, + [199] = {.index = 306, .length = 3}, + [200] = {.index = 309, .length = 2}, + [201] = {.index = 311, .length = 2}, + [202] = {.index = 313, .length = 3}, + [203] = {.index = 316, .length = 3}, + [204] = {.index = 319, .length = 2}, + [205] = {.index = 321, .length = 4}, + [206] = {.index = 325, .length = 5}, + [207] = {.index = 330, .length = 4}, + [208] = {.index = 334, .length = 3}, + [209] = {.index = 334, .length = 3}, + [210] = {.index = 337, .length = 3}, + [211] = {.index = 340, .length = 4}, + [212] = {.index = 337, .length = 3}, + [213] = {.index = 340, .length = 4}, + [214] = {.index = 344, .length = 4}, + [215] = {.index = 344, .length = 4}, + [216] = {.index = 348, .length = 3}, + [217] = {.index = 351, .length = 3}, + [218] = {.index = 354, .length = 3}, + [219] = {.index = 357, .length = 2}, + [220] = {.index = 359, .length = 2}, + [221] = {.index = 126, .length = 2}, + [222] = {.index = 361, .length = 2}, + [223] = {.index = 363, .length = 3}, + [224] = {.index = 361, .length = 2}, + [225] = {.index = 363, .length = 3}, + [226] = {.index = 366, .length = 3}, + [227] = {.index = 369, .length = 4}, + [228] = {.index = 366, .length = 3}, + [229] = {.index = 369, .length = 4}, + [230] = {.index = 373, .length = 4}, + [231] = {.index = 377, .length = 4}, + [232] = {.index = 381, .length = 3}, + [233] = {.index = 384, .length = 4}, + [234] = {.index = 388, .length = 3}, + [235] = {.index = 391, .length = 3}, + [236] = {.index = 394, .length = 3}, + [237] = {.index = 397, .length = 4}, + [238] = {.index = 401, .length = 2}, + [239] = {.index = 403, .length = 3}, + [240] = {.index = 406, .length = 4}, + [241] = {.index = 410, .length = 3}, + [242] = {.index = 413, .length = 3}, + [243] = {.index = 416, .length = 2}, + [244] = {.index = 418, .length = 3}, + [245] = {.index = 421, .length = 5}, + [246] = {.index = 426, .length = 4}, + [247] = {.index = 426, .length = 4}, + [248] = {.index = 430, .length = 3}, + [249] = {.index = 433, .length = 3}, + [250] = {.index = 436, .length = 3}, + [251] = {.index = 439, .length = 3}, + [252] = {.index = 442, .length = 2}, + [253] = {.index = 444, .length = 3}, + [254] = {.index = 444, .length = 3}, + [255] = {.index = 447, .length = 3}, + [256] = {.index = 450, .length = 4}, + [257] = {.index = 447, .length = 3}, + [258] = {.index = 450, .length = 4}, + [259] = {.index = 454, .length = 4}, + [260] = {.index = 454, .length = 4}, + [261] = {.index = 458, .length = 4}, + [262] = {.index = 462, .length = 5}, + [263] = {.index = 467, .length = 4}, + [264] = {.index = 471, .length = 2}, + [265] = {.index = 473, .length = 4}, + [266] = {.index = 477, .length = 4}, + [267] = {.index = 481, .length = 3}, + [268] = {.index = 484, .length = 4}, + [269] = {.index = 488, .length = 4}, + [270] = {.index = 492, .length = 3}, + [271] = {.index = 495, .length = 4}, + [272] = {.index = 495, .length = 4}, + [273] = {.index = 499, .length = 5}, + [274] = {.index = 504, .length = 4}, + [275] = {.index = 508, .length = 5}, + [276] = {.index = 513, .length = 4}, + [277] = {.index = 517, .length = 4}, + [278] = {.index = 521, .length = 3}, + [279] = {.index = 524, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2908,646 +2916,648 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_type, 2}, {field_value, 0}, [56] = - {field_type, 0}, + {field_value, 3}, [57] = - {field_name, 0}, + {field_type, 0}, [58] = + {field_name, 0}, + [59] = {field_pattern, 0}, {field_type, 2}, - [60] = - {field_element, 1}, [61] = - {field_type, 2}, + {field_element, 1}, [62] = - {field_parameters, 2}, + {field_type, 2}, [63] = + {field_parameters, 2}, + [64] = {field_alias, 2}, {field_type, 0}, - [65] = + [66] = {field_parameters, 2}, {field_trait, 1}, - [67] = - {field_arguments, 1}, [68] = + {field_arguments, 1}, + [69] = {field_body, 3}, {field_name, 1}, - [70] = + [71] = {field_body, 3}, {field_name, 1}, {field_type_parameters, 2}, - [73] = + [74] = {field_name, 1}, {field_parameters, 2}, - [75] = + [76] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, - [78] = + [79] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [81] = + [82] = {field_bounds, 1}, {field_left, 0}, - [83] = + [84] = {field_type, 2}, {field_type_parameters, 1}, - [85] = + [86] = {field_body, 3}, {field_type, 2}, {field_type_parameters, 1}, - [88] = + [89] = {field_body, 3}, {field_type, 1}, - [90] = - {field_pattern, 2}, [91] = + {field_pattern, 2}, + [92] = {field_body, 3}, {field_parameters, 2}, - [93] = + [94] = {field_name, 1}, {field_type_parameters, 2}, - [95] = + [96] = {field_body, 3}, {field_bounds, 2}, {field_name, 1}, - [98] = + [99] = {field_bounds, 2}, {field_name, 1}, - [100] = + [101] = {field_body, 3}, {field_type, 2}, - [102] = + [103] = {field_body, 3}, {field_name, 2}, - [104] = + [105] = {field_list, 2}, {field_path, 0}, - [106] = + [107] = {field_alias, 2}, {field_path, 0}, - [108] = - {field_name, 2}, [109] = - {field_argument, 2}, + {field_name, 2}, [110] = + {field_argument, 2}, + [111] = {field_body, 3}, {field_parameters, 0}, {field_return_type, 2}, - [113] = - {field_body, 3}, [114] = - {field_length, 3}, + {field_body, 3}, [115] = + {field_length, 3}, + [116] = {field_pattern, 1}, {field_type, 3}, - [117] = - {field_type, 3}, [118] = + {field_type, 3}, + [119] = {field_parameters, 1}, {field_return_type, 3}, - [120] = - {field_trait, 3}, [121] = + {field_trait, 3}, + [122] = {field_parameters, 1}, {field_return_type, 3}, {field_trait, 0}, - [124] = - {field_parameters, 3}, [125] = + {field_parameters, 3}, + [126] = {field_name, 1}, {field_type, 3}, - [127] = + [128] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [130] = + [131] = {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [133] = + [134] = {field_body, 4}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [137] = + [138] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, - [140] = + [141] = {field_body, 4}, {field_pattern, 1}, {field_value, 3}, - [143] = + [144] = {field_pattern, 1}, {field_value, 3}, - [145] = + [146] = {field_default_type, 2}, {field_name, 0}, - [147] = + [148] = {field_trait, 1}, {field_type, 3}, - [149] = + [150] = {field_body, 4}, {field_trait, 1}, {field_type, 3}, - [152] = + [153] = {field_body, 4}, {field_type, 2}, {field_type_parameters, 1}, - [155] = + [156] = {field_alternative, 3}, {field_pattern, 1}, - [157] = + [158] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 3}, - [160] = + [161] = {field_body, 4}, {field_bounds, 2}, {field_name, 1}, - [163] = + [164] = {field_body, 4}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [167] = + [168] = {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [170] = + [171] = {field_type, 3}, {field_type_parameters, 2}, - [172] = + [173] = {field_body, 4}, {field_type, 3}, {field_type_parameters, 2}, - [175] = + [176] = {field_body, 4}, {field_type, 2}, - [177] = + [178] = {field_body, 4}, {field_name, 2}, - [179] = + [180] = {field_body, 4}, {field_bounds, 3}, {field_name, 2}, - [182] = + [183] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [185] = + [186] = {field_field, 0}, {field_value, 2}, - [187] = + [188] = {field_name, 2}, {field_parameters, 3}, - [189] = + [190] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [192] = + [193] = {field_name, 2}, {field_type_parameters, 3}, - [194] = + [195] = {field_body, 4}, {field_name, 3}, - [196] = - {field_name, 3}, [197] = + {field_name, 3}, + [198] = {field_body, 4}, {field_condition, 3}, - [199] = - {field_length, 4}, [200] = + {field_length, 4}, + [201] = {field_name, 0}, {field_type, 2}, - [202] = + [203] = {field_name, 0}, {field_pattern, 2}, - [204] = + [205] = {field_element, 1}, {field_length, 3}, - [206] = - {field_pattern, 0}, [207] = + {field_pattern, 0}, + [208] = {field_parameters, 2}, {field_return_type, 4}, - [209] = + [210] = {field_parameters, 2}, {field_return_type, 4}, {field_trait, 1}, - [212] = + [213] = {field_name, 0}, {field_value, 2}, - [214] = + [215] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [218] = + [219] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [221] = + [222] = {field_body, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [225] = + [226] = {field_trait, 2}, {field_type, 4}, - [227] = + [228] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, - [230] = + [231] = {field_body, 5}, {field_trait, 1}, {field_type, 3}, - [233] = + [234] = {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [236] = + [237] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [240] = + [241] = {field_pattern, 2}, {field_type, 4}, - [242] = + [243] = {field_pattern, 2}, {field_value, 4}, - [244] = + [245] = {field_alternative, 4}, {field_pattern, 2}, - [246] = + [247] = {field_pattern, 0}, {field_value, 2}, - [248] = - {field_condition, 2}, [249] = + {field_condition, 2}, + [250] = {field_name, 2}, {field_type, 4}, - [251] = + [252] = {field_body, 5}, {field_parameters, 2}, {field_return_type, 4}, - [254] = + [255] = {field_type, 1}, {field_type, 2, .inherited = true}, - [256] = + [257] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [258] = + [259] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [262] = + [263] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [265] = + [266] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [268] = + [269] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [271] = + [272] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [274] = + [275] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [278] = + [279] = {field_alias, 4}, {field_name, 2}, - [280] = + [281] = {field_field, 1}, {field_value, 3}, - [282] = + [283] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [285] = + [286] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [289] = + [290] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [292] = + [293] = {field_body, 5}, {field_name, 3}, - [294] = + [295] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, - [297] = + [298] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, - [300] = + [301] = {field_name, 3}, {field_parameters, 4}, - [302] = + [303] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [305] = + [306] = {field_name, 0}, {field_type, 3}, {field_type_arguments, 1}, - [308] = + [309] = {field_name, 1}, {field_pattern, 3}, - [310] = + [311] = {field_parameters, 3}, {field_return_type, 5}, - [312] = + [313] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [315] = + [316] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [318] = + [319] = {field_name, 1}, {field_value, 3}, - [320] = + [321] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [324] = + [325] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [329] = + [330] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [333] = + [334] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [336] = + [337] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [339] = + [340] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [343] = + [344] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [347] = + [348] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [350] = + [351] = {field_alternative, 5}, {field_pattern, 1}, {field_type, 3}, - [353] = + [354] = {field_alternative, 5}, {field_pattern, 1}, {field_value, 3}, - [356] = + [357] = {field_name, 3}, {field_type, 5}, - [358] = + [359] = {field_type, 2}, {field_type, 3, .inherited = true}, - [360] = + [361] = {field_trait, 3}, {field_type, 5}, - [362] = + [363] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, - [365] = + [366] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [368] = + [369] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [372] = + [373] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [376] = + [377] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [380] = + [381] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [383] = + [384] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [387] = + [388] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [390] = + [391] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, - [393] = + [394] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, - [396] = + [397] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [400] = + [401] = {field_alias, 5}, {field_name, 3}, - [402] = + [403] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [405] = + [406] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [409] = + [410] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [412] = + [413] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [415] = + [416] = {field_name, 2}, {field_pattern, 4}, - [417] = + [418] = {field_body, 2}, {field_name, 1}, {field_value, 4}, - [420] = + [421] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [425] = + [426] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [429] = + [430] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [432] = + [433] = {field_alternative, 6}, {field_pattern, 2}, {field_type, 4}, - [435] = + [436] = {field_alternative, 6}, {field_pattern, 2}, {field_value, 4}, - [438] = + [439] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [441] = + [442] = {field_type, 3}, {field_type, 4, .inherited = true}, - [443] = + [444] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, - [446] = + [447] = {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [449] = + [450] = {field_body, 7}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [453] = + [454] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [457] = + [458] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [461] = + [462] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [466] = + [467] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [470] = + [471] = {field_name, 4}, {field_type, 6}, - [472] = + [473] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [476] = + [477] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [480] = + [481] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [483] = + [484] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [487] = + [488] = {field_alternative, 7}, {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [491] = + [492] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [494] = + [495] = {field_body, 8}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [498] = + [499] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [503] = + [504] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [507] = + [508] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [512] = + [513] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [516] = + [517] = {field_alternative, 8}, {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [520] = + [521] = {field_name, 4}, {field_type, 6}, {field_value, 8}, - [523] = + [524] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, @@ -3619,94 +3629,91 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [54] = { [1] = sym_identifier, }, - [55] = { + [56] = { [0] = sym_identifier, [2] = sym_identifier, }, - [57] = { + [58] = { [0] = alias_sym_type_identifier, }, - [58] = { + [59] = { [0] = alias_sym_shorthand_field_identifier, }, - [59] = { + [60] = { [2] = sym_identifier, }, - [61] = { + [62] = { [0] = sym_generic_type, }, - [66] = { + [67] = { [1] = alias_sym_type_identifier, }, - [68] = { + [69] = { [0] = sym_identifier, }, - [71] = { - [1] = alias_sym_type_identifier, - }, [72] = { [1] = alias_sym_type_identifier, }, - [76] = { + [73] = { [1] = alias_sym_type_identifier, }, [77] = { - [0] = alias_sym_type_identifier, - }, - [84] = { [1] = alias_sym_type_identifier, }, + [78] = { + [0] = alias_sym_type_identifier, + }, [85] = { [1] = alias_sym_type_identifier, }, [86] = { [1] = alias_sym_type_identifier, }, - [88] = { - [2] = alias_sym_type_identifier, + [87] = { + [1] = alias_sym_type_identifier, }, [89] = { - [0] = sym_identifier, + [2] = alias_sym_type_identifier, }, [90] = { [0] = sym_identifier, }, - [95] = { + [91] = { + [0] = sym_identifier, + }, + [96] = { [2] = alias_sym_type_identifier, }, - [101] = { + [102] = { [1] = alias_sym_shorthand_field_identifier, }, - [104] = { + [105] = { [3] = alias_sym_type_identifier, }, - [106] = { + [107] = { [0] = alias_sym_type_identifier, }, - [109] = { + [110] = { [0] = sym_identifier, }, - [111] = { + [112] = { [1] = alias_sym_type_identifier, }, - [117] = { + [118] = { [0] = alias_sym_type_identifier, }, - [119] = { + [120] = { [2] = alias_sym_type_identifier, }, - [120] = { + [121] = { [1] = alias_sym_type_identifier, }, - [121] = { + [122] = { [1] = alias_sym_type_identifier, }, - [126] = { + [127] = { [3] = sym_identifier, }, - [128] = { - [1] = alias_sym_type_identifier, - }, [129] = { [1] = alias_sym_type_identifier, }, @@ -3716,8 +3723,8 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [131] = { [1] = alias_sym_type_identifier, }, - [135] = { - [2] = alias_sym_type_identifier, + [132] = { + [1] = alias_sym_type_identifier, }, [136] = { [2] = alias_sym_type_identifier, @@ -3725,53 +3732,53 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [137] = { [2] = alias_sym_type_identifier, }, - [139] = { + [138] = { + [2] = alias_sym_type_identifier, + }, + [140] = { [0] = alias_sym_field_identifier, }, - [142] = { + [143] = { [2] = alias_sym_type_identifier, }, - [143] = { + [144] = { [3] = alias_sym_type_identifier, }, - [147] = { + [148] = { [0] = alias_sym_type_identifier, }, - [148] = { + [149] = { [2] = alias_sym_shorthand_field_identifier, }, - [149] = { + [150] = { [0] = alias_sym_field_identifier, }, - [153] = { + [154] = { [1] = alias_sym_type_identifier, }, - [159] = { - [2] = alias_sym_type_identifier, - }, [160] = { [2] = alias_sym_type_identifier, }, - [163] = { - [1] = alias_sym_type_identifier, + [161] = { + [2] = alias_sym_type_identifier, }, [164] = { - [2] = alias_sym_type_identifier, + [1] = alias_sym_type_identifier, }, [165] = { [2] = alias_sym_type_identifier, }, - [178] = { - [0] = alias_sym_field_identifier, + [166] = { + [2] = alias_sym_type_identifier, }, [179] = { - [1] = alias_sym_type_identifier, + [0] = alias_sym_field_identifier, }, [180] = { [1] = alias_sym_type_identifier, }, - [182] = { - [2] = alias_sym_type_identifier, + [181] = { + [1] = alias_sym_type_identifier, }, [183] = { [2] = alias_sym_type_identifier, @@ -3779,14 +3786,14 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [184] = { [2] = alias_sym_type_identifier, }, - [187] = { - [1] = alias_sym_field_identifier, - }, - [191] = { + [185] = { [2] = alias_sym_type_identifier, }, + [188] = { + [1] = alias_sym_field_identifier, + }, [192] = { - [3] = alias_sym_type_identifier, + [2] = alias_sym_type_identifier, }, [193] = { [3] = alias_sym_type_identifier, @@ -3794,47 +3801,47 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [194] = { [3] = alias_sym_type_identifier, }, - [198] = { - [0] = alias_sym_type_identifier, + [195] = { + [3] = alias_sym_type_identifier, }, [199] = { + [0] = alias_sym_type_identifier, + }, + [200] = { [1] = alias_sym_field_identifier, }, - [207] = { + [208] = { [2] = alias_sym_type_identifier, }, - [209] = { + [210] = { [3] = alias_sym_type_identifier, }, - [210] = { + [211] = { [3] = alias_sym_type_identifier, }, - [213] = { + [214] = { [2] = alias_sym_type_identifier, }, - [220] = { - [1] = alias_sym_field_identifier, - }, [221] = { - [3] = alias_sym_type_identifier, + [1] = alias_sym_field_identifier, }, [222] = { [3] = alias_sym_type_identifier, }, - [225] = { + [223] = { [3] = alias_sym_type_identifier, }, [226] = { [3] = alias_sym_type_identifier, }, - [229] = { - [2] = alias_sym_type_identifier, + [227] = { + [3] = alias_sym_type_identifier, }, - [233] = { + [230] = { [2] = alias_sym_type_identifier, }, [234] = { - [3] = alias_sym_type_identifier, + [2] = alias_sym_type_identifier, }, [235] = { [3] = alias_sym_type_identifier, @@ -3842,28 +3849,31 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [236] = { [3] = alias_sym_type_identifier, }, - [242] = { + [237] = { + [3] = alias_sym_type_identifier, + }, + [243] = { [2] = alias_sym_field_identifier, }, - [245] = { + [246] = { [3] = alias_sym_type_identifier, }, - [252] = { + [253] = { [3] = alias_sym_type_identifier, }, - [254] = { + [255] = { [4] = alias_sym_type_identifier, }, - [255] = { + [256] = { [4] = alias_sym_type_identifier, }, - [258] = { + [259] = { [3] = alias_sym_type_identifier, }, - [264] = { + [265] = { [3] = alias_sym_type_identifier, }, - [270] = { + [271] = { [4] = alias_sym_type_identifier, }, }; @@ -3889,141 +3899,141 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7] = 7, [8] = 8, [9] = 3, - [10] = 4, + [10] = 2, [11] = 11, - [12] = 7, - [13] = 8, - [14] = 3, - [15] = 4, + [12] = 11, + [13] = 6, + [14] = 8, + [15] = 2, [16] = 11, - [17] = 8, + [17] = 6, [18] = 3, - [19] = 4, + [19] = 2, [20] = 11, - [21] = 8, + [21] = 6, [22] = 3, - [23] = 4, + [23] = 2, [24] = 11, - [25] = 8, + [25] = 6, [26] = 3, - [27] = 4, + [27] = 2, [28] = 11, - [29] = 8, + [29] = 6, [30] = 3, - [31] = 4, + [31] = 2, [32] = 11, - [33] = 8, - [34] = 11, + [33] = 6, + [34] = 3, [35] = 35, [36] = 36, [37] = 37, [38] = 38, - [39] = 37, - [40] = 40, - [41] = 38, - [42] = 42, + [39] = 39, + [40] = 37, + [41] = 41, + [42] = 38, [43] = 35, - [44] = 35, + [44] = 38, [45] = 35, - [46] = 36, - [47] = 42, - [48] = 37, + [46] = 41, + [47] = 39, + [48] = 36, [49] = 38, [50] = 37, - [51] = 40, - [52] = 38, - [53] = 36, - [54] = 42, - [55] = 37, - [56] = 36, - [57] = 42, - [58] = 40, - [59] = 40, - [60] = 38, - [61] = 37, + [51] = 37, + [52] = 35, + [53] = 37, + [54] = 39, + [55] = 38, + [56] = 37, + [57] = 41, + [58] = 36, + [59] = 38, + [60] = 37, + [61] = 38, [62] = 38, - [63] = 38, - [64] = 38, - [65] = 37, - [66] = 37, + [63] = 37, + [64] = 41, + [65] = 39, + [66] = 36, [67] = 67, [68] = 68, [69] = 69, [70] = 70, [71] = 71, - [72] = 72, + [72] = 70, [73] = 73, - [74] = 74, - [75] = 74, + [74] = 68, + [75] = 75, [76] = 76, - [77] = 69, - [78] = 76, - [79] = 70, - [80] = 71, - [81] = 72, - [82] = 82, - [83] = 83, + [77] = 77, + [78] = 78, + [79] = 79, + [80] = 69, + [81] = 71, + [82] = 73, + [83] = 77, [84] = 84, [85] = 85, [86] = 86, [87] = 87, - [88] = 84, + [88] = 88, [89] = 89, [90] = 90, [91] = 91, - [92] = 85, + [92] = 92, [93] = 93, - [94] = 94, - [95] = 86, - [96] = 90, - [97] = 91, - [98] = 98, - [99] = 99, + [94] = 84, + [95] = 93, + [96] = 96, + [97] = 90, + [98] = 91, + [99] = 96, [100] = 100, - [101] = 87, - [102] = 84, - [103] = 89, - [104] = 98, - [105] = 99, - [106] = 100, - [107] = 94, - [108] = 99, - [109] = 100, + [101] = 85, + [102] = 92, + [103] = 93, + [104] = 84, + [105] = 86, + [106] = 96, + [107] = 90, + [108] = 100, + [109] = 90, [110] = 87, - [111] = 84, - [112] = 89, - [113] = 113, - [114] = 98, - [115] = 99, - [116] = 100, - [117] = 87, - [118] = 87, - [119] = 84, - [120] = 89, - [121] = 89, - [122] = 98, - [123] = 99, - [124] = 100, - [125] = 93, - [126] = 87, - [127] = 84, - [128] = 89, - [129] = 98, - [130] = 99, - [131] = 100, - [132] = 132, - [133] = 98, + [111] = 88, + [112] = 92, + [113] = 93, + [114] = 84, + [115] = 89, + [116] = 96, + [117] = 90, + [118] = 91, + [119] = 119, + [120] = 91, + [121] = 121, + [122] = 92, + [123] = 93, + [124] = 84, + [125] = 92, + [126] = 96, + [127] = 90, + [128] = 91, + [129] = 92, + [130] = 93, + [131] = 84, + [132] = 96, + [133] = 91, [134] = 134, [135] = 135, - [136] = 135, + [136] = 136, [137] = 137, - [138] = 134, + [138] = 135, [139] = 139, [140] = 140, - [141] = 137, - [142] = 142, - [143] = 139, - [144] = 144, + [141] = 139, + [142] = 134, + [143] = 143, + [144] = 143, [145] = 145, [146] = 146, [147] = 147, @@ -4038,94 +4048,94 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [156] = 156, [157] = 157, [158] = 158, - [159] = 159, - [160] = 160, + [159] = 148, + [160] = 137, [161] = 161, [162] = 162, [163] = 163, [164] = 164, [165] = 165, [166] = 166, - [167] = 149, + [167] = 166, [168] = 168, - [169] = 169, - [170] = 156, - [171] = 169, - [172] = 172, + [169] = 153, + [170] = 170, + [171] = 171, + [172] = 154, [173] = 173, [174] = 174, [175] = 175, [176] = 176, - [177] = 146, - [178] = 172, + [177] = 177, + [178] = 178, [179] = 179, [180] = 180, [181] = 181, [182] = 182, - [183] = 174, - [184] = 144, + [183] = 161, + [184] = 184, [185] = 185, - [186] = 175, - [187] = 176, - [188] = 182, - [189] = 161, - [190] = 149, - [191] = 182, - [192] = 161, - [193] = 149, - [194] = 182, - [195] = 168, - [196] = 161, - [197] = 197, - [198] = 164, + [186] = 182, + [187] = 179, + [188] = 158, + [189] = 177, + [190] = 147, + [191] = 179, + [192] = 158, + [193] = 147, + [194] = 179, + [195] = 158, + [196] = 147, + [197] = 164, + [198] = 198, [199] = 199, [200] = 200, - [201] = 145, - [202] = 162, - [203] = 203, + [201] = 201, + [202] = 170, + [203] = 150, [204] = 204, [205] = 205, - [206] = 206, - [207] = 163, - [208] = 208, - [209] = 166, - [210] = 210, - [211] = 208, - [212] = 206, + [206] = 205, + [207] = 207, + [208] = 171, + [209] = 145, + [210] = 163, + [211] = 168, + [212] = 212, [213] = 213, - [214] = 165, + [214] = 198, [215] = 215, [216] = 216, [217] = 217, [218] = 218, [219] = 219, - [220] = 216, - [221] = 217, + [220] = 215, + [221] = 216, [222] = 219, - [223] = 223, - [224] = 217, + [223] = 216, + [224] = 219, [225] = 225, [226] = 226, - [227] = 227, - [228] = 218, - [229] = 225, - [230] = 230, - [231] = 226, - [232] = 216, - [233] = 217, - [234] = 230, - [235] = 223, - [236] = 223, - [237] = 215, - [238] = 216, - [239] = 223, - [240] = 216, - [241] = 217, - [242] = 223, - [243] = 243, - [244] = 243, - [245] = 243, - [246] = 243, + [227] = 215, + [228] = 216, + [229] = 229, + [230] = 219, + [231] = 231, + [232] = 225, + [233] = 226, + [234] = 234, + [235] = 235, + [236] = 231, + [237] = 225, + [238] = 217, + [239] = 218, + [240] = 219, + [241] = 216, + [242] = 225, + [243] = 234, + [244] = 235, + [245] = 215, + [246] = 215, [247] = 247, [248] = 248, [249] = 249, @@ -4135,132 +4145,132 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [253] = 253, [254] = 254, [255] = 255, - [256] = 250, - [257] = 251, - [258] = 252, - [259] = 253, - [260] = 254, - [261] = 255, + [256] = 256, + [257] = 257, + [258] = 251, + [259] = 259, + [260] = 260, + [261] = 261, [262] = 262, - [263] = 255, + [263] = 263, [264] = 264, - [265] = 265, + [265] = 248, [266] = 255, - [267] = 250, - [268] = 268, - [269] = 255, - [270] = 255, - [271] = 255, + [267] = 256, + [268] = 259, + [269] = 269, + [270] = 270, + [271] = 269, [272] = 272, - [273] = 273, - [274] = 273, - [275] = 251, - [276] = 252, - [277] = 253, + [273] = 270, + [274] = 249, + [275] = 275, + [276] = 276, + [277] = 272, [278] = 278, - [279] = 273, + [279] = 279, [280] = 280, - [281] = 281, - [282] = 282, - [283] = 283, - [284] = 284, - [285] = 247, - [286] = 286, - [287] = 287, - [288] = 268, + [281] = 260, + [282] = 261, + [283] = 272, + [284] = 257, + [285] = 285, + [286] = 272, + [287] = 272, + [288] = 272, [289] = 289, - [290] = 290, - [291] = 291, + [290] = 279, + [291] = 262, [292] = 292, - [293] = 272, + [293] = 249, [294] = 294, - [295] = 248, - [296] = 249, - [297] = 297, + [295] = 270, + [296] = 296, + [297] = 249, [298] = 298, - [299] = 250, - [300] = 273, - [301] = 251, - [302] = 252, - [303] = 253, - [304] = 254, - [305] = 305, - [306] = 255, - [307] = 249, - [308] = 268, - [309] = 254, - [310] = 310, + [299] = 299, + [300] = 263, + [301] = 260, + [302] = 302, + [303] = 303, + [304] = 257, + [305] = 261, + [306] = 306, + [307] = 272, + [308] = 308, + [309] = 279, + [310] = 262, [311] = 311, [312] = 312, [313] = 313, [314] = 314, - [315] = 315, - [316] = 316, + [315] = 263, + [316] = 264, [317] = 317, - [318] = 289, + [318] = 318, [319] = 319, - [320] = 289, - [321] = 290, - [322] = 291, - [323] = 292, - [324] = 248, - [325] = 290, - [326] = 326, - [327] = 327, - [328] = 328, - [329] = 329, - [330] = 330, - [331] = 247, - [332] = 291, - [333] = 311, - [334] = 287, - [335] = 335, - [336] = 305, - [337] = 337, - [338] = 292, - [339] = 268, - [340] = 280, - [341] = 281, - [342] = 294, - [343] = 310, - [344] = 313, - [345] = 315, - [346] = 319, - [347] = 328, - [348] = 335, - [349] = 349, - [350] = 286, - [351] = 264, - [352] = 337, - [353] = 247, - [354] = 248, - [355] = 305, - [356] = 249, - [357] = 281, - [358] = 319, - [359] = 289, - [360] = 290, - [361] = 291, - [362] = 305, - [363] = 292, - [364] = 319, - [365] = 349, - [366] = 366, - [367] = 367, - [368] = 368, + [320] = 320, + [321] = 321, + [322] = 248, + [323] = 323, + [324] = 324, + [325] = 325, + [326] = 255, + [327] = 279, + [328] = 256, + [329] = 259, + [330] = 269, + [331] = 270, + [332] = 257, + [333] = 264, + [334] = 276, + [335] = 272, + [336] = 280, + [337] = 285, + [338] = 260, + [339] = 314, + [340] = 318, + [341] = 261, + [342] = 262, + [343] = 296, + [344] = 250, + [345] = 252, + [346] = 289, + [347] = 294, + [348] = 298, + [349] = 303, + [350] = 308, + [351] = 312, + [352] = 313, + [353] = 321, + [354] = 325, + [355] = 263, + [356] = 276, + [357] = 264, + [358] = 314, + [359] = 248, + [360] = 250, + [361] = 303, + [362] = 255, + [363] = 276, + [364] = 256, + [365] = 314, + [366] = 259, + [367] = 303, + [368] = 269, [369] = 369, [370] = 370, [371] = 371, [372] = 372, [373] = 373, [374] = 374, - [375] = 199, + [375] = 375, [376] = 376, [377] = 377, [378] = 378, [379] = 379, [380] = 380, - [381] = 213, + [381] = 381, [382] = 382, [383] = 383, [384] = 384, @@ -4273,94 +4283,94 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [391] = 391, [392] = 392, [393] = 393, - [394] = 394, + [394] = 213, [395] = 395, [396] = 396, - [397] = 396, - [398] = 396, + [397] = 212, + [398] = 398, [399] = 399, - [400] = 399, - [401] = 399, - [402] = 387, + [400] = 400, + [401] = 393, + [402] = 400, [403] = 403, - [404] = 404, - [405] = 405, - [406] = 405, - [407] = 405, - [408] = 404, - [409] = 403, - [410] = 404, - [411] = 403, - [412] = 412, - [413] = 413, - [414] = 412, - [415] = 412, + [404] = 403, + [405] = 403, + [406] = 400, + [407] = 407, + [408] = 408, + [409] = 409, + [410] = 409, + [411] = 408, + [412] = 409, + [413] = 407, + [414] = 408, + [415] = 407, [416] = 416, - [417] = 417, - [418] = 417, - [419] = 417, + [417] = 416, + [418] = 418, + [419] = 416, [420] = 420, [421] = 421, - [422] = 422, - [423] = 422, + [422] = 421, + [423] = 421, [424] = 424, [425] = 425, [426] = 426, - [427] = 424, - [428] = 425, - [429] = 424, - [430] = 426, - [431] = 426, - [432] = 421, - [433] = 433, - [434] = 434, - [435] = 435, - [436] = 436, - [437] = 435, - [438] = 435, - [439] = 436, + [427] = 427, + [428] = 428, + [429] = 429, + [430] = 425, + [431] = 429, + [432] = 426, + [433] = 429, + [434] = 427, + [435] = 425, + [436] = 428, + [437] = 437, + [438] = 438, + [439] = 439, [440] = 440, - [441] = 440, - [442] = 436, + [441] = 441, + [442] = 441, [443] = 440, - [444] = 444, - [445] = 445, - [446] = 445, - [447] = 445, - [448] = 330, - [449] = 370, - [450] = 369, - [451] = 368, - [452] = 366, - [453] = 367, - [454] = 395, - [455] = 380, - [456] = 456, - [457] = 392, - [458] = 390, - [459] = 372, - [460] = 386, - [461] = 388, - [462] = 462, - [463] = 382, - [464] = 389, - [465] = 465, - [466] = 462, - [467] = 383, - [468] = 376, - [469] = 462, - [470] = 373, - [471] = 462, - [472] = 379, - [473] = 384, - [474] = 371, - [475] = 394, - [476] = 393, - [477] = 374, - [478] = 378, - [479] = 479, - [480] = 480, - [481] = 481, + [444] = 439, + [445] = 441, + [446] = 439, + [447] = 440, + [448] = 448, + [449] = 448, + [450] = 448, + [451] = 451, + [452] = 317, + [453] = 373, + [454] = 374, + [455] = 372, + [456] = 371, + [457] = 370, + [458] = 458, + [459] = 384, + [460] = 383, + [461] = 378, + [462] = 375, + [463] = 376, + [464] = 379, + [465] = 385, + [466] = 391, + [467] = 398, + [468] = 458, + [469] = 458, + [470] = 381, + [471] = 395, + [472] = 396, + [473] = 390, + [474] = 388, + [475] = 392, + [476] = 377, + [477] = 477, + [478] = 386, + [479] = 458, + [480] = 382, + [481] = 389, [482] = 482, [483] = 483, [484] = 484, @@ -4511,9 +4521,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [629] = 629, [630] = 630, [631] = 631, - [632] = 632, + [632] = 372, [633] = 633, - [634] = 370, + [634] = 634, [635] = 635, [636] = 636, [637] = 637, @@ -4521,16 +4531,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [639] = 639, [640] = 640, [641] = 641, - [642] = 642, + [642] = 371, [643] = 643, [644] = 644, - [645] = 645, + [645] = 373, [646] = 646, - [647] = 647, - [648] = 369, - [649] = 367, - [650] = 366, - [651] = 368, + [647] = 370, + [648] = 374, + [649] = 649, + [650] = 650, + [651] = 651, [652] = 652, [653] = 653, [654] = 654, @@ -4617,38 +4627,38 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [735] = 735, [736] = 736, [737] = 737, - [738] = 613, + [738] = 738, [739] = 739, - [740] = 740, + [740] = 597, [741] = 741, [742] = 742, [743] = 743, [744] = 744, [745] = 745, - [746] = 613, + [746] = 746, [747] = 747, - [748] = 613, + [748] = 748, [749] = 749, [750] = 750, - [751] = 751, + [751] = 597, [752] = 752, [753] = 753, - [754] = 754, + [754] = 597, [755] = 755, - [756] = 754, - [757] = 755, + [756] = 756, + [757] = 757, [758] = 758, - [759] = 758, - [760] = 760, + [759] = 756, + [760] = 757, [761] = 761, [762] = 762, - [763] = 763, - [764] = 763, - [765] = 760, + [763] = 762, + [764] = 764, + [765] = 765, [766] = 766, [767] = 767, - [768] = 768, - [769] = 769, + [768] = 765, + [769] = 767, [770] = 770, [771] = 771, [772] = 772, @@ -4660,92 +4670,92 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [778] = 778, [779] = 779, [780] = 780, - [781] = 779, - [782] = 777, - [783] = 776, + [781] = 781, + [782] = 782, + [783] = 779, [784] = 784, [785] = 785, - [786] = 786, - [787] = 787, + [786] = 780, + [787] = 781, [788] = 788, [789] = 789, [790] = 790, [791] = 791, - [792] = 784, + [792] = 792, [793] = 793, - [794] = 786, + [794] = 794, [795] = 795, - [796] = 785, - [797] = 791, - [798] = 793, - [799] = 790, - [800] = 800, - [801] = 801, - [802] = 802, - [803] = 802, + [796] = 796, + [797] = 792, + [798] = 798, + [799] = 796, + [800] = 798, + [801] = 794, + [802] = 788, + [803] = 795, [804] = 804, [805] = 805, [806] = 806, [807] = 807, - [808] = 800, - [809] = 806, + [808] = 808, + [809] = 809, [810] = 810, - [811] = 810, - [812] = 812, + [811] = 811, + [812] = 810, [813] = 813, - [814] = 804, + [814] = 814, [815] = 815, [816] = 816, - [817] = 817, - [818] = 805, - [819] = 815, + [817] = 809, + [818] = 818, + [819] = 811, [820] = 820, - [821] = 816, + [821] = 806, [822] = 822, [823] = 823, - [824] = 824, - [825] = 807, - [826] = 813, - [827] = 812, - [828] = 824, - [829] = 815, - [830] = 824, - [831] = 815, - [832] = 824, - [833] = 833, - [834] = 833, - [835] = 835, - [836] = 833, - [837] = 833, + [824] = 818, + [825] = 805, + [826] = 804, + [827] = 815, + [828] = 823, + [829] = 822, + [830] = 807, + [831] = 831, + [832] = 807, + [833] = 822, + [834] = 807, + [835] = 822, + [836] = 820, + [837] = 837, [838] = 838, - [839] = 839, - [840] = 593, - [841] = 841, + [839] = 837, + [840] = 837, + [841] = 837, [842] = 842, - [843] = 839, + [843] = 843, [844] = 844, - [845] = 845, + [845] = 843, [846] = 846, - [847] = 839, + [847] = 569, [848] = 848, - [849] = 845, - [850] = 842, + [849] = 848, + [850] = 850, [851] = 851, - [852] = 842, - [853] = 853, + [852] = 851, + [853] = 843, [854] = 854, - [855] = 839, - [856] = 856, - [857] = 857, - [858] = 856, - [859] = 851, - [860] = 844, - [861] = 856, - [862] = 845, + [855] = 848, + [856] = 842, + [857] = 842, + [858] = 858, + [859] = 859, + [860] = 859, + [861] = 861, + [862] = 862, [863] = 863, - [864] = 864, - [865] = 865, - [866] = 866, + [864] = 851, + [865] = 842, + [866] = 858, [867] = 867, [868] = 868, [869] = 869, @@ -4754,7 +4764,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [872] = 872, [873] = 873, [874] = 874, - [875] = 863, + [875] = 875, [876] = 876, [877] = 877, [878] = 878, @@ -4764,27 +4774,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [882] = 882, [883] = 883, [884] = 884, - [885] = 885, + [885] = 871, [886] = 886, - [887] = 887, - [888] = 888, - [889] = 889, + [887] = 871, + [888] = 872, + [889] = 872, [890] = 890, - [891] = 891, - [892] = 888, - [893] = 890, + [891] = 873, + [892] = 892, + [893] = 873, [894] = 894, [895] = 895, [896] = 896, - [897] = 887, + [897] = 883, [898] = 898, [899] = 899, [900] = 900, [901] = 901, - [902] = 902, - [903] = 903, - [904] = 902, - [905] = 905, + [902] = 879, + [903] = 892, + [904] = 904, + [905] = 879, [906] = 906, [907] = 907, [908] = 908, @@ -4797,14 +4807,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [915] = 915, [916] = 916, [917] = 917, - [918] = 916, + [918] = 918, [919] = 919, - [920] = 888, - [921] = 890, - [922] = 919, - [923] = 902, + [920] = 920, + [921] = 921, + [922] = 922, + [923] = 901, [924] = 924, - [925] = 885, + [925] = 925, [926] = 926, [927] = 927, [928] = 928, @@ -4812,137 +4822,137 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [930] = 930, [931] = 931, [932] = 932, - [933] = 883, - [934] = 934, - [935] = 924, + [933] = 875, + [934] = 867, + [935] = 935, [936] = 936, - [937] = 905, - [938] = 928, - [939] = 882, - [940] = 886, - [941] = 914, - [942] = 927, + [937] = 900, + [938] = 886, + [939] = 939, + [940] = 940, + [941] = 917, + [942] = 921, [943] = 943, [944] = 944, - [945] = 896, - [946] = 946, - [947] = 888, - [948] = 890, - [949] = 867, - [950] = 876, - [951] = 877, - [952] = 881, - [953] = 891, - [954] = 903, - [955] = 943, - [956] = 906, - [957] = 907, - [958] = 868, - [959] = 878, - [960] = 884, - [961] = 887, - [962] = 962, - [963] = 871, - [964] = 872, - [965] = 944, - [966] = 889, - [967] = 899, - [968] = 908, - [969] = 909, - [970] = 910, - [971] = 911, - [972] = 917, - [973] = 926, + [945] = 945, + [946] = 877, + [947] = 884, + [948] = 895, + [949] = 925, + [950] = 929, + [951] = 880, + [952] = 882, + [953] = 920, + [954] = 954, + [955] = 886, + [956] = 956, + [957] = 870, + [958] = 904, + [959] = 907, + [960] = 912, + [961] = 918, + [962] = 926, + [963] = 963, + [964] = 964, + [965] = 868, + [966] = 916, + [967] = 936, + [968] = 963, + [969] = 906, + [970] = 913, + [971] = 915, + [972] = 901, + [973] = 935, [974] = 974, - [975] = 930, - [976] = 864, - [977] = 870, - [978] = 916, - [979] = 931, - [980] = 919, - [981] = 874, - [982] = 901, - [983] = 924, - [984] = 984, - [985] = 985, - [986] = 928, - [987] = 934, - [988] = 934, - [989] = 927, - [990] = 984, - [991] = 991, - [992] = 974, - [993] = 930, + [975] = 940, + [976] = 899, + [977] = 909, + [978] = 881, + [979] = 974, + [980] = 876, + [981] = 981, + [982] = 931, + [983] = 932, + [984] = 944, + [985] = 956, + [986] = 986, + [987] = 875, + [988] = 914, + [989] = 986, + [990] = 892, + [991] = 945, + [992] = 981, + [993] = 900, [994] = 994, - [995] = 885, - [996] = 864, - [997] = 997, - [998] = 869, - [999] = 916, - [1000] = 929, - [1001] = 924, - [1002] = 932, - [1003] = 869, - [1004] = 962, - [1005] = 974, - [1006] = 946, - [1007] = 1007, - [1008] = 1008, - [1009] = 1009, - [1010] = 1010, - [1011] = 593, + [995] = 886, + [996] = 939, + [997] = 919, + [998] = 883, + [999] = 894, + [1000] = 1000, + [1001] = 964, + [1002] = 917, + [1003] = 867, + [1004] = 920, + [1005] = 917, + [1006] = 920, + [1007] = 894, + [1008] = 927, + [1009] = 901, + [1010] = 981, + [1011] = 1011, [1012] = 1012, [1013] = 1013, [1014] = 1014, - [1015] = 1015, + [1015] = 569, [1016] = 1016, [1017] = 1017, [1018] = 1018, [1019] = 1019, - [1020] = 369, - [1021] = 213, + [1020] = 1020, + [1021] = 1021, [1022] = 1022, - [1023] = 1023, - [1024] = 391, + [1023] = 399, + [1024] = 370, [1025] = 1025, - [1026] = 368, - [1027] = 366, + [1026] = 1026, + [1027] = 1027, [1028] = 1028, - [1029] = 199, + [1029] = 372, [1030] = 1030, - [1031] = 1031, - [1032] = 385, - [1033] = 1033, - [1034] = 367, - [1035] = 370, - [1036] = 508, - [1037] = 1037, - [1038] = 614, - [1039] = 1039, - [1040] = 1040, - [1041] = 547, - [1042] = 700, + [1031] = 380, + [1032] = 1032, + [1033] = 212, + [1034] = 374, + [1035] = 1035, + [1036] = 1036, + [1037] = 371, + [1038] = 213, + [1039] = 373, + [1040] = 658, + [1041] = 1041, + [1042] = 1042, [1043] = 1043, - [1044] = 1044, + [1044] = 598, [1045] = 1045, - [1046] = 622, + [1046] = 508, [1047] = 1047, - [1048] = 1048, + [1048] = 720, [1049] = 1049, [1050] = 1050, - [1051] = 1051, - [1052] = 913, + [1051] = 544, + [1052] = 317, [1053] = 1053, - [1054] = 1054, - [1055] = 1055, + [1054] = 428, + [1055] = 1016, [1056] = 1056, - [1057] = 1012, + [1057] = 1057, [1058] = 1058, [1059] = 1059, [1060] = 1060, [1061] = 1061, [1062] = 1062, - [1063] = 330, + [1063] = 1063, [1064] = 1064, [1065] = 1065, [1066] = 1066, @@ -4963,338 +4973,338 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1081] = 1081, [1082] = 1082, [1083] = 1083, - [1084] = 1084, + [1084] = 1058, [1085] = 1085, [1086] = 1086, - [1087] = 1086, - [1088] = 1085, - [1089] = 1089, - [1090] = 1085, - [1091] = 1086, + [1087] = 1087, + [1088] = 1081, + [1089] = 1081, + [1090] = 1058, + [1091] = 1091, [1092] = 1092, - [1093] = 421, + [1093] = 1093, [1094] = 1094, [1095] = 1095, - [1096] = 382, - [1097] = 390, - [1098] = 694, - [1099] = 695, - [1100] = 699, - [1101] = 383, - [1102] = 735, - [1103] = 736, - [1104] = 740, - [1105] = 742, - [1106] = 750, - [1107] = 606, - [1108] = 618, - [1109] = 679, - [1110] = 376, - [1111] = 385, - [1112] = 737, - [1113] = 744, - [1114] = 745, - [1115] = 534, - [1116] = 545, - [1117] = 367, - [1118] = 372, - [1119] = 1119, - [1120] = 1120, - [1121] = 1121, - [1122] = 1122, - [1123] = 668, - [1124] = 1124, - [1125] = 671, - [1126] = 1126, - [1127] = 1127, - [1128] = 164, - [1129] = 1129, - [1130] = 1130, - [1131] = 213, - [1132] = 596, - [1133] = 597, - [1134] = 598, - [1135] = 601, - [1136] = 603, - [1137] = 379, - [1138] = 604, - [1139] = 605, - [1140] = 610, - [1141] = 611, - [1142] = 612, - [1143] = 384, - [1144] = 1144, - [1145] = 615, - [1146] = 616, - [1147] = 617, - [1148] = 620, - [1149] = 621, - [1150] = 628, - [1151] = 629, - [1152] = 630, - [1153] = 631, - [1154] = 632, - [1155] = 633, - [1156] = 635, - [1157] = 636, - [1158] = 637, - [1159] = 638, - [1160] = 639, - [1161] = 640, - [1162] = 641, - [1163] = 642, - [1164] = 751, - [1165] = 644, - [1166] = 645, - [1167] = 646, - [1168] = 647, - [1169] = 393, - [1170] = 653, - [1171] = 658, - [1172] = 1172, - [1173] = 1173, - [1174] = 1174, - [1175] = 1175, - [1176] = 1176, - [1177] = 1177, - [1178] = 370, - [1179] = 1179, - [1180] = 369, - [1181] = 1181, - [1182] = 665, - [1183] = 666, - [1184] = 199, - [1185] = 669, - [1186] = 672, - [1187] = 673, - [1188] = 674, - [1189] = 675, - [1190] = 676, - [1191] = 374, - [1192] = 378, - [1193] = 681, - [1194] = 682, - [1195] = 683, - [1196] = 684, - [1197] = 687, - [1198] = 688, - [1199] = 689, - [1200] = 692, - [1201] = 693, - [1202] = 380, - [1203] = 697, - [1204] = 1204, - [1205] = 705, - [1206] = 706, - [1207] = 707, - [1208] = 708, - [1209] = 709, - [1210] = 710, - [1211] = 711, - [1212] = 712, - [1213] = 713, - [1214] = 714, - [1215] = 715, - [1216] = 716, - [1217] = 717, - [1218] = 718, - [1219] = 719, - [1220] = 720, - [1221] = 721, - [1222] = 722, - [1223] = 723, - [1224] = 724, - [1225] = 725, - [1226] = 726, - [1227] = 727, - [1228] = 728, - [1229] = 729, - [1230] = 730, - [1231] = 731, - [1232] = 732, - [1233] = 733, - [1234] = 734, - [1235] = 366, - [1236] = 389, - [1237] = 739, - [1238] = 741, - [1239] = 1014, - [1240] = 1240, - [1241] = 1241, - [1242] = 1242, - [1243] = 1243, - [1244] = 1244, - [1245] = 1245, - [1246] = 1246, - [1247] = 749, - [1248] = 743, - [1249] = 609, - [1250] = 480, - [1251] = 481, - [1252] = 482, - [1253] = 483, - [1254] = 505, - [1255] = 588, - [1256] = 589, - [1257] = 590, - [1258] = 591, - [1259] = 592, - [1260] = 594, - [1261] = 595, - [1262] = 599, - [1263] = 600, - [1264] = 602, - [1265] = 607, - [1266] = 608, - [1267] = 371, - [1268] = 619, - [1269] = 166, - [1270] = 623, - [1271] = 624, - [1272] = 625, - [1273] = 626, - [1274] = 627, - [1275] = 479, - [1276] = 654, - [1277] = 655, - [1278] = 656, - [1279] = 657, - [1280] = 661, - [1281] = 662, - [1282] = 663, - [1283] = 664, - [1284] = 670, - [1285] = 678, - [1286] = 680, - [1287] = 685, - [1288] = 686, - [1289] = 690, - [1290] = 691, - [1291] = 696, - [1292] = 698, - [1293] = 701, - [1294] = 702, - [1295] = 703, - [1296] = 704, - [1297] = 368, - [1298] = 1298, - [1299] = 747, - [1300] = 643, - [1301] = 163, - [1302] = 1013, - [1303] = 1303, - [1304] = 484, - [1305] = 485, - [1306] = 486, - [1307] = 487, - [1308] = 488, - [1309] = 489, - [1310] = 490, - [1311] = 491, - [1312] = 492, - [1313] = 493, - [1314] = 494, - [1315] = 495, - [1316] = 496, - [1317] = 497, - [1318] = 498, - [1319] = 499, - [1320] = 500, - [1321] = 501, - [1322] = 502, - [1323] = 503, - [1324] = 504, - [1325] = 506, - [1326] = 507, - [1327] = 1327, - [1328] = 509, - [1329] = 510, - [1330] = 511, - [1331] = 512, - [1332] = 513, - [1333] = 514, - [1334] = 515, - [1335] = 516, - [1336] = 517, - [1337] = 518, - [1338] = 519, - [1339] = 520, - [1340] = 521, - [1341] = 522, - [1342] = 523, - [1343] = 524, - [1344] = 525, - [1345] = 526, - [1346] = 527, - [1347] = 528, - [1348] = 529, - [1349] = 530, - [1350] = 531, - [1351] = 532, - [1352] = 533, - [1353] = 392, - [1354] = 1354, - [1355] = 1355, - [1356] = 535, - [1357] = 536, - [1358] = 537, - [1359] = 538, - [1360] = 539, - [1361] = 540, - [1362] = 541, - [1363] = 542, - [1364] = 543, - [1365] = 544, - [1366] = 546, - [1367] = 1367, - [1368] = 548, - [1369] = 549, - [1370] = 550, - [1371] = 551, - [1372] = 552, - [1373] = 553, - [1374] = 554, - [1375] = 555, - [1376] = 556, - [1377] = 557, - [1378] = 558, - [1379] = 559, - [1380] = 560, - [1381] = 561, - [1382] = 562, - [1383] = 563, - [1384] = 564, - [1385] = 565, - [1386] = 566, - [1387] = 567, - [1388] = 568, - [1389] = 569, - [1390] = 570, - [1391] = 571, - [1392] = 572, - [1393] = 573, - [1394] = 574, - [1395] = 575, - [1396] = 576, - [1397] = 577, - [1398] = 578, - [1399] = 579, - [1400] = 580, - [1401] = 581, - [1402] = 582, - [1403] = 583, - [1404] = 584, - [1405] = 585, - [1406] = 586, - [1407] = 587, + [1096] = 994, + [1097] = 1097, + [1098] = 1098, + [1099] = 532, + [1100] = 737, + [1101] = 750, + [1102] = 373, + [1103] = 1103, + [1104] = 1104, + [1105] = 1105, + [1106] = 1106, + [1107] = 1107, + [1108] = 1108, + [1109] = 1109, + [1110] = 1110, + [1111] = 1111, + [1112] = 1112, + [1113] = 1113, + [1114] = 1114, + [1115] = 1115, + [1116] = 1116, + [1117] = 212, + [1118] = 587, + [1119] = 588, + [1120] = 589, + [1121] = 590, + [1122] = 591, + [1123] = 378, + [1124] = 592, + [1125] = 593, + [1126] = 594, + [1127] = 595, + [1128] = 596, + [1129] = 379, + [1130] = 599, + [1131] = 600, + [1132] = 601, + [1133] = 602, + [1134] = 603, + [1135] = 604, + [1136] = 605, + [1137] = 606, + [1138] = 607, + [1139] = 608, + [1140] = 609, + [1141] = 610, + [1142] = 611, + [1143] = 612, + [1144] = 613, + [1145] = 614, + [1146] = 615, + [1147] = 616, + [1148] = 617, + [1149] = 618, + [1150] = 619, + [1151] = 620, + [1152] = 621, + [1153] = 622, + [1154] = 385, + [1155] = 626, + [1156] = 628, + [1157] = 1157, + [1158] = 1158, + [1159] = 1159, + [1160] = 376, + [1161] = 1161, + [1162] = 1162, + [1163] = 1163, + [1164] = 380, + [1165] = 1165, + [1166] = 1166, + [1167] = 625, + [1168] = 1168, + [1169] = 633, + [1170] = 634, + [1171] = 213, + [1172] = 635, + [1173] = 637, + [1174] = 638, + [1175] = 639, + [1176] = 755, + [1177] = 640, + [1178] = 395, + [1179] = 396, + [1180] = 643, + [1181] = 644, + [1182] = 646, + [1183] = 649, + [1184] = 650, + [1185] = 651, + [1186] = 652, + [1187] = 653, + [1188] = 654, + [1189] = 375, + [1190] = 656, + [1191] = 659, + [1192] = 660, + [1193] = 661, + [1194] = 662, + [1195] = 663, + [1196] = 665, + [1197] = 666, + [1198] = 667, + [1199] = 668, + [1200] = 669, + [1201] = 670, + [1202] = 671, + [1203] = 672, + [1204] = 673, + [1205] = 674, + [1206] = 675, + [1207] = 676, + [1208] = 677, + [1209] = 679, + [1210] = 680, + [1211] = 681, + [1212] = 682, + [1213] = 683, + [1214] = 684, + [1215] = 685, + [1216] = 686, + [1217] = 687, + [1218] = 688, + [1219] = 689, + [1220] = 690, + [1221] = 370, + [1222] = 398, + [1223] = 1223, + [1224] = 694, + [1225] = 695, + [1226] = 381, + [1227] = 1227, + [1228] = 1228, + [1229] = 629, + [1230] = 1230, + [1231] = 1231, + [1232] = 1232, + [1233] = 699, + [1234] = 700, + [1235] = 701, + [1236] = 702, + [1237] = 703, + [1238] = 704, + [1239] = 705, + [1240] = 706, + [1241] = 707, + [1242] = 708, + [1243] = 709, + [1244] = 710, + [1245] = 711, + [1246] = 712, + [1247] = 713, + [1248] = 714, + [1249] = 715, + [1250] = 716, + [1251] = 717, + [1252] = 718, + [1253] = 377, + [1254] = 719, + [1255] = 721, + [1256] = 722, + [1257] = 723, + [1258] = 724, + [1259] = 725, + [1260] = 726, + [1261] = 727, + [1262] = 728, + [1263] = 729, + [1264] = 730, + [1265] = 731, + [1266] = 732, + [1267] = 733, + [1268] = 734, + [1269] = 735, + [1270] = 736, + [1271] = 738, + [1272] = 739, + [1273] = 741, + [1274] = 742, + [1275] = 743, + [1276] = 744, + [1277] = 745, + [1278] = 746, + [1279] = 747, + [1280] = 748, + [1281] = 749, + [1282] = 374, + [1283] = 752, + [1284] = 753, + [1285] = 630, + [1286] = 631, + [1287] = 1287, + [1288] = 484, + [1289] = 485, + [1290] = 487, + [1291] = 488, + [1292] = 489, + [1293] = 490, + [1294] = 491, + [1295] = 492, + [1296] = 493, + [1297] = 494, + [1298] = 495, + [1299] = 496, + [1300] = 497, + [1301] = 498, + [1302] = 499, + [1303] = 500, + [1304] = 501, + [1305] = 502, + [1306] = 503, + [1307] = 504, + [1308] = 505, + [1309] = 506, + [1310] = 507, + [1311] = 509, + [1312] = 510, + [1313] = 511, + [1314] = 512, + [1315] = 513, + [1316] = 514, + [1317] = 515, + [1318] = 516, + [1319] = 517, + [1320] = 518, + [1321] = 519, + [1322] = 520, + [1323] = 521, + [1324] = 522, + [1325] = 483, + [1326] = 523, + [1327] = 524, + [1328] = 525, + [1329] = 526, + [1330] = 1018, + [1331] = 528, + [1332] = 529, + [1333] = 530, + [1334] = 531, + [1335] = 383, + [1336] = 382, + [1337] = 636, + [1338] = 533, + [1339] = 534, + [1340] = 535, + [1341] = 536, + [1342] = 537, + [1343] = 538, + [1344] = 539, + [1345] = 540, + [1346] = 541, + [1347] = 542, + [1348] = 543, + [1349] = 545, + [1350] = 546, + [1351] = 547, + [1352] = 548, + [1353] = 549, + [1354] = 550, + [1355] = 551, + [1356] = 552, + [1357] = 553, + [1358] = 554, + [1359] = 555, + [1360] = 556, + [1361] = 557, + [1362] = 558, + [1363] = 559, + [1364] = 560, + [1365] = 561, + [1366] = 562, + [1367] = 563, + [1368] = 564, + [1369] = 565, + [1370] = 566, + [1371] = 567, + [1372] = 568, + [1373] = 570, + [1374] = 571, + [1375] = 572, + [1376] = 573, + [1377] = 574, + [1378] = 575, + [1379] = 576, + [1380] = 577, + [1381] = 578, + [1382] = 579, + [1383] = 580, + [1384] = 581, + [1385] = 582, + [1386] = 583, + [1387] = 584, + [1388] = 585, + [1389] = 1389, + [1390] = 641, + [1391] = 1391, + [1392] = 1392, + [1393] = 1393, + [1394] = 1394, + [1395] = 1395, + [1396] = 1396, + [1397] = 145, + [1398] = 1398, + [1399] = 1399, + [1400] = 1400, + [1401] = 1401, + [1402] = 168, + [1403] = 1403, + [1404] = 1404, + [1405] = 1405, + [1406] = 1406, + [1407] = 1407, [1408] = 1408, [1409] = 1409, [1410] = 1410, [1411] = 1411, - [1412] = 1412, + [1412] = 569, [1413] = 1413, [1414] = 1414, - [1415] = 1415, + [1415] = 163, [1416] = 1416, [1417] = 1417, [1418] = 1418, @@ -5304,72 +5314,72 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1422] = 1422, [1423] = 1423, [1424] = 1424, - [1425] = 1425, + [1425] = 171, [1426] = 1426, [1427] = 1427, - [1428] = 1428, + [1428] = 655, [1429] = 1429, [1430] = 1430, - [1431] = 1431, + [1431] = 657, [1432] = 1432, - [1433] = 165, - [1434] = 593, - [1435] = 652, + [1433] = 1433, + [1434] = 1434, + [1435] = 1435, [1436] = 1436, - [1437] = 1437, + [1437] = 170, [1438] = 1438, - [1439] = 162, - [1440] = 1440, + [1439] = 678, + [1440] = 691, [1441] = 1441, [1442] = 1442, [1443] = 1443, - [1444] = 373, + [1444] = 692, [1445] = 1445, - [1446] = 1446, - [1447] = 386, + [1446] = 693, + [1447] = 384, [1448] = 1448, - [1449] = 394, + [1449] = 1449, [1450] = 1450, - [1451] = 395, + [1451] = 399, [1452] = 1452, [1453] = 1453, [1454] = 1454, [1455] = 1455, - [1456] = 388, - [1457] = 391, - [1458] = 1458, + [1456] = 1456, + [1457] = 1457, + [1458] = 696, [1459] = 1459, [1460] = 1460, [1461] = 1461, [1462] = 1462, - [1463] = 1463, + [1463] = 664, [1464] = 1464, - [1465] = 1465, - [1466] = 667, + [1465] = 372, + [1466] = 697, [1467] = 1467, - [1468] = 1468, + [1468] = 698, [1469] = 1469, - [1470] = 1470, - [1471] = 1471, - [1472] = 1472, - [1473] = 1473, + [1470] = 386, + [1471] = 388, + [1472] = 389, + [1473] = 390, [1474] = 1474, - [1475] = 1475, - [1476] = 1476, - [1477] = 1477, - [1478] = 1478, - [1479] = 1007, - [1480] = 1480, - [1481] = 1481, + [1475] = 391, + [1476] = 392, + [1477] = 623, + [1478] = 624, + [1479] = 371, + [1480] = 1017, + [1481] = 527, [1482] = 1482, - [1483] = 593, - [1484] = 665, + [1483] = 569, + [1484] = 1484, [1485] = 1485, - [1486] = 1486, + [1486] = 633, [1487] = 1487, [1488] = 1488, - [1489] = 1040, - [1490] = 1490, + [1489] = 1489, + [1490] = 1011, [1491] = 1491, [1492] = 1492, [1493] = 1493, @@ -5377,596 +5387,596 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1495] = 1495, [1496] = 1496, [1497] = 1497, - [1498] = 1015, + [1498] = 1498, [1499] = 1499, - [1500] = 1500, + [1500] = 1498, [1501] = 1501, - [1502] = 1501, - [1503] = 1501, + [1502] = 1502, + [1503] = 1503, [1504] = 1504, [1505] = 1505, [1506] = 1506, [1507] = 1507, [1508] = 1508, - [1509] = 1509, + [1509] = 1498, [1510] = 1510, [1511] = 1511, - [1512] = 1040, - [1513] = 1018, - [1514] = 1040, + [1512] = 1512, + [1513] = 1513, + [1514] = 1019, [1515] = 1515, - [1516] = 1515, - [1517] = 1517, - [1518] = 1017, - [1519] = 1016, - [1520] = 1520, - [1521] = 1517, - [1522] = 1470, - [1523] = 1028, - [1524] = 1079, - [1525] = 1525, - [1526] = 1019, - [1527] = 1080, - [1528] = 1092, - [1529] = 1030, - [1530] = 1089, - [1531] = 1092, + [1516] = 1041, + [1517] = 1021, + [1518] = 1518, + [1519] = 1519, + [1520] = 1020, + [1521] = 1041, + [1522] = 1519, + [1523] = 1518, + [1524] = 1041, + [1525] = 1022, + [1526] = 1526, + [1527] = 1025, + [1528] = 1030, + [1529] = 1529, + [1530] = 1530, + [1531] = 1531, [1532] = 1532, - [1533] = 1533, - [1534] = 1089, + [1533] = 1028, + [1534] = 1082, [1535] = 1535, - [1536] = 1461, - [1537] = 1537, - [1538] = 1023, - [1539] = 1025, - [1540] = 1031, - [1541] = 1541, - [1542] = 1033, - [1543] = 1022, - [1544] = 1544, - [1545] = 1079, - [1546] = 1461, - [1547] = 1080, - [1548] = 1075, - [1549] = 1069, - [1550] = 1048, - [1551] = 1470, - [1552] = 1073, - [1553] = 1043, - [1554] = 1077, - [1555] = 330, + [1536] = 1032, + [1537] = 1095, + [1538] = 1082, + [1539] = 1464, + [1540] = 1540, + [1541] = 1223, + [1542] = 1027, + [1543] = 1083, + [1544] = 1036, + [1545] = 1083, + [1546] = 1095, + [1547] = 1547, + [1548] = 1035, + [1549] = 1464, + [1550] = 1026, + [1551] = 1091, + [1552] = 1091, + [1553] = 1553, + [1554] = 1553, + [1555] = 1555, [1556] = 1556, - [1557] = 1408, - [1558] = 1048, - [1559] = 1559, - [1560] = 1560, - [1561] = 1559, - [1562] = 1562, - [1563] = 1045, - [1564] = 1562, - [1565] = 1560, - [1566] = 1560, - [1567] = 1562, - [1568] = 1560, - [1569] = 1562, - [1570] = 1044, - [1571] = 1408, - [1572] = 1478, - [1573] = 1461, - [1574] = 1039, - [1575] = 1420, - [1576] = 1482, - [1577] = 1420, - [1578] = 1556, - [1579] = 1065, - [1580] = 1058, - [1581] = 1068, - [1582] = 1504, - [1583] = 1506, - [1584] = 1499, - [1585] = 1497, - [1586] = 1071, - [1587] = 1587, - [1588] = 1588, - [1589] = 1059, - [1590] = 1078, - [1591] = 1591, - [1592] = 1478, - [1593] = 1505, - [1594] = 1594, - [1595] = 1507, - [1596] = 1596, - [1597] = 1508, - [1598] = 1049, - [1599] = 1511, - [1600] = 1060, - [1601] = 1490, - [1602] = 1491, - [1603] = 1603, - [1604] = 1588, - [1605] = 1509, - [1606] = 1053, - [1607] = 1070, - [1608] = 1587, - [1609] = 1492, - [1610] = 1061, - [1611] = 1062, - [1612] = 1493, - [1613] = 1510, - [1614] = 369, - [1615] = 367, - [1616] = 1083, - [1617] = 366, - [1618] = 368, - [1619] = 1488, - [1620] = 1495, - [1621] = 1054, - [1622] = 1081, - [1623] = 1055, - [1624] = 1500, - [1625] = 1050, - [1626] = 1051, - [1627] = 1082, - [1628] = 1064, - [1629] = 1494, - [1630] = 1603, - [1631] = 1496, - [1632] = 1482, - [1633] = 1074, - [1634] = 1066, - [1635] = 1067, - [1636] = 1094, - [1637] = 1072, - [1638] = 1603, - [1639] = 1076, - [1640] = 1591, - [1641] = 370, - [1642] = 1418, - [1643] = 1173, - [1644] = 1176, - [1645] = 1426, - [1646] = 1177, - [1647] = 1458, - [1648] = 1179, - [1649] = 1427, - [1650] = 1181, - [1651] = 1467, - [1652] = 1473, - [1653] = 1240, - [1654] = 1241, - [1655] = 1474, - [1656] = 1243, - [1657] = 1244, - [1658] = 1658, - [1659] = 1246, - [1660] = 1465, - [1661] = 1476, - [1662] = 1499, - [1663] = 1663, - [1664] = 1664, - [1665] = 1450, - [1666] = 1497, - [1667] = 1667, - [1668] = 421, - [1669] = 373, - [1670] = 1429, - [1671] = 394, - [1672] = 395, - [1673] = 390, - [1674] = 372, - [1675] = 1675, - [1676] = 1453, - [1677] = 1454, - [1678] = 1462, - [1679] = 1500, - [1680] = 1298, - [1681] = 1416, - [1682] = 388, - [1683] = 1510, - [1684] = 382, - [1685] = 1424, - [1686] = 383, - [1687] = 1494, - [1688] = 376, - [1689] = 1505, - [1690] = 1507, - [1691] = 1508, - [1692] = 1511, - [1693] = 1490, - [1694] = 1491, - [1695] = 1492, - [1696] = 1493, - [1697] = 1488, - [1698] = 1495, - [1699] = 1496, - [1700] = 1121, - [1701] = 1122, - [1702] = 1172, - [1703] = 379, - [1704] = 384, - [1705] = 1509, - [1706] = 393, - [1707] = 1174, - [1708] = 1422, - [1709] = 374, - [1710] = 378, - [1711] = 380, - [1712] = 389, - [1713] = 371, - [1714] = 392, - [1715] = 162, - [1716] = 163, - [1717] = 386, - [1718] = 164, - [1719] = 1500, - [1720] = 165, - [1721] = 391, - [1722] = 1494, - [1723] = 166, - [1724] = 385, - [1725] = 1463, - [1726] = 1509, - [1727] = 1440, - [1728] = 1500, - [1729] = 213, - [1730] = 199, - [1731] = 1475, - [1732] = 1417, - [1733] = 1733, - [1734] = 1242, - [1735] = 1245, - [1736] = 1367, - [1737] = 1737, - [1738] = 1738, - [1739] = 1412, - [1740] = 1095, - [1741] = 1012, - [1742] = 1742, - [1743] = 1442, - [1744] = 1423, + [1557] = 317, + [1558] = 1555, + [1559] = 1047, + [1560] = 1556, + [1561] = 1555, + [1562] = 1049, + [1563] = 1491, + [1564] = 1069, + [1565] = 1068, + [1566] = 1482, + [1567] = 1555, + [1568] = 1433, + [1569] = 1464, + [1570] = 1223, + [1571] = 1073, + [1572] = 1572, + [1573] = 1075, + [1574] = 1069, + [1575] = 1077, + [1576] = 1043, + [1577] = 1572, + [1578] = 1050, + [1579] = 1556, + [1580] = 1433, + [1581] = 1450, + [1582] = 1556, + [1583] = 1450, + [1584] = 1584, + [1585] = 1585, + [1586] = 1496, + [1587] = 1504, + [1588] = 1070, + [1589] = 1062, + [1590] = 1584, + [1591] = 1071, + [1592] = 1592, + [1593] = 1506, + [1594] = 1513, + [1595] = 1092, + [1596] = 1098, + [1597] = 1597, + [1598] = 1097, + [1599] = 1072, + [1600] = 1053, + [1601] = 1056, + [1602] = 1063, + [1603] = 1501, + [1604] = 1491, + [1605] = 1093, + [1606] = 1511, + [1607] = 1607, + [1608] = 1094, + [1609] = 1057, + [1610] = 1495, + [1611] = 1584, + [1612] = 1503, + [1613] = 1482, + [1614] = 1080, + [1615] = 1064, + [1616] = 1067, + [1617] = 1065, + [1618] = 1585, + [1619] = 1076, + [1620] = 1597, + [1621] = 1059, + [1622] = 1066, + [1623] = 372, + [1624] = 1078, + [1625] = 1494, + [1626] = 1060, + [1627] = 371, + [1628] = 373, + [1629] = 370, + [1630] = 374, + [1631] = 1507, + [1632] = 1508, + [1633] = 1633, + [1634] = 1086, + [1635] = 1510, + [1636] = 1061, + [1637] = 1502, + [1638] = 1515, + [1639] = 1493, + [1640] = 1087, + [1641] = 1512, + [1642] = 1607, + [1643] = 1497, + [1644] = 1499, + [1645] = 1505, + [1646] = 1074, + [1647] = 163, + [1648] = 428, + [1649] = 386, + [1650] = 389, + [1651] = 390, + [1652] = 391, + [1653] = 392, + [1654] = 1654, + [1655] = 1467, + [1656] = 1515, + [1657] = 1103, + [1658] = 376, + [1659] = 1497, + [1660] = 1660, + [1661] = 381, + [1662] = 382, + [1663] = 1507, + [1664] = 384, + [1665] = 1469, + [1666] = 1510, + [1667] = 1493, + [1668] = 1499, + [1669] = 1501, + [1670] = 1502, + [1671] = 1503, + [1672] = 1504, + [1673] = 1505, + [1674] = 1506, + [1675] = 1508, + [1676] = 1512, + [1677] = 1413, + [1678] = 1106, + [1679] = 1107, + [1680] = 378, + [1681] = 379, + [1682] = 1494, + [1683] = 385, + [1684] = 1159, + [1685] = 1400, + [1686] = 395, + [1687] = 396, + [1688] = 375, + [1689] = 1445, + [1690] = 398, + [1691] = 377, + [1692] = 383, + [1693] = 145, + [1694] = 1694, + [1695] = 388, + [1696] = 168, + [1697] = 1114, + [1698] = 1515, + [1699] = 170, + [1700] = 380, + [1701] = 1507, + [1702] = 171, + [1703] = 399, + [1704] = 1414, + [1705] = 1705, + [1706] = 1494, + [1707] = 1443, + [1708] = 1708, + [1709] = 212, + [1710] = 213, + [1711] = 1711, + [1712] = 1449, + [1713] = 1713, + [1714] = 1515, + [1715] = 1715, + [1716] = 1716, + [1717] = 1717, + [1718] = 1109, + [1719] = 1115, + [1720] = 1116, + [1721] = 1410, + [1722] = 1108, + [1723] = 1723, + [1724] = 1113, + [1725] = 1016, + [1726] = 1726, + [1727] = 1727, + [1728] = 1408, + [1729] = 1157, + [1730] = 1456, + [1731] = 1731, + [1732] = 1418, + [1733] = 1419, + [1734] = 1110, + [1735] = 1735, + [1736] = 1441, + [1737] = 1457, + [1738] = 1497, + [1739] = 1739, + [1740] = 1459, + [1741] = 1705, + [1742] = 1717, + [1743] = 1743, + [1744] = 1507, [1745] = 1745, [1746] = 1746, - [1747] = 1747, - [1748] = 1204, - [1749] = 1441, - [1750] = 1664, - [1751] = 1446, - [1752] = 1430, - [1753] = 1753, - [1754] = 1469, - [1755] = 1755, - [1756] = 1658, - [1757] = 1413, - [1758] = 1758, - [1759] = 1663, - [1760] = 1443, - [1761] = 1675, + [1747] = 1723, + [1748] = 1748, + [1749] = 1660, + [1750] = 1750, + [1751] = 1751, + [1752] = 1748, + [1753] = 1416, + [1754] = 1417, + [1755] = 1743, + [1756] = 1510, + [1757] = 1493, + [1758] = 1499, + [1759] = 1501, + [1760] = 1502, + [1761] = 1503, [1762] = 1504, - [1763] = 1763, + [1763] = 1726, [1764] = 1764, - [1765] = 1414, - [1766] = 1746, - [1767] = 1745, - [1768] = 1303, - [1769] = 1510, - [1770] = 1354, - [1771] = 1771, - [1772] = 1738, - [1773] = 1431, - [1774] = 1774, - [1775] = 1504, - [1776] = 1506, - [1777] = 1742, - [1778] = 1499, - [1779] = 1497, - [1780] = 1745, - [1781] = 1494, - [1782] = 1782, - [1783] = 1783, - [1784] = 1755, - [1785] = 1785, - [1786] = 1663, - [1787] = 1432, - [1788] = 1506, - [1789] = 1738, - [1790] = 1505, - [1791] = 1742, - [1792] = 1745, - [1793] = 1507, - [1794] = 1508, - [1795] = 1511, - [1796] = 1490, - [1797] = 1755, - [1798] = 1663, - [1799] = 1491, - [1800] = 1738, - [1801] = 1745, - [1802] = 1492, - [1803] = 1755, - [1804] = 1804, - [1805] = 1663, - [1806] = 1409, - [1807] = 1738, - [1808] = 1745, - [1809] = 1809, - [1810] = 1493, - [1811] = 1488, - [1812] = 1495, - [1813] = 1755, - [1814] = 1663, - [1815] = 1738, - [1816] = 1496, - [1817] = 1745, - [1818] = 1755, - [1819] = 1753, - [1820] = 1663, - [1821] = 1738, - [1822] = 1415, - [1823] = 1129, - [1824] = 1472, - [1825] = 1119, - [1826] = 1120, - [1827] = 1448, - [1828] = 1758, - [1829] = 1126, - [1830] = 1771, - [1831] = 1127, - [1832] = 1419, - [1833] = 1355, - [1834] = 1834, - [1835] = 1421, - [1836] = 1327, + [1765] = 1506, + [1766] = 1716, + [1767] = 1508, + [1768] = 1512, + [1769] = 1420, + [1770] = 1496, + [1771] = 1513, + [1772] = 1723, + [1773] = 1511, + [1774] = 1495, + [1775] = 1727, + [1776] = 1776, + [1777] = 1739, + [1778] = 1461, + [1779] = 1462, + [1780] = 1104, + [1781] = 1105, + [1782] = 1705, + [1783] = 1727, + [1784] = 1748, + [1785] = 1422, + [1786] = 1746, + [1787] = 1735, + [1788] = 1427, + [1789] = 1111, + [1790] = 1716, + [1791] = 1723, + [1792] = 1727, + [1793] = 1112, + [1794] = 1429, + [1795] = 1442, + [1796] = 1705, + [1797] = 1748, + [1798] = 1716, + [1799] = 1727, + [1800] = 1716, + [1801] = 1494, + [1802] = 1705, + [1803] = 1748, + [1804] = 1716, + [1805] = 1727, + [1806] = 1399, + [1807] = 1158, + [1808] = 1705, + [1809] = 1748, + [1810] = 1716, + [1811] = 1727, + [1812] = 1162, + [1813] = 1705, + [1814] = 1748, + [1815] = 1163, + [1816] = 1401, + [1817] = 1398, + [1818] = 1165, + [1819] = 1421, + [1820] = 1168, + [1821] = 1436, + [1822] = 1166, + [1823] = 1426, + [1824] = 1389, + [1825] = 1396, + [1826] = 1404, + [1827] = 1406, + [1828] = 1474, + [1829] = 1829, + [1830] = 1227, + [1831] = 1496, + [1832] = 1228, + [1833] = 1513, + [1834] = 1230, + [1835] = 1161, + [1836] = 1836, [1837] = 1837, - [1838] = 1425, - [1839] = 1428, - [1840] = 1840, - [1841] = 1841, - [1842] = 1175, - [1843] = 1411, - [1844] = 1445, - [1845] = 1509, - [1846] = 1755, - [1847] = 1737, - [1848] = 1742, - [1849] = 1468, - [1850] = 1850, - [1851] = 1851, - [1852] = 1852, - [1853] = 1840, - [1854] = 1854, - [1855] = 1854, - [1856] = 1852, + [1838] = 1231, + [1839] = 1511, + [1840] = 1232, + [1841] = 1495, + [1842] = 1403, + [1843] = 1715, + [1844] = 1844, + [1845] = 1407, + [1846] = 1409, + [1847] = 1287, + [1848] = 1411, + [1849] = 1430, + [1850] = 1434, + [1851] = 1438, + [1852] = 1452, + [1853] = 1460, + [1854] = 1405, + [1855] = 1505, + [1856] = 1776, [1857] = 1857, [1858] = 1858, [1859] = 1859, [1860] = 1860, [1861] = 1861, [1862] = 1862, - [1863] = 1863, + [1863] = 1857, [1864] = 1864, [1865] = 1865, - [1866] = 1858, - [1867] = 1850, - [1868] = 1868, - [1869] = 1851, - [1870] = 1785, + [1866] = 1862, + [1867] = 1867, + [1868] = 1861, + [1869] = 1867, + [1870] = 1870, [1871] = 1871, - [1872] = 1863, + [1872] = 1872, [1873] = 1859, - [1874] = 1864, + [1874] = 1874, [1875] = 1875, - [1876] = 1876, - [1877] = 1871, - [1878] = 1852, - [1879] = 1879, - [1880] = 1865, - [1881] = 1783, - [1882] = 1860, - [1883] = 1883, - [1884] = 1884, - [1885] = 1885, - [1886] = 1885, - [1887] = 1887, - [1888] = 1884, - [1889] = 1889, + [1876] = 1859, + [1877] = 1877, + [1878] = 1870, + [1879] = 1844, + [1880] = 1880, + [1881] = 1881, + [1882] = 1882, + [1883] = 1858, + [1884] = 1708, + [1885] = 1881, + [1886] = 1886, + [1887] = 1880, + [1888] = 1860, + [1889] = 1871, [1890] = 1890, [1891] = 1891, - [1892] = 1889, - [1893] = 1891, - [1894] = 1894, - [1895] = 1894, - [1896] = 1890, - [1897] = 1897, + [1892] = 1891, + [1893] = 1893, + [1894] = 1893, + [1895] = 1895, + [1896] = 1896, + [1897] = 1895, [1898] = 1898, [1899] = 1899, - [1900] = 1900, - [1901] = 1901, - [1902] = 1901, - [1903] = 1900, - [1904] = 1900, - [1905] = 1900, - [1906] = 1901, - [1907] = 1900, - [1908] = 1908, - [1909] = 1908, - [1910] = 164, - [1911] = 166, - [1912] = 1015, - [1913] = 1028, - [1914] = 1017, - [1915] = 1025, - [1916] = 1016, - [1917] = 1917, - [1918] = 1033, - [1919] = 1022, - [1920] = 1018, - [1921] = 1028, - [1922] = 1031, - [1923] = 1030, - [1924] = 1023, + [1900] = 1899, + [1901] = 1898, + [1902] = 1896, + [1903] = 1903, + [1904] = 1904, + [1905] = 1905, + [1906] = 1906, + [1907] = 1907, + [1908] = 1906, + [1909] = 1906, + [1910] = 1907, + [1911] = 1907, + [1912] = 1907, + [1913] = 1907, + [1914] = 1914, + [1915] = 1914, + [1916] = 1019, + [1917] = 171, + [1918] = 168, + [1919] = 1026, + [1920] = 1020, + [1921] = 1030, + [1922] = 1022, + [1923] = 1923, + [1924] = 1021, [1925] = 1025, - [1926] = 1033, - [1927] = 1022, - [1928] = 1019, - [1929] = 1075, - [1930] = 1073, - [1931] = 1069, - [1932] = 1043, - [1933] = 1044, - [1934] = 1045, + [1926] = 1035, + [1927] = 1032, + [1928] = 1027, + [1929] = 1035, + [1930] = 1036, + [1931] = 1026, + [1932] = 1028, + [1933] = 1030, + [1934] = 1025, [1935] = 1077, - [1936] = 1039, - [1937] = 1064, - [1938] = 1938, - [1939] = 1055, - [1940] = 1054, - [1941] = 1941, - [1942] = 1942, - [1943] = 1053, - [1944] = 1941, - [1945] = 1945, - [1946] = 1076, - [1947] = 1071, - [1948] = 385, - [1949] = 1059, - [1950] = 213, - [1951] = 1074, - [1952] = 1525, - [1953] = 1070, - [1954] = 1938, - [1955] = 1050, - [1956] = 1062, - [1957] = 1067, - [1958] = 1945, - [1959] = 1065, - [1960] = 1049, - [1961] = 1060, - [1962] = 1072, - [1963] = 1051, - [1964] = 1058, - [1965] = 199, - [1966] = 1945, - [1967] = 1061, - [1968] = 1078, - [1969] = 1094, - [1970] = 1066, - [1971] = 1971, - [1972] = 391, - [1973] = 1240, - [1974] = 1446, - [1975] = 1119, - [1976] = 1120, - [1977] = 1122, - [1978] = 1355, - [1979] = 1181, - [1980] = 1938, - [1981] = 1176, - [1982] = 1126, - [1983] = 1127, - [1984] = 1173, - [1985] = 1426, - [1986] = 1174, - [1987] = 1177, - [1988] = 1988, - [1989] = 1532, - [1990] = 1533, - [1991] = 1241, - [1992] = 1476, - [1993] = 1422, - [1994] = 1179, - [1995] = 1995, - [1996] = 1367, - [1997] = 1243, - [1998] = 1244, - [1999] = 1412, - [2000] = 1246, - [2001] = 1541, - [2002] = 1416, - [2003] = 1442, - [2004] = 1121, - [2005] = 165, - [2006] = 163, - [2007] = 2007, - [2008] = 2008, - [2009] = 2009, - [2010] = 1033, - [2011] = 1022, - [2012] = 1025, - [2013] = 1025, - [2014] = 1028, - [2015] = 1022, - [2016] = 2016, - [2017] = 2017, - [2018] = 1028, - [2019] = 2019, - [2020] = 1025, - [2021] = 1022, - [2022] = 1917, - [2023] = 1028, - [2024] = 1033, - [2025] = 1033, - [2026] = 2026, - [2027] = 2027, - [2028] = 2028, - [2029] = 2029, - [2030] = 2030, + [1936] = 1043, + [1937] = 1050, + [1938] = 1068, + [1939] = 1049, + [1940] = 1075, + [1941] = 1062, + [1942] = 1047, + [1943] = 1073, + [1944] = 1097, + [1945] = 1053, + [1946] = 1072, + [1947] = 1947, + [1948] = 1948, + [1949] = 1949, + [1950] = 1948, + [1951] = 1078, + [1952] = 1952, + [1953] = 1061, + [1954] = 1070, + [1955] = 1059, + [1956] = 380, + [1957] = 1094, + [1958] = 212, + [1959] = 1540, + [1960] = 1071, + [1961] = 1961, + [1962] = 1098, + [1963] = 1064, + [1964] = 1066, + [1965] = 399, + [1966] = 1092, + [1967] = 213, + [1968] = 1060, + [1969] = 1952, + [1970] = 1056, + [1971] = 1076, + [1972] = 1057, + [1973] = 1063, + [1974] = 1947, + [1975] = 1065, + [1976] = 1952, + [1977] = 1074, + [1978] = 1093, + [1979] = 1230, + [1980] = 1113, + [1981] = 1227, + [1982] = 1110, + [1983] = 1157, + [1984] = 1529, + [1985] = 1287, + [1986] = 1231, + [1987] = 1104, + [1988] = 1103, + [1989] = 1467, + [1990] = 1990, + [1991] = 1228, + [1992] = 1530, + [1993] = 1163, + [1994] = 1159, + [1995] = 1105, + [1996] = 1106, + [1997] = 1107, + [1998] = 1111, + [1999] = 1232, + [2000] = 1108, + [2001] = 1947, + [2002] = 1400, + [2003] = 1165, + [2004] = 2004, + [2005] = 1162, + [2006] = 1168, + [2007] = 1531, + [2008] = 1469, + [2009] = 1158, + [2010] = 1112, + [2011] = 2011, + [2012] = 145, + [2013] = 170, + [2014] = 2014, + [2015] = 2015, + [2016] = 1025, + [2017] = 1035, + [2018] = 2018, + [2019] = 1026, + [2020] = 1035, + [2021] = 2021, + [2022] = 1923, + [2023] = 1030, + [2024] = 1025, + [2025] = 1025, + [2026] = 1026, + [2027] = 1026, + [2028] = 1030, + [2029] = 1035, + [2030] = 1030, [2031] = 2031, - [2032] = 2030, + [2032] = 2032, [2033] = 2033, [2034] = 2034, - [2035] = 2029, - [2036] = 2033, + [2035] = 2035, + [2036] = 2034, [2037] = 2037, - [2038] = 2028, - [2039] = 2026, - [2040] = 2027, - [2041] = 2031, - [2042] = 366, - [2043] = 2043, + [2038] = 2033, + [2039] = 2035, + [2040] = 2037, + [2041] = 2041, + [2042] = 2042, + [2043] = 2042, [2044] = 2044, - [2045] = 2045, + [2045] = 2044, [2046] = 2046, - [2047] = 2047, + [2047] = 2032, [2048] = 2048, [2049] = 2049, [2050] = 2050, [2051] = 2051, - [2052] = 367, - [2053] = 2053, - [2054] = 2047, + [2052] = 370, + [2053] = 372, + [2054] = 2054, [2055] = 2055, [2056] = 2056, [2057] = 2057, - [2058] = 369, + [2058] = 2058, [2059] = 2059, - [2060] = 2060, - [2061] = 1025, - [2062] = 368, - [2063] = 1022, - [2064] = 1028, - [2065] = 2065, - [2066] = 2066, - [2067] = 2067, - [2068] = 2068, + [2060] = 374, + [2061] = 373, + [2062] = 2062, + [2063] = 2063, + [2064] = 1035, + [2065] = 1025, + [2066] = 1949, + [2067] = 2050, + [2068] = 1026, [2069] = 2069, [2070] = 2070, - [2071] = 1942, - [2072] = 2072, - [2073] = 370, - [2074] = 2053, + [2071] = 2071, + [2072] = 1030, + [2073] = 2073, + [2074] = 371, [2075] = 2075, - [2076] = 2051, - [2077] = 2070, - [2078] = 2049, + [2076] = 2048, + [2077] = 2056, + [2078] = 2078, [2079] = 2055, - [2080] = 2072, - [2081] = 2060, - [2082] = 2068, - [2083] = 1033, - [2084] = 1942, + [2080] = 2057, + [2081] = 2073, + [2082] = 2078, + [2083] = 2083, + [2084] = 2059, [2085] = 2085, [2086] = 2086, - [2087] = 2087, + [2087] = 2083, [2088] = 2088, [2089] = 2089, [2090] = 2090, @@ -5979,96 +5989,96 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2097] = 2097, [2098] = 2098, [2099] = 2099, - [2100] = 2100, + [2100] = 1961, [2101] = 2101, - [2102] = 1942, + [2102] = 1949, [2103] = 2103, [2104] = 2104, [2105] = 2105, [2106] = 2106, - [2107] = 2107, + [2107] = 2098, [2108] = 2108, [2109] = 2109, - [2110] = 2110, + [2110] = 388, [2111] = 2111, [2112] = 2112, - [2113] = 386, + [2113] = 2113, [2114] = 2114, [2115] = 2115, - [2116] = 2116, + [2116] = 1949, [2117] = 2117, [2118] = 2118, - [2119] = 2119, + [2119] = 2117, [2120] = 2120, - [2121] = 2094, - [2122] = 2114, + [2121] = 2121, + [2122] = 2122, [2123] = 2123, [2124] = 2124, [2125] = 2125, - [2126] = 1971, - [2127] = 2125, - [2128] = 2094, + [2126] = 2126, + [2127] = 2098, + [2128] = 2128, [2129] = 2129, [2130] = 2130, - [2131] = 2131, - [2132] = 2085, + [2131] = 2105, + [2132] = 2132, [2133] = 2133, - [2134] = 2104, + [2134] = 2134, [2135] = 2135, [2136] = 2136, - [2137] = 1045, - [2138] = 2138, - [2139] = 1942, + [2137] = 2134, + [2138] = 2097, + [2139] = 2139, [2140] = 2140, [2141] = 2141, [2142] = 2142, [2143] = 2143, [2144] = 2144, [2145] = 2145, - [2146] = 2138, + [2146] = 2146, [2147] = 2147, [2148] = 2148, [2149] = 2149, [2150] = 2150, [2151] = 2151, - [2152] = 2152, - [2153] = 1971, - [2154] = 2136, + [2152] = 2142, + [2153] = 2153, + [2154] = 2154, [2155] = 1043, - [2156] = 2141, + [2156] = 2156, [2157] = 2157, - [2158] = 2158, - [2159] = 2159, - [2160] = 1039, - [2161] = 2147, - [2162] = 2162, + [2158] = 1047, + [2159] = 1049, + [2160] = 1050, + [2161] = 1961, + [2162] = 2156, [2163] = 2163, - [2164] = 2143, - [2165] = 2163, - [2166] = 2166, + [2164] = 2164, + [2165] = 2165, + [2166] = 2154, [2167] = 2167, - [2168] = 2149, - [2169] = 2166, - [2170] = 1971, - [2171] = 2171, - [2172] = 2159, - [2173] = 2167, - [2174] = 2174, - [2175] = 2157, - [2176] = 2171, - [2177] = 2145, - [2178] = 2158, - [2179] = 2140, - [2180] = 2136, - [2181] = 2147, - [2182] = 2174, - [2183] = 1044, - [2184] = 2184, - [2185] = 2185, - [2186] = 2186, - [2187] = 2187, - [2188] = 2188, - [2189] = 2189, + [2168] = 2168, + [2169] = 2169, + [2170] = 2170, + [2171] = 2163, + [2172] = 2169, + [2173] = 2173, + [2174] = 2143, + [2175] = 2146, + [2176] = 2151, + [2177] = 2153, + [2178] = 2167, + [2179] = 2164, + [2180] = 1949, + [2181] = 2181, + [2182] = 2153, + [2183] = 2167, + [2184] = 2173, + [2185] = 2165, + [2186] = 1961, + [2187] = 2181, + [2188] = 2147, + [2189] = 2168, [2190] = 2190, [2191] = 2191, [2192] = 2192, @@ -6083,8 +6093,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2201] = 2201, [2202] = 2202, [2203] = 2203, - [2204] = 1971, - [2205] = 2185, + [2204] = 2204, + [2205] = 2205, [2206] = 2206, [2207] = 2207, [2208] = 2208, @@ -6092,200 +6102,200 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2210] = 2210, [2211] = 2211, [2212] = 2212, - [2213] = 2213, - [2214] = 2198, + [2213] = 2209, + [2214] = 2214, [2215] = 2215, [2216] = 2216, - [2217] = 2215, - [2218] = 2190, - [2219] = 2208, - [2220] = 2210, - [2221] = 2194, + [2217] = 2217, + [2218] = 2218, + [2219] = 2219, + [2220] = 2220, + [2221] = 2221, [2222] = 2222, - [2223] = 2223, - [2224] = 2199, - [2225] = 2196, - [2226] = 2184, - [2227] = 2227, - [2228] = 2228, - [2229] = 2229, - [2230] = 2206, - [2231] = 2228, - [2232] = 2200, - [2233] = 2216, - [2234] = 2202, - [2235] = 2227, - [2236] = 2201, - [2237] = 2186, - [2238] = 2223, - [2239] = 2187, - [2240] = 2240, - [2241] = 2241, - [2242] = 2242, - [2243] = 2243, - [2244] = 2244, - [2245] = 2245, + [2223] = 2215, + [2224] = 2218, + [2225] = 2225, + [2226] = 2210, + [2227] = 2204, + [2228] = 2216, + [2229] = 2217, + [2230] = 2205, + [2231] = 2190, + [2232] = 1961, + [2233] = 2233, + [2234] = 2225, + [2235] = 2220, + [2236] = 2221, + [2237] = 2197, + [2238] = 2238, + [2239] = 2222, + [2240] = 2219, + [2241] = 2208, + [2242] = 2201, + [2243] = 2207, + [2244] = 2202, + [2245] = 2199, [2246] = 2246, - [2247] = 2247, + [2247] = 2015, [2248] = 2248, [2249] = 2249, - [2250] = 2244, + [2250] = 2250, [2251] = 2251, [2252] = 2252, [2253] = 2253, [2254] = 2254, [2255] = 2255, - [2256] = 2249, - [2257] = 2254, + [2256] = 2256, + [2257] = 2257, [2258] = 2258, [2259] = 2259, [2260] = 2260, [2261] = 2261, - [2262] = 2252, + [2262] = 2258, [2263] = 2263, - [2264] = 2247, + [2264] = 2264, [2265] = 2265, [2266] = 2261, [2267] = 2267, - [2268] = 2243, + [2268] = 2248, [2269] = 2269, [2270] = 2270, - [2271] = 2271, - [2272] = 2272, - [2273] = 2273, - [2274] = 2241, - [2275] = 2275, - [2276] = 2258, - [2277] = 2259, + [2271] = 2255, + [2272] = 2259, + [2273] = 2270, + [2274] = 2274, + [2275] = 2267, + [2276] = 2249, + [2277] = 2250, [2278] = 2278, - [2279] = 2275, - [2280] = 2280, - [2281] = 2245, - [2282] = 2242, - [2283] = 2252, - [2284] = 2253, - [2285] = 2285, - [2286] = 2269, - [2287] = 2255, - [2288] = 2288, - [2289] = 2260, - [2290] = 2009, - [2291] = 2280, - [2292] = 2246, - [2293] = 2248, - [2294] = 2294, - [2295] = 2271, - [2296] = 2265, - [2297] = 2297, - [2298] = 2298, + [2279] = 2264, + [2280] = 2265, + [2281] = 2269, + [2282] = 2282, + [2283] = 2283, + [2284] = 2278, + [2285] = 2283, + [2286] = 2286, + [2287] = 2282, + [2288] = 2263, + [2289] = 2289, + [2290] = 2253, + [2291] = 2291, + [2292] = 2292, + [2293] = 2291, + [2294] = 2283, + [2295] = 2295, + [2296] = 2296, + [2297] = 2251, + [2298] = 2256, [2299] = 2299, [2300] = 2300, - [2301] = 2301, + [2301] = 2260, [2302] = 2302, - [2303] = 2301, - [2304] = 2302, - [2305] = 2305, + [2303] = 2289, + [2304] = 2304, + [2305] = 2031, [2306] = 2306, - [2307] = 2017, + [2307] = 2018, [2308] = 2308, [2309] = 2309, - [2310] = 2310, - [2311] = 2016, - [2312] = 2312, + [2310] = 145, + [2311] = 168, + [2312] = 170, [2313] = 2313, - [2314] = 2314, + [2314] = 171, [2315] = 2315, [2316] = 2316, - [2317] = 2313, - [2318] = 2318, - [2319] = 2298, - [2320] = 2308, + [2317] = 2317, + [2318] = 2021, + [2319] = 2319, + [2320] = 2320, [2321] = 2321, - [2322] = 164, + [2322] = 2322, [2323] = 2323, - [2324] = 2324, - [2325] = 2323, + [2324] = 2304, + [2325] = 2325, [2326] = 2326, - [2327] = 2327, + [2327] = 2319, [2328] = 2328, [2329] = 2329, - [2330] = 2330, + [2330] = 2328, [2331] = 2331, - [2332] = 2331, + [2332] = 2332, [2333] = 2333, [2334] = 2334, - [2335] = 2312, - [2336] = 2336, - [2337] = 2333, - [2338] = 2338, + [2335] = 2335, + [2336] = 2315, + [2337] = 2337, + [2338] = 2316, [2339] = 2339, - [2340] = 2315, + [2340] = 2340, [2341] = 2341, [2342] = 2342, - [2343] = 2343, - [2344] = 2330, - [2345] = 165, - [2346] = 2019, - [2347] = 2306, + [2343] = 2331, + [2344] = 2344, + [2345] = 2345, + [2346] = 2346, + [2347] = 2308, [2348] = 2348, [2349] = 2349, - [2350] = 2328, + [2350] = 2350, [2351] = 2351, [2352] = 2352, [2353] = 2353, - [2354] = 2354, + [2354] = 2348, [2355] = 2355, [2356] = 2356, - [2357] = 2357, - [2358] = 2354, - [2359] = 2355, - [2360] = 2336, - [2361] = 2343, - [2362] = 2353, - [2363] = 2348, - [2364] = 2364, - [2365] = 2365, - [2366] = 2314, - [2367] = 2324, - [2368] = 166, - [2369] = 2305, - [2370] = 2299, - [2371] = 2371, - [2372] = 2364, - [2373] = 2373, - [2374] = 2333, - [2375] = 2343, - [2376] = 2376, - [2377] = 2300, - [2378] = 2341, - [2379] = 2329, - [2380] = 2342, - [2381] = 2334, - [2382] = 2308, - [2383] = 2316, - [2384] = 2355, - [2385] = 2343, - [2386] = 2356, - [2387] = 2352, - [2388] = 2331, - [2389] = 2321, - [2390] = 2327, - [2391] = 163, - [2392] = 2309, - [2393] = 2376, - [2394] = 2349, - [2395] = 2357, - [2396] = 2371, - [2397] = 2397, - [2398] = 2398, - [2399] = 2399, - [2400] = 2400, - [2401] = 2401, - [2402] = 2402, + [2357] = 2335, + [2358] = 2339, + [2359] = 2359, + [2360] = 2349, + [2361] = 2344, + [2362] = 2362, + [2363] = 2363, + [2364] = 2337, + [2365] = 2340, + [2366] = 2350, + [2367] = 2351, + [2368] = 2352, + [2369] = 2353, + [2370] = 2322, + [2371] = 2341, + [2372] = 2342, + [2373] = 2344, + [2374] = 2341, + [2375] = 2342, + [2376] = 2344, + [2377] = 2377, + [2378] = 2359, + [2379] = 2323, + [2380] = 2380, + [2381] = 2381, + [2382] = 2332, + [2383] = 2319, + [2384] = 2384, + [2385] = 2333, + [2386] = 2345, + [2387] = 2334, + [2388] = 2381, + [2389] = 2389, + [2390] = 2309, + [2391] = 2384, + [2392] = 2392, + [2393] = 2381, + [2394] = 2346, + [2395] = 2362, + [2396] = 2380, + [2397] = 2363, + [2398] = 2329, + [2399] = 2326, + [2400] = 2389, + [2401] = 2355, + [2402] = 2325, [2403] = 2403, [2404] = 2404, - [2405] = 1012, - [2406] = 2406, + [2405] = 2405, + [2406] = 2403, [2407] = 2407, [2408] = 2408, [2409] = 2409, @@ -6297,351 +6307,351 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2415] = 2415, [2416] = 2416, [2417] = 2417, - [2418] = 1452, - [2419] = 1455, + [2418] = 2418, + [2419] = 2419, [2420] = 2420, - [2421] = 2398, + [2421] = 2421, [2422] = 2422, [2423] = 2423, [2424] = 2424, - [2425] = 2424, - [2426] = 2426, + [2425] = 2420, + [2426] = 2408, [2427] = 2427, [2428] = 2428, [2429] = 2429, [2430] = 2430, [2431] = 2431, - [2432] = 2432, - [2433] = 2433, - [2434] = 1124, - [2435] = 1130, - [2436] = 1144, + [2432] = 2423, + [2433] = 2413, + [2434] = 2424, + [2435] = 2418, + [2436] = 2436, [2437] = 2437, - [2438] = 2412, - [2439] = 2399, - [2440] = 2404, - [2441] = 2406, + [2438] = 2438, + [2439] = 2439, + [2440] = 2440, + [2441] = 2441, [2442] = 2415, - [2443] = 2443, - [2444] = 2444, - [2445] = 2445, - [2446] = 2446, + [2443] = 2423, + [2444] = 1391, + [2445] = 1395, + [2446] = 2422, [2447] = 2447, - [2448] = 2448, + [2448] = 2424, [2449] = 2449, - [2450] = 2400, - [2451] = 2451, - [2452] = 2432, - [2453] = 2428, - [2454] = 1436, - [2455] = 1437, - [2456] = 1438, - [2457] = 2457, - [2458] = 2444, - [2459] = 2447, - [2460] = 2460, + [2450] = 2415, + [2451] = 2404, + [2452] = 2413, + [2453] = 2453, + [2454] = 2437, + [2455] = 2409, + [2456] = 2417, + [2457] = 2437, + [2458] = 2458, + [2459] = 2459, + [2460] = 2411, [2461] = 2461, [2462] = 2462, [2463] = 2463, [2464] = 2464, - [2465] = 2465, - [2466] = 2398, - [2467] = 2422, - [2468] = 2460, - [2469] = 2427, - [2470] = 2437, - [2471] = 2412, - [2472] = 1459, - [2473] = 2445, - [2474] = 1460, - [2475] = 2475, - [2476] = 2476, - [2477] = 2398, + [2465] = 2438, + [2466] = 1453, + [2467] = 1454, + [2468] = 1455, + [2469] = 2469, + [2470] = 2470, + [2471] = 2471, + [2472] = 2472, + [2473] = 2423, + [2474] = 2474, + [2475] = 2441, + [2476] = 2428, + [2477] = 2477, [2478] = 2478, - [2479] = 2479, + [2479] = 2429, [2480] = 2480, - [2481] = 2428, - [2482] = 2427, - [2483] = 2461, - [2484] = 2445, - [2485] = 2462, - [2486] = 2437, - [2487] = 2487, + [2481] = 2481, + [2482] = 2482, + [2483] = 2483, + [2484] = 1423, + [2485] = 2418, + [2486] = 2453, + [2487] = 2416, [2488] = 2488, - [2489] = 2489, - [2490] = 2490, - [2491] = 2446, - [2492] = 2463, - [2493] = 2493, - [2494] = 2464, - [2495] = 2422, - [2496] = 2496, - [2497] = 2465, - [2498] = 2412, - [2499] = 2413, - [2500] = 2449, - [2501] = 2501, + [2489] = 2413, + [2490] = 2449, + [2491] = 2410, + [2492] = 2492, + [2493] = 2449, + [2494] = 2494, + [2495] = 1392, + [2496] = 1393, + [2497] = 1394, + [2498] = 2430, + [2499] = 2470, + [2500] = 2500, + [2501] = 1016, [2502] = 2502, - [2503] = 2430, - [2504] = 2413, - [2505] = 2417, - [2506] = 2506, - [2507] = 2507, - [2508] = 2508, - [2509] = 2044, - [2510] = 2043, - [2511] = 2075, - [2512] = 2046, + [2503] = 2440, + [2504] = 2504, + [2505] = 2471, + [2506] = 1424, + [2507] = 2472, + [2508] = 2438, + [2509] = 2509, + [2510] = 2510, + [2511] = 2511, + [2512] = 2512, [2513] = 2513, - [2514] = 2514, - [2515] = 2059, + [2514] = 2070, + [2515] = 2515, [2516] = 2516, [2517] = 2517, [2518] = 2518, - [2519] = 2065, - [2520] = 2066, + [2519] = 2519, + [2520] = 2520, [2521] = 2521, [2522] = 2522, - [2523] = 2067, + [2523] = 2523, [2524] = 2524, [2525] = 2525, [2526] = 2526, [2527] = 2527, - [2528] = 2508, + [2528] = 2528, [2529] = 2529, [2530] = 2530, [2531] = 2531, [2532] = 2532, [2533] = 2533, [2534] = 2534, - [2535] = 2530, + [2535] = 2535, [2536] = 2536, - [2537] = 2537, + [2537] = 157, [2538] = 2538, - [2539] = 2539, + [2539] = 156, [2540] = 2540, - [2541] = 2532, + [2541] = 2541, [2542] = 2542, - [2543] = 2517, + [2543] = 2543, [2544] = 2544, [2545] = 2545, - [2546] = 2546, + [2546] = 2530, [2547] = 2547, - [2548] = 2518, + [2548] = 2532, [2549] = 2549, [2550] = 2550, - [2551] = 2551, - [2552] = 2552, + [2551] = 2526, + [2552] = 2512, [2553] = 2553, - [2554] = 2554, - [2555] = 2555, - [2556] = 2556, - [2557] = 159, - [2558] = 2558, - [2559] = 2536, + [2554] = 2519, + [2555] = 2525, + [2556] = 2538, + [2557] = 2543, + [2558] = 2545, + [2559] = 2538, [2560] = 2560, [2561] = 2561, [2562] = 2562, - [2563] = 2522, - [2564] = 2553, + [2563] = 2536, + [2564] = 2564, [2565] = 2565, - [2566] = 2566, + [2566] = 2560, [2567] = 2567, [2568] = 2568, - [2569] = 2546, - [2570] = 2537, - [2571] = 2538, - [2572] = 2572, + [2569] = 2569, + [2570] = 2570, + [2571] = 2571, + [2572] = 2571, [2573] = 2573, [2574] = 2574, - [2575] = 2575, - [2576] = 2518, - [2577] = 2577, + [2575] = 2562, + [2576] = 2576, + [2577] = 2524, [2578] = 2578, - [2579] = 2579, - [2580] = 2580, + [2579] = 2547, + [2580] = 2519, [2581] = 2581, - [2582] = 2554, + [2582] = 2549, [2583] = 2583, - [2584] = 2533, - [2585] = 2546, - [2586] = 2572, - [2587] = 2575, + [2584] = 2584, + [2585] = 2585, + [2586] = 2586, + [2587] = 2587, [2588] = 2588, - [2589] = 2579, - [2590] = 2580, + [2589] = 2589, + [2590] = 2561, [2591] = 2591, [2592] = 2592, - [2593] = 2593, + [2593] = 2589, [2594] = 2594, - [2595] = 2529, - [2596] = 2596, - [2597] = 2568, - [2598] = 2598, - [2599] = 2599, - [2600] = 2600, - [2601] = 2506, - [2602] = 2534, - [2603] = 2544, - [2604] = 2558, - [2605] = 2605, - [2606] = 2592, - [2607] = 2607, - [2608] = 2608, - [2609] = 2609, - [2610] = 2566, - [2611] = 2611, - [2612] = 2598, - [2613] = 2593, - [2614] = 2516, - [2615] = 2615, - [2616] = 2536, - [2617] = 2617, - [2618] = 2599, - [2619] = 2600, - [2620] = 2594, - [2621] = 2529, - [2622] = 2540, - [2623] = 2596, - [2624] = 2596, - [2625] = 2625, + [2595] = 2543, + [2596] = 2562, + [2597] = 2544, + [2598] = 2530, + [2599] = 2547, + [2600] = 2532, + [2601] = 2550, + [2602] = 2541, + [2603] = 2525, + [2604] = 2538, + [2605] = 2543, + [2606] = 2545, + [2607] = 2561, + [2608] = 2562, + [2609] = 2536, + [2610] = 2567, + [2611] = 2568, + [2612] = 2524, + [2613] = 2613, + [2614] = 2573, + [2615] = 2567, + [2616] = 2587, + [2617] = 2536, + [2618] = 2532, + [2619] = 2550, + [2620] = 2620, + [2621] = 2621, + [2622] = 2538, + [2623] = 2562, + [2624] = 2536, + [2625] = 2567, [2626] = 2568, - [2627] = 2546, - [2628] = 2572, - [2629] = 2575, - [2630] = 2579, - [2631] = 2593, - [2632] = 2594, - [2633] = 2529, - [2634] = 2596, - [2635] = 2568, - [2636] = 2598, - [2637] = 2599, - [2638] = 2566, - [2639] = 2534, - [2640] = 2544, - [2641] = 2641, - [2642] = 2566, - [2643] = 2643, - [2644] = 2536, - [2645] = 2575, - [2646] = 2579, - [2647] = 2594, - [2648] = 2598, - [2649] = 2599, - [2650] = 2599, - [2651] = 2534, - [2652] = 2544, - [2653] = 2600, - [2654] = 2526, - [2655] = 2607, - [2656] = 2575, - [2657] = 2527, - [2658] = 2598, - [2659] = 2534, - [2660] = 2544, - [2661] = 2661, - [2662] = 2506, - [2663] = 2540, + [2627] = 2564, + [2628] = 2628, + [2629] = 2532, + [2630] = 2562, + [2631] = 2567, + [2632] = 2568, + [2633] = 2564, + [2634] = 2545, + [2635] = 2542, + [2636] = 2636, + [2637] = 2567, + [2638] = 2568, + [2639] = 2568, + [2640] = 2567, + [2641] = 2568, + [2642] = 2567, + [2643] = 2568, + [2644] = 2534, + [2645] = 2568, + [2646] = 2567, + [2647] = 2568, + [2648] = 2567, + [2649] = 2568, + [2650] = 2650, + [2651] = 2594, + [2652] = 2569, + [2653] = 2653, + [2654] = 2565, + [2655] = 2655, + [2656] = 2534, + [2657] = 2657, + [2658] = 2658, + [2659] = 2550, + [2660] = 2660, + [2661] = 2570, + [2662] = 2662, + [2663] = 2587, [2664] = 2664, - [2665] = 2534, - [2666] = 2544, - [2667] = 2534, - [2668] = 2544, - [2669] = 2534, - [2670] = 2544, - [2671] = 2534, - [2672] = 2544, - [2673] = 2534, - [2674] = 2544, - [2675] = 2534, - [2676] = 2544, - [2677] = 2677, - [2678] = 160, - [2679] = 2539, - [2680] = 2513, - [2681] = 2533, - [2682] = 2578, + [2665] = 2665, + [2666] = 2666, + [2667] = 2655, + [2668] = 2584, + [2669] = 2669, + [2670] = 2670, + [2671] = 2671, + [2672] = 2672, + [2673] = 2673, + [2674] = 2567, + [2675] = 2561, + [2676] = 2676, + [2677] = 2525, + [2678] = 2657, + [2679] = 2568, + [2680] = 2517, + [2681] = 2681, + [2682] = 2592, [2683] = 2683, - [2684] = 2664, - [2685] = 2685, - [2686] = 2592, - [2687] = 2588, - [2688] = 2534, - [2689] = 2544, + [2684] = 2587, + [2685] = 2569, + [2686] = 2686, + [2687] = 2687, + [2688] = 2586, + [2689] = 2530, [2690] = 2690, [2691] = 2691, - [2692] = 2692, - [2693] = 2558, - [2694] = 2694, - [2695] = 2572, - [2696] = 2611, - [2697] = 2697, - [2698] = 2551, - [2699] = 2514, - [2700] = 2607, - [2701] = 2701, - [2702] = 2702, - [2703] = 2697, - [2704] = 2702, + [2692] = 2547, + [2693] = 2574, + [2694] = 2553, + [2695] = 2549, + [2696] = 2669, + [2697] = 2672, + [2698] = 2698, + [2699] = 2532, + [2700] = 2533, + [2701] = 2535, + [2702] = 2664, + [2703] = 2522, + [2704] = 2529, [2705] = 2705, - [2706] = 2579, - [2707] = 2545, - [2708] = 2524, + [2706] = 2706, + [2707] = 2707, + [2708] = 2528, [2709] = 2709, - [2710] = 2710, - [2711] = 2711, + [2710] = 2588, + [2711] = 2520, [2712] = 2712, - [2713] = 2713, - [2714] = 2625, - [2715] = 2641, - [2716] = 2716, - [2717] = 2547, - [2718] = 2615, - [2719] = 2712, - [2720] = 2683, - [2721] = 2710, - [2722] = 2711, - [2723] = 2580, - [2724] = 2533, - [2725] = 2685, - [2726] = 2516, - [2727] = 2727, - [2728] = 2594, - [2729] = 2525, - [2730] = 2730, - [2731] = 2560, - [2732] = 2533, + [2713] = 2527, + [2714] = 2534, + [2715] = 2576, + [2716] = 2584, + [2717] = 2670, + [2718] = 2718, + [2719] = 2719, + [2720] = 2592, + [2721] = 2613, + [2722] = 2620, + [2723] = 2524, + [2724] = 2724, + [2725] = 2534, + [2726] = 2550, + [2727] = 2584, + [2728] = 2560, + [2729] = 2729, + [2730] = 2571, + [2731] = 2075, + [2732] = 2088, [2733] = 2733, - [2734] = 2685, - [2735] = 2735, - [2736] = 2593, - [2737] = 2709, - [2738] = 2685, - [2739] = 2694, - [2740] = 2567, - [2741] = 2713, - [2742] = 2733, - [2743] = 2517, - [2744] = 2575, - [2745] = 2550, - [2746] = 2598, - [2747] = 2747, - [2748] = 2748, - [2749] = 2749, - [2750] = 2750, - [2751] = 2135, - [2752] = 2752, + [2734] = 2085, + [2735] = 2049, + [2736] = 2581, + [2737] = 2621, + [2738] = 2671, + [2739] = 2063, + [2740] = 2526, + [2741] = 2523, + [2742] = 2729, + [2743] = 2676, + [2744] = 2565, + [2745] = 2698, + [2746] = 2687, + [2747] = 2089, + [2748] = 2574, + [2749] = 2069, + [2750] = 2706, + [2751] = 2707, + [2752] = 2567, [2753] = 2753, [2754] = 2754, - [2755] = 2117, - [2756] = 2119, - [2757] = 2750, + [2755] = 2755, + [2756] = 2756, + [2757] = 2757, [2758] = 2758, - [2759] = 2120, + [2759] = 2759, [2760] = 2760, [2761] = 2761, - [2762] = 2133, + [2762] = 2762, [2763] = 2763, [2764] = 2764, [2765] = 2765, @@ -6649,291 +6659,291 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2767] = 2767, [2768] = 2768, [2769] = 2769, - [2770] = 2099, + [2770] = 2770, [2771] = 2771, [2772] = 2772, - [2773] = 2105, + [2773] = 2773, [2774] = 2774, [2775] = 2775, [2776] = 2776, [2777] = 2777, - [2778] = 2115, - [2779] = 2118, + [2778] = 2778, + [2779] = 2779, [2780] = 2780, - [2781] = 2130, + [2781] = 2781, [2782] = 2782, - [2783] = 2123, - [2784] = 2131, + [2783] = 2783, + [2784] = 2784, [2785] = 2785, [2786] = 2786, [2787] = 2787, - [2788] = 2788, - [2789] = 2129, + [2788] = 2753, + [2789] = 2789, [2790] = 2790, - [2791] = 2095, - [2792] = 2780, - [2793] = 2793, - [2794] = 2111, - [2795] = 2795, - [2796] = 386, + [2791] = 2791, + [2792] = 2792, + [2793] = 2761, + [2794] = 2794, + [2795] = 2780, + [2796] = 2796, [2797] = 2797, - [2798] = 2798, + [2798] = 2773, [2799] = 2799, [2800] = 2800, [2801] = 2801, - [2802] = 2752, + [2802] = 2802, [2803] = 2803, [2804] = 2804, [2805] = 2805, [2806] = 2806, [2807] = 2807, [2808] = 2808, - [2809] = 2768, - [2810] = 2766, + [2809] = 2809, + [2810] = 2785, [2811] = 2811, - [2812] = 2780, + [2812] = 2812, [2813] = 2813, [2814] = 2814, - [2815] = 2767, + [2815] = 2815, [2816] = 2816, [2817] = 2817, - [2818] = 2106, - [2819] = 2814, - [2820] = 2107, - [2821] = 2108, + [2818] = 2818, + [2819] = 2819, + [2820] = 2820, + [2821] = 2821, [2822] = 2822, - [2823] = 2109, - [2824] = 2824, - [2825] = 2753, - [2826] = 2826, - [2827] = 2827, + [2823] = 2758, + [2824] = 2784, + [2825] = 2825, + [2826] = 2802, + [2827] = 2805, [2828] = 2828, [2829] = 2829, [2830] = 2830, - [2831] = 2831, + [2831] = 2777, [2832] = 2832, [2833] = 2833, - [2834] = 2830, - [2835] = 2831, + [2834] = 2834, + [2835] = 2101, [2836] = 2836, - [2837] = 2837, + [2837] = 2113, [2838] = 2838, - [2839] = 2839, - [2840] = 2840, + [2839] = 163, + [2840] = 2118, [2841] = 2841, - [2842] = 2842, - [2843] = 2097, - [2844] = 2844, - [2845] = 2845, - [2846] = 2846, + [2842] = 2109, + [2843] = 2778, + [2844] = 2099, + [2845] = 2141, + [2846] = 2114, [2847] = 2847, - [2848] = 2848, - [2849] = 2098, + [2848] = 2801, + [2849] = 2849, [2850] = 2850, [2851] = 2851, [2852] = 2852, [2853] = 2853, - [2854] = 2824, - [2855] = 2788, - [2856] = 2856, + [2854] = 2854, + [2855] = 2855, + [2856] = 2787, [2857] = 2857, - [2858] = 2858, - [2859] = 2859, - [2860] = 2827, - [2861] = 2100, - [2862] = 2862, + [2858] = 2140, + [2859] = 2799, + [2860] = 2860, + [2861] = 2803, + [2862] = 2804, [2863] = 2863, - [2864] = 2799, - [2865] = 2865, - [2866] = 2763, - [2867] = 2780, - [2868] = 2868, - [2869] = 2869, - [2870] = 2870, - [2871] = 2871, + [2864] = 2759, + [2865] = 2103, + [2866] = 2866, + [2867] = 2108, + [2868] = 2093, + [2869] = 2806, + [2870] = 2754, + [2871] = 2863, [2872] = 2872, [2873] = 2873, [2874] = 2874, - [2875] = 2836, + [2875] = 2875, [2876] = 2876, - [2877] = 2877, - [2878] = 2747, + [2877] = 2807, + [2878] = 2878, [2879] = 2879, - [2880] = 2811, + [2880] = 2872, [2881] = 2881, - [2882] = 2788, - [2883] = 2769, - [2884] = 2884, - [2885] = 2765, - [2886] = 2886, - [2887] = 2801, - [2888] = 2817, - [2889] = 2845, - [2890] = 2890, + [2882] = 2094, + [2883] = 2092, + [2884] = 2774, + [2885] = 2775, + [2886] = 2809, + [2887] = 2887, + [2888] = 2888, + [2889] = 2779, + [2890] = 2811, [2891] = 2891, - [2892] = 2771, - [2893] = 2893, - [2894] = 2837, - [2895] = 2772, - [2896] = 2896, - [2897] = 2840, - [2898] = 2838, - [2899] = 2842, + [2892] = 2892, + [2893] = 2808, + [2894] = 2894, + [2895] = 2760, + [2896] = 2829, + [2897] = 2897, + [2898] = 2762, + [2899] = 2899, [2900] = 2900, - [2901] = 2901, - [2902] = 2902, - [2903] = 2903, - [2904] = 2774, + [2901] = 2814, + [2902] = 2857, + [2903] = 2815, + [2904] = 2904, [2905] = 2905, - [2906] = 2760, - [2907] = 2841, + [2906] = 388, + [2907] = 2112, [2908] = 2908, - [2909] = 2828, + [2909] = 2909, [2910] = 2910, - [2911] = 2911, - [2912] = 2912, - [2913] = 2913, + [2911] = 2769, + [2912] = 2770, + [2913] = 2756, [2914] = 2914, - [2915] = 2893, - [2916] = 2782, - [2917] = 2917, + [2915] = 2915, + [2916] = 2803, + [2917] = 2786, [2918] = 2918, - [2919] = 2919, - [2920] = 2788, + [2919] = 2814, + [2920] = 2815, [2921] = 2921, - [2922] = 2922, - [2923] = 2923, - [2924] = 2924, + [2922] = 2841, + [2923] = 2847, + [2924] = 2832, [2925] = 2925, - [2926] = 2926, - [2927] = 2917, - [2928] = 2793, - [2929] = 2929, - [2930] = 2782, + [2926] = 2808, + [2927] = 2816, + [2928] = 2128, + [2929] = 2817, + [2930] = 2789, [2931] = 2931, - [2932] = 2932, - [2933] = 2901, - [2934] = 2830, - [2935] = 2764, - [2936] = 2936, - [2937] = 2831, - [2938] = 2850, + [2932] = 2123, + [2933] = 2090, + [2934] = 2905, + [2935] = 2935, + [2936] = 2833, + [2937] = 2766, + [2938] = 2938, [2939] = 2939, - [2940] = 2844, - [2941] = 2868, - [2942] = 2931, - [2943] = 2943, - [2944] = 2873, - [2945] = 2876, + [2940] = 2808, + [2941] = 2941, + [2942] = 2133, + [2943] = 2808, + [2944] = 2875, + [2945] = 2945, [2946] = 2946, - [2947] = 2947, - [2948] = 2838, + [2947] = 2836, + [2948] = 2948, [2949] = 2949, - [2950] = 2950, - [2951] = 2951, - [2952] = 2841, - [2953] = 2953, - [2954] = 2872, - [2955] = 2776, - [2956] = 2949, - [2957] = 2957, - [2958] = 2777, - [2959] = 2950, + [2950] = 2125, + [2951] = 2132, + [2952] = 2091, + [2953] = 2095, + [2954] = 2104, + [2955] = 2122, + [2956] = 2136, + [2957] = 2120, + [2958] = 2958, + [2959] = 2124, [2960] = 2960, - [2961] = 2902, - [2962] = 2962, + [2961] = 2876, + [2962] = 2135, [2963] = 2963, - [2964] = 2964, - [2965] = 2932, - [2966] = 2852, - [2967] = 2967, - [2968] = 2968, - [2969] = 2969, + [2964] = 2878, + [2965] = 2767, + [2966] = 2769, + [2967] = 2783, + [2968] = 2904, + [2969] = 2941, [2970] = 2970, [2971] = 2971, - [2972] = 2972, + [2972] = 2879, [2973] = 2973, - [2974] = 2911, - [2975] = 2086, - [2976] = 2976, - [2977] = 2824, + [2974] = 2782, + [2975] = 2790, + [2976] = 2841, + [2977] = 2977, [2978] = 2978, - [2979] = 2979, + [2979] = 2881, [2980] = 2980, - [2981] = 2087, + [2981] = 2981, [2982] = 2982, - [2983] = 2970, - [2984] = 2971, + [2983] = 2983, + [2984] = 2984, [2985] = 2985, [2986] = 2986, - [2987] = 2987, - [2988] = 2972, + [2987] = 2977, + [2988] = 2988, [2989] = 2989, [2990] = 2990, - [2991] = 2788, + [2991] = 2887, [2992] = 2992, [2993] = 2993, - [2994] = 2804, - [2995] = 2851, - [2996] = 2748, - [2997] = 2979, - [2998] = 2090, - [2999] = 2790, - [3000] = 2093, + [2994] = 2994, + [2995] = 2995, + [2996] = 2996, + [2997] = 2770, + [2998] = 2998, + [2999] = 2847, + [3000] = 3000, [3001] = 3001, [3002] = 3002, - [3003] = 2947, - [3004] = 162, - [3005] = 2839, - [3006] = 3006, - [3007] = 2846, - [3008] = 2096, + [3003] = 3003, + [3004] = 2813, + [3005] = 3005, + [3006] = 2905, + [3007] = 3007, + [3008] = 2941, [3009] = 3009, - [3010] = 2827, - [3011] = 2103, - [3012] = 2922, - [3013] = 3013, - [3014] = 2953, - [3015] = 2985, - [3016] = 3016, - [3017] = 3017, - [3018] = 2088, - [3019] = 2089, - [3020] = 2091, - [3021] = 2768, - [3022] = 2845, - [3023] = 3023, - [3024] = 2749, - [3025] = 2795, + [3010] = 3010, + [3011] = 3011, + [3012] = 2096, + [3013] = 2121, + [3014] = 2849, + [3015] = 2126, + [3016] = 2129, + [3017] = 2111, + [3018] = 2139, + [3019] = 3019, + [3020] = 2904, + [3021] = 3021, + [3022] = 2970, + [3023] = 2850, + [3024] = 2820, + [3025] = 2851, [3026] = 3026, - [3027] = 2990, - [3028] = 2986, - [3029] = 2992, - [3030] = 2846, - [3031] = 2124, - [3032] = 2110, - [3033] = 2092, - [3034] = 2989, - [3035] = 2832, - [3036] = 3036, - [3037] = 2826, - [3038] = 3009, - [3039] = 2881, - [3040] = 2877, - [3041] = 2803, - [3042] = 2890, - [3043] = 2775, - [3044] = 2112, - [3045] = 2914, - [3046] = 3046, - [3047] = 3001, - [3048] = 2891, - [3049] = 3049, - [3050] = 3050, - [3051] = 3051, - [3052] = 3052, + [3027] = 3027, + [3028] = 2905, + [3029] = 3029, + [3030] = 2821, + [3031] = 3031, + [3032] = 2971, + [3033] = 2115, + [3034] = 2888, + [3035] = 2772, + [3036] = 2998, + [3037] = 2822, + [3038] = 3038, + [3039] = 2765, + [3040] = 2796, + [3041] = 3041, + [3042] = 2897, + [3043] = 3043, + [3044] = 2915, + [3045] = 2792, + [3046] = 2938, + [3047] = 2960, + [3048] = 2854, + [3049] = 2757, + [3050] = 2894, + [3051] = 2855, + [3052] = 2963, [3053] = 3053, - [3054] = 3054, + [3054] = 2804, [3055] = 3055, [3056] = 3056, [3057] = 3057, @@ -6946,316 +6956,316 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3064] = 3064, [3065] = 3065, [3066] = 3066, - [3067] = 3061, + [3067] = 3067, [3068] = 3068, [3069] = 3069, [3070] = 3070, [3071] = 3071, - [3072] = 3062, + [3072] = 3072, [3073] = 3073, - [3074] = 3074, - [3075] = 3064, + [3074] = 3067, + [3075] = 3075, [3076] = 3076, [3077] = 3077, [3078] = 3078, [3079] = 3079, - [3080] = 3055, + [3080] = 3080, [3081] = 3081, [3082] = 3082, [3083] = 3083, - [3084] = 3084, - [3085] = 3065, + [3084] = 3059, + [3085] = 3085, [3086] = 3086, - [3087] = 3087, - [3088] = 3088, + [3087] = 3061, + [3088] = 3055, [3089] = 3089, [3090] = 3090, - [3091] = 3091, + [3091] = 3061, [3092] = 3092, [3093] = 3093, [3094] = 3094, - [3095] = 3055, + [3095] = 3095, [3096] = 3096, - [3097] = 2808, - [3098] = 3083, - [3099] = 3087, - [3100] = 2848, + [3097] = 3097, + [3098] = 3098, + [3099] = 3099, + [3100] = 3065, [3101] = 3101, [3102] = 3102, [3103] = 3103, [3104] = 3104, [3105] = 3105, [3106] = 3106, - [3107] = 3062, - [3108] = 3073, - [3109] = 3064, + [3107] = 3107, + [3108] = 3108, + [3109] = 3109, [3110] = 3110, - [3111] = 3055, + [3111] = 3111, [3112] = 3112, - [3113] = 3089, - [3114] = 3112, - [3115] = 3058, - [3116] = 3116, + [3113] = 3113, + [3114] = 1103, + [3115] = 3115, + [3116] = 3106, [3117] = 3117, [3118] = 3118, - [3119] = 3062, + [3119] = 3119, [3120] = 3120, - [3121] = 3055, - [3122] = 3116, - [3123] = 3077, - [3124] = 3073, - [3125] = 3053, - [3126] = 3126, - [3127] = 3078, - [3128] = 3128, - [3129] = 3055, - [3130] = 3081, - [3131] = 3082, - [3132] = 3132, - [3133] = 3077, - [3134] = 3088, - [3135] = 3135, + [3121] = 3061, + [3122] = 3065, + [3123] = 3080, + [3124] = 3124, + [3125] = 3069, + [3126] = 3070, + [3127] = 3127, + [3128] = 3073, + [3129] = 3129, + [3130] = 3130, + [3131] = 3078, + [3132] = 3083, + [3133] = 3061, + [3134] = 3055, + [3135] = 3089, [3136] = 3136, [3137] = 3137, - [3138] = 3091, - [3139] = 3078, + [3138] = 3138, + [3139] = 3061, [3140] = 3140, - [3141] = 3141, - [3142] = 3079, - [3143] = 3143, - [3144] = 3132, + [3141] = 3062, + [3142] = 3142, + [3143] = 3062, + [3144] = 3144, [3145] = 3145, - [3146] = 3058, + [3146] = 3065, [3147] = 3147, - [3148] = 3081, - [3149] = 3062, - [3150] = 3073, - [3151] = 3151, - [3152] = 3052, - [3153] = 3055, - [3154] = 3081, - [3155] = 3082, - [3156] = 3156, - [3157] = 3135, - [3158] = 3103, - [3159] = 3159, - [3160] = 3062, - [3161] = 3055, - [3162] = 3081, - [3163] = 3082, + [3148] = 3065, + [3149] = 3149, + [3150] = 3075, + [3151] = 3070, + [3152] = 3152, + [3153] = 3078, + [3154] = 3154, + [3155] = 3061, + [3156] = 3055, + [3157] = 3089, + [3158] = 3158, + [3159] = 1159, + [3160] = 3160, + [3161] = 3161, + [3162] = 3162, + [3163] = 3163, [3164] = 3164, [3165] = 3165, - [3166] = 3060, - [3167] = 3104, - [3168] = 3168, - [3169] = 3169, - [3170] = 3050, - [3171] = 3171, - [3172] = 3062, - [3173] = 3055, - [3174] = 3081, - [3175] = 3082, - [3176] = 3105, - [3177] = 3137, - [3178] = 3106, - [3179] = 3062, - [3180] = 3055, - [3181] = 3081, - [3182] = 3082, - [3183] = 3055, - [3184] = 3062, - [3185] = 3081, - [3186] = 3082, - [3187] = 3062, - [3188] = 3188, - [3189] = 3081, - [3190] = 3082, - [3191] = 3082, - [3192] = 3062, - [3193] = 3081, - [3194] = 3081, - [3195] = 3082, - [3196] = 3062, - [3197] = 3141, - [3198] = 3081, - [3199] = 3082, - [3200] = 3092, - [3201] = 3082, - [3202] = 3202, - [3203] = 3203, - [3204] = 3204, - [3205] = 3205, - [3206] = 3206, + [3166] = 3070, + [3167] = 3061, + [3168] = 3119, + [3169] = 3055, + [3170] = 3089, + [3171] = 3057, + [3172] = 3096, + [3173] = 3097, + [3174] = 3068, + [3175] = 3089, + [3176] = 3069, + [3177] = 3070, + [3178] = 3061, + [3179] = 3055, + [3180] = 3089, + [3181] = 3181, + [3182] = 3070, + [3183] = 1400, + [3184] = 3184, + [3185] = 3070, + [3186] = 3061, + [3187] = 3070, + [3188] = 3055, + [3189] = 3089, + [3190] = 3070, + [3191] = 3072, + [3192] = 3055, + [3193] = 3089, + [3194] = 3194, + [3195] = 3070, + [3196] = 3196, + [3197] = 3055, + [3198] = 3089, + [3199] = 3070, + [3200] = 3055, + [3201] = 3089, + [3202] = 3067, + [3203] = 3070, + [3204] = 3130, + [3205] = 3055, + [3206] = 3089, [3207] = 3207, - [3208] = 1174, - [3209] = 3168, - [3210] = 3210, - [3211] = 3064, - [3212] = 3212, - [3213] = 3057, - [3214] = 3214, - [3215] = 3065, - [3216] = 3087, - [3217] = 3078, - [3218] = 3079, - [3219] = 3219, - [3220] = 3088, - [3221] = 3058, - [3222] = 3222, - [3223] = 3059, - [3224] = 3224, - [3225] = 3225, - [3226] = 3226, - [3227] = 3084, - [3228] = 3060, - [3229] = 3229, - [3230] = 3076, - [3231] = 3120, - [3232] = 3232, - [3233] = 3128, + [3208] = 3140, + [3209] = 3098, + [3210] = 3145, + [3211] = 3211, + [3212] = 3068, + [3213] = 3213, + [3214] = 3103, + [3215] = 3138, + [3216] = 2945, + [3217] = 3072, + [3218] = 2946, + [3219] = 3160, + [3220] = 3220, + [3221] = 3221, + [3222] = 3072, + [3223] = 3223, + [3224] = 3078, + [3225] = 3152, + [3226] = 3098, + [3227] = 3066, + [3228] = 3228, + [3229] = 3165, + [3230] = 3230, + [3231] = 3231, + [3232] = 3196, + [3233] = 3069, [3234] = 3234, - [3235] = 3202, - [3236] = 3207, - [3237] = 3237, - [3238] = 3226, - [3239] = 3054, - [3240] = 3056, - [3241] = 3232, - [3242] = 3066, - [3243] = 3061, - [3244] = 3069, + [3235] = 3235, + [3236] = 3056, + [3237] = 3082, + [3238] = 3238, + [3239] = 3083, + [3240] = 3240, + [3241] = 3059, + [3242] = 3102, + [3243] = 3207, + [3244] = 3058, [3245] = 3245, - [3246] = 3246, + [3246] = 3120, [3247] = 3247, - [3248] = 3248, - [3249] = 3249, - [3250] = 3250, - [3251] = 3247, - [3252] = 3126, - [3253] = 3049, + [3248] = 3124, + [3249] = 3149, + [3250] = 1106, + [3251] = 3251, + [3252] = 3161, + [3253] = 3234, [3254] = 3254, [3255] = 3255, [3256] = 3256, [3257] = 3257, - [3258] = 3206, - [3259] = 3259, - [3260] = 3249, - [3261] = 3261, - [3262] = 3262, - [3263] = 3055, - [3264] = 3237, - [3265] = 3265, - [3266] = 3070, - [3267] = 3101, - [3268] = 1422, - [3269] = 1416, - [3270] = 3091, - [3271] = 3188, - [3272] = 3057, - [3273] = 3212, - [3274] = 3168, - [3275] = 3275, - [3276] = 3094, - [3277] = 3212, - [3278] = 3278, - [3279] = 3224, - [3280] = 3280, - [3281] = 3165, - [3282] = 3169, - [3283] = 3283, - [3284] = 3168, - [3285] = 3285, - [3286] = 3222, - [3287] = 3058, - [3288] = 3168, - [3289] = 3289, - [3290] = 3110, - [3291] = 3275, - [3292] = 3254, - [3293] = 3245, - [3294] = 3294, + [3258] = 3258, + [3259] = 3118, + [3260] = 3127, + [3261] = 3142, + [3262] = 3144, + [3263] = 3240, + [3264] = 1107, + [3265] = 3228, + [3266] = 3266, + [3267] = 3061, + [3268] = 3268, + [3269] = 3269, + [3270] = 3256, + [3271] = 3158, + [3272] = 3060, + [3273] = 3273, + [3274] = 3055, + [3275] = 3079, + [3276] = 3276, + [3277] = 3086, + [3278] = 3063, + [3279] = 3089, + [3280] = 3094, + [3281] = 3078, + [3282] = 3282, + [3283] = 3103, + [3284] = 3106, + [3285] = 3160, + [3286] = 3286, + [3287] = 3181, + [3288] = 3228, + [3289] = 3105, + [3290] = 3080, + [3291] = 3110, + [3292] = 3292, + [3293] = 3094, + [3294] = 3095, [3295] = 3295, - [3296] = 3140, - [3297] = 3297, - [3298] = 3151, - [3299] = 3261, - [3300] = 3083, + [3296] = 3103, + [3297] = 3286, + [3298] = 3095, + [3299] = 3103, + [3300] = 3154, [3301] = 3301, - [3302] = 3156, - [3303] = 3084, - [3304] = 3304, - [3305] = 3093, + [3302] = 3221, + [3303] = 3213, + [3304] = 3117, + [3305] = 3223, [3306] = 3306, - [3307] = 3147, - [3308] = 3073, - [3309] = 3063, - [3310] = 3257, - [3311] = 1121, - [3312] = 1122, - [3313] = 3250, - [3314] = 3117, - [3315] = 3110, - [3316] = 3245, - [3317] = 3250, - [3318] = 3245, - [3319] = 3250, - [3320] = 3219, - [3321] = 3278, - [3322] = 3255, - [3323] = 3090, - [3324] = 3256, - [3325] = 3306, - [3326] = 3214, - [3327] = 3224, - [3328] = 3328, - [3329] = 3329, - [3330] = 3330, - [3331] = 3331, - [3332] = 3332, - [3333] = 3333, - [3334] = 3334, - [3335] = 3335, - [3336] = 3336, - [3337] = 3337, + [3307] = 3276, + [3308] = 3308, + [3309] = 3273, + [3310] = 3310, + [3311] = 3306, + [3312] = 3061, + [3313] = 3113, + [3314] = 3108, + [3315] = 3076, + [3316] = 3163, + [3317] = 3082, + [3318] = 3301, + [3319] = 3319, + [3320] = 3071, + [3321] = 3085, + [3322] = 3221, + [3323] = 3117, + [3324] = 3301, + [3325] = 3117, + [3326] = 3301, + [3327] = 3231, + [3328] = 3083, + [3329] = 3268, + [3330] = 3112, + [3331] = 3310, + [3332] = 3109, + [3333] = 3107, + [3334] = 3308, + [3335] = 3258, + [3336] = 3286, + [3337] = 3147, [3338] = 3338, [3339] = 3339, [3340] = 3340, [3341] = 3341, [3342] = 3342, - [3343] = 3340, - [3344] = 3344, + [3343] = 3343, + [3344] = 3341, [3345] = 3345, [3346] = 3346, [3347] = 3347, [3348] = 3348, [3349] = 3349, - [3350] = 3344, + [3350] = 3350, [3351] = 3351, [3352] = 3352, - [3353] = 3339, - [3354] = 3328, + [3353] = 3353, + [3354] = 3354, [3355] = 3355, [3356] = 3356, [3357] = 3357, [3358] = 3358, - [3359] = 3335, + [3359] = 3359, [3360] = 3360, [3361] = 3361, [3362] = 3362, - [3363] = 3337, + [3363] = 3363, [3364] = 3364, [3365] = 3365, [3366] = 3366, [3367] = 3367, - [3368] = 3368, + [3368] = 3364, [3369] = 3369, [3370] = 3370, - [3371] = 3336, + [3371] = 3371, [3372] = 3372, [3373] = 3373, [3374] = 3374, [3375] = 3375, - [3376] = 3376, + [3376] = 3349, [3377] = 3377, [3378] = 3378, [3379] = 3379, @@ -7263,41 +7273,41 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3381] = 3381, [3382] = 3382, [3383] = 3383, - [3384] = 3335, - [3385] = 3385, + [3384] = 3384, + [3385] = 3352, [3386] = 3386, [3387] = 3387, - [3388] = 3329, - [3389] = 3389, - [3390] = 3390, + [3388] = 3388, + [3389] = 3350, + [3390] = 3365, [3391] = 3391, - [3392] = 3351, + [3392] = 3392, [3393] = 3393, - [3394] = 3339, + [3394] = 3340, [3395] = 3395, [3396] = 3396, [3397] = 3397, - [3398] = 3352, - [3399] = 3386, + [3398] = 3398, + [3399] = 3348, [3400] = 3400, - [3401] = 3346, + [3401] = 3366, [3402] = 3402, - [3403] = 3348, - [3404] = 3404, - [3405] = 3358, - [3406] = 3341, + [3403] = 3377, + [3404] = 3339, + [3405] = 3364, + [3406] = 3406, [3407] = 3407, - [3408] = 3408, - [3409] = 3409, - [3410] = 3376, + [3408] = 3400, + [3409] = 3342, + [3410] = 3410, [3411] = 3411, - [3412] = 3412, - [3413] = 3413, - [3414] = 3346, - [3415] = 3365, - [3416] = 3383, + [3412] = 3363, + [3413] = 3393, + [3414] = 3414, + [3415] = 3415, + [3416] = 3416, [3417] = 3417, - [3418] = 3396, + [3418] = 3418, [3419] = 3419, [3420] = 3420, [3421] = 3421, @@ -7305,216 +7315,226 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3423] = 3423, [3424] = 3424, [3425] = 3425, - [3426] = 3426, - [3427] = 3427, - [3428] = 3328, - [3429] = 3429, - [3430] = 3339, + [3426] = 3378, + [3427] = 3366, + [3428] = 3428, + [3429] = 3407, + [3430] = 3430, [3431] = 3431, [3432] = 3432, [3433] = 3433, - [3434] = 3434, + [3434] = 3421, [3435] = 3435, - [3436] = 3360, - [3437] = 3427, - [3438] = 3438, - [3439] = 3377, - [3440] = 157, + [3436] = 3407, + [3437] = 3421, + [3438] = 3424, + [3439] = 3439, + [3440] = 3440, [3441] = 3441, [3442] = 3442, - [3443] = 3443, - [3444] = 3387, - [3445] = 3445, + [3443] = 3346, + [3444] = 3442, + [3445] = 3406, [3446] = 3446, - [3447] = 3419, + [3447] = 3364, [3448] = 3448, [3449] = 3449, [3450] = 3450, [3451] = 3451, [3452] = 3452, - [3453] = 3382, - [3454] = 3346, - [3455] = 3337, - [3456] = 3338, - [3457] = 3457, - [3458] = 3458, - [3459] = 3395, + [3453] = 3453, + [3454] = 3454, + [3455] = 3414, + [3456] = 3456, + [3457] = 3453, + [3458] = 3358, + [3459] = 3366, [3460] = 3460, - [3461] = 3366, + [3461] = 3351, [3462] = 3462, - [3463] = 3346, + [3463] = 3439, [3464] = 3464, [3465] = 3465, [3466] = 3466, - [3467] = 3393, + [3467] = 3395, [3468] = 3468, [3469] = 3469, - [3470] = 3470, - [3471] = 3391, - [3472] = 3347, - [3473] = 3400, - [3474] = 3345, + [3470] = 3464, + [3471] = 3451, + [3472] = 3421, + [3473] = 3369, + [3474] = 3474, [3475] = 3475, - [3476] = 3422, - [3477] = 3356, - [3478] = 3468, - [3479] = 3479, - [3480] = 3385, - [3481] = 3466, - [3482] = 3338, - [3483] = 3340, - [3484] = 3382, - [3485] = 3367, - [3486] = 3348, - [3487] = 3383, - [3488] = 3488, - [3489] = 3489, + [3476] = 3415, + [3477] = 3477, + [3478] = 3478, + [3479] = 3423, + [3480] = 3477, + [3481] = 3468, + [3482] = 3482, + [3483] = 3460, + [3484] = 3339, + [3485] = 3450, + [3486] = 3486, + [3487] = 3380, + [3488] = 3361, + [3489] = 3373, [3490] = 3490, - [3491] = 3356, + [3491] = 3446, [3492] = 3492, - [3493] = 3351, - [3494] = 3366, - [3495] = 3393, - [3496] = 3409, - [3497] = 3335, - [3498] = 3351, - [3499] = 3386, - [3500] = 3387, - [3501] = 3501, - [3502] = 3329, - [3503] = 3435, - [3504] = 3443, + [3493] = 3348, + [3494] = 3350, + [3495] = 3495, + [3496] = 3387, + [3497] = 3497, + [3498] = 3358, + [3499] = 3406, + [3500] = 3500, + [3501] = 3397, + [3502] = 3363, + [3503] = 3503, + [3504] = 3365, [3505] = 3505, - [3506] = 3506, - [3507] = 3507, - [3508] = 3508, - [3509] = 3331, - [3510] = 3433, - [3511] = 3468, - [3512] = 3332, - [3513] = 3368, - [3514] = 3514, - [3515] = 3340, - [3516] = 3516, + [3506] = 3343, + [3507] = 3375, + [3508] = 155, + [3509] = 3452, + [3510] = 3393, + [3511] = 3511, + [3512] = 3395, + [3513] = 3396, + [3514] = 3400, + [3515] = 3398, + [3516] = 3421, [3517] = 3517, - [3518] = 3348, - [3519] = 3369, - [3520] = 3349, - [3521] = 3356, - [3522] = 3522, - [3523] = 3523, - [3524] = 3386, - [3525] = 3329, + [3518] = 3456, + [3519] = 3519, + [3520] = 3393, + [3521] = 3521, + [3522] = 3410, + [3523] = 3373, + [3524] = 3383, + [3525] = 3406, [3526] = 3526, - [3527] = 3342, + [3527] = 3350, [3528] = 3528, - [3529] = 3339, - [3530] = 3468, - [3531] = 3348, - [3532] = 3532, - [3533] = 3356, - [3534] = 3514, - [3535] = 3329, - [3536] = 3468, - [3537] = 3348, - [3538] = 3356, - [3539] = 3329, - [3540] = 3348, - [3541] = 3356, - [3542] = 3329, - [3543] = 3348, - [3544] = 3348, - [3545] = 3348, - [3546] = 3348, - [3547] = 3348, - [3548] = 3458, - [3549] = 3419, - [3550] = 3462, - [3551] = 3551, - [3552] = 3441, - [3553] = 3421, - [3554] = 3554, - [3555] = 3526, - [3556] = 3556, - [3557] = 3557, - [3558] = 3330, - [3559] = 3488, - [3560] = 3397, - [3561] = 3489, - [3562] = 3381, - [3563] = 3563, - [3564] = 3465, - [3565] = 3375, - [3566] = 3566, - [3567] = 3522, - [3568] = 3408, - [3569] = 3556, - [3570] = 3382, - [3571] = 3411, - [3572] = 3374, - [3573] = 3573, + [3529] = 3398, + [3530] = 3358, + [3531] = 3531, + [3532] = 3474, + [3533] = 3365, + [3534] = 3534, + [3535] = 3395, + [3536] = 3398, + [3537] = 3382, + [3538] = 3364, + [3539] = 3539, + [3540] = 3540, + [3541] = 3373, + [3542] = 3358, + [3543] = 3543, + [3544] = 3365, + [3545] = 3419, + [3546] = 3398, + [3547] = 3373, + [3548] = 3358, + [3549] = 3365, + [3550] = 3398, + [3551] = 3358, + [3552] = 3365, + [3553] = 3398, + [3554] = 3358, + [3555] = 3358, + [3556] = 3358, + [3557] = 3358, + [3558] = 3358, + [3559] = 3517, + [3560] = 3424, + [3561] = 3561, + [3562] = 3346, + [3563] = 3440, + [3564] = 3448, + [3565] = 3565, + [3566] = 3433, + [3567] = 3347, + [3568] = 3568, + [3569] = 3386, + [3570] = 3570, + [3571] = 3465, + [3572] = 3572, + [3573] = 3500, [3574] = 3574, - [3575] = 3464, - [3576] = 3516, - [3577] = 3577, - [3578] = 3383, - [3579] = 3470, + [3575] = 3422, + [3576] = 3576, + [3577] = 3375, + [3578] = 3400, + [3579] = 3492, [3580] = 3580, - [3581] = 3346, - [3582] = 3577, - [3583] = 3373, - [3584] = 3451, - [3585] = 3413, - [3586] = 3586, - [3587] = 3517, - [3588] = 3580, - [3589] = 3479, - [3590] = 158, - [3591] = 3465, - [3592] = 3592, - [3593] = 3573, - [3594] = 3438, - [3595] = 3441, - [3596] = 3421, - [3597] = 3526, - [3598] = 3556, - [3599] = 3465, - [3600] = 3464, - [3601] = 3441, - [3602] = 3556, - [3603] = 3603, - [3604] = 3404, - [3605] = 3556, - [3606] = 3556, - [3607] = 3556, - [3608] = 3460, - [3609] = 3528, - [3610] = 3426, - [3611] = 3592, - [3612] = 3523, + [3581] = 151, + [3582] = 3338, + [3583] = 3391, + [3584] = 3584, + [3585] = 3486, + [3586] = 3570, + [3587] = 3425, + [3588] = 3362, + [3589] = 3589, + [3590] = 3590, + [3591] = 3521, + [3592] = 3589, + [3593] = 3367, + [3594] = 3594, + [3595] = 3421, + [3596] = 3441, + [3597] = 3597, + [3598] = 3432, + [3599] = 3477, + [3600] = 3370, + [3601] = 3528, + [3602] = 3352, + [3603] = 3357, + [3604] = 3604, + [3605] = 3440, + [3606] = 3448, + [3607] = 3433, + [3608] = 3347, + [3609] = 3505, + [3610] = 3388, + [3611] = 3440, + [3612] = 3347, [3613] = 3613, - [3614] = 3468, - [3615] = 3490, - [3616] = 3364, - [3617] = 3378, - [3618] = 3379, - [3619] = 3370, - [3620] = 3417, - [3621] = 3621, - [3622] = 3390, - [3623] = 3407, - [3624] = 3333, - [3625] = 3492, - [3626] = 3380, - [3627] = 3404, - [3628] = 3557, - [3629] = 3629, - [3630] = 3630, - [3631] = 3631, - [3632] = 3632, - [3633] = 3633, - [3634] = 3634, - [3635] = 3635, + [3614] = 3352, + [3615] = 3347, + [3616] = 3347, + [3617] = 3347, + [3618] = 3618, + [3619] = 3503, + [3620] = 3497, + [3621] = 3568, + [3622] = 3475, + [3623] = 3623, + [3624] = 3359, + [3625] = 3360, + [3626] = 3379, + [3627] = 3396, + [3628] = 3371, + [3629] = 3373, + [3630] = 3372, + [3631] = 3374, + [3632] = 3597, + [3633] = 3402, + [3634] = 3345, + [3635] = 3572, + [3636] = 3411, + [3637] = 3495, + [3638] = 3416, + [3639] = 3639, + [3640] = 3640, + [3641] = 3641, + [3642] = 3642, + [3643] = 3643, + [3644] = 3644, + [3645] = 3645, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -8226,6 +8246,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '\'', 144, '(', 75, ')', 76, + '*', 91, '+', 89, ',', 139, '.', 30, @@ -8417,7 +8438,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '\'', 144, '(', 75, ')', 76, - '*', 91, '+', 89, ',', 139, '-', 42, @@ -9427,648 +9447,655 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(57); END_STATE(); case 13: - if (lookahead == 'e') ADVANCE(58); + if (lookahead == 'a') ADVANCE(58); + if (lookahead == 'e') ADVANCE(59); END_STATE(); case 14: - if (lookahead == 'e') ADVANCE(59); - if (lookahead == 't') ADVANCE(60); - if (lookahead == 'u') ADVANCE(61); + if (lookahead == 'e') ADVANCE(60); + if (lookahead == 't') ADVANCE(61); + if (lookahead == 'u') ADVANCE(62); END_STATE(); case 15: - if (lookahead == 'r') ADVANCE(62); - if (lookahead == 't') ADVANCE(63); - if (lookahead == 'y') ADVANCE(64); + if (lookahead == 'r') ADVANCE(63); + if (lookahead == 't') ADVANCE(64); + if (lookahead == 'y') ADVANCE(65); END_STATE(); case 16: - if (lookahead == '1') ADVANCE(65); - if (lookahead == '3') ADVANCE(66); - if (lookahead == '6') ADVANCE(67); - if (lookahead == '8') ADVANCE(68); - if (lookahead == 'n') ADVANCE(69); - if (lookahead == 's') ADVANCE(70); + if (lookahead == '1') ADVANCE(66); + if (lookahead == '3') ADVANCE(67); + if (lookahead == '6') ADVANCE(68); + if (lookahead == '8') ADVANCE(69); + if (lookahead == 'n') ADVANCE(70); + if (lookahead == 's') ADVANCE(71); END_STATE(); case 17: - if (lookahead == 'i') ADVANCE(71); + if (lookahead == 'i') ADVANCE(72); END_STATE(); case 18: - if (lookahead == 'h') ADVANCE(72); + if (lookahead == 'h') ADVANCE(73); END_STATE(); case 19: - if (lookahead == 'i') ADVANCE(73); + if (lookahead == 'i') ADVANCE(74); END_STATE(); case 20: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'y') ADVANCE(74); + if (lookahead == 'y') ADVANCE(75); END_STATE(); case 21: - if (lookahead == 'a') ADVANCE(75); + if (lookahead == 'a') ADVANCE(76); END_STATE(); case 22: - if (lookahead == 'o') ADVANCE(76); + if (lookahead == 'o') ADVANCE(77); END_STATE(); case 23: - if (lookahead == 'o') ADVANCE(77); + if (lookahead == 'o') ADVANCE(78); END_STATE(); case 24: - if (lookahead == 'e') ADVANCE(78); + if (lookahead == 'e') ADVANCE(79); END_STATE(); case 25: - if (lookahead == 'a') ADVANCE(79); + if (lookahead == 'a') ADVANCE(80); END_STATE(); case 26: - if (lookahead == 'n') ADVANCE(80); + if (lookahead == 'n') ADVANCE(81); END_STATE(); case 27: - if (lookahead == 'a') ADVANCE(81); + if (lookahead == 'a') ADVANCE(82); END_STATE(); case 28: - if (lookahead == 'f') ADVANCE(82); + if (lookahead == 'f') ADVANCE(83); END_STATE(); case 29: - if (lookahead == 'n') ADVANCE(83); + if (lookahead == 'n') ADVANCE(84); END_STATE(); case 30: - if (lookahead == 's') ADVANCE(84); + if (lookahead == 's') ADVANCE(85); END_STATE(); case 31: - if (lookahead == 'u') ADVANCE(85); + if (lookahead == 'u') ADVANCE(86); END_STATE(); case 32: - if (lookahead == 'p') ADVANCE(86); - if (lookahead == 't') ADVANCE(87); + if (lookahead == 'p') ADVANCE(87); + if (lookahead == 't') ADVANCE(88); END_STATE(); case 33: - if (lookahead == '2') ADVANCE(88); + if (lookahead == '2') ADVANCE(89); END_STATE(); case 34: - if (lookahead == '4') ADVANCE(89); + if (lookahead == '4') ADVANCE(90); END_STATE(); case 35: - if (lookahead == 'l') ADVANCE(90); + if (lookahead == 'l') ADVANCE(91); END_STATE(); case 36: ACCEPT_TOKEN(anon_sym_fn); END_STATE(); case 37: - if (lookahead == 'r') ADVANCE(91); + if (lookahead == 'r') ADVANCE(92); END_STATE(); case 38: - if (lookahead == 'n') ADVANCE(92); + if (lookahead == 'n') ADVANCE(93); END_STATE(); case 39: - if (lookahead == '2') ADVANCE(93); - if (lookahead == '6') ADVANCE(94); + if (lookahead == '2') ADVANCE(94); + if (lookahead == '6') ADVANCE(95); END_STATE(); case 40: - if (lookahead == '2') ADVANCE(95); + if (lookahead == '2') ADVANCE(96); END_STATE(); case 41: - if (lookahead == '4') ADVANCE(96); + if (lookahead == '4') ADVANCE(97); END_STATE(); case 42: ACCEPT_TOKEN(anon_sym_i8); END_STATE(); case 43: - if (lookahead == 'e') ADVANCE(97); + if (lookahead == 'e') ADVANCE(98); END_STATE(); case 44: ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 45: - if (lookahead == 'p') ADVANCE(98); + if (lookahead == 'p') ADVANCE(99); END_STATE(); case 46: ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 47: - if (lookahead == 'i') ADVANCE(99); + if (lookahead == 'i') ADVANCE(100); END_STATE(); case 48: - if (lookahead == 'e') ADVANCE(100); + if (lookahead == 'e') ADVANCE(101); END_STATE(); case 49: - if (lookahead == 't') ADVANCE(101); + if (lookahead == 't') ADVANCE(102); END_STATE(); case 50: - if (lookahead == 'f') ADVANCE(102); - if (lookahead == 't') ADVANCE(103); + if (lookahead == 'f') ADVANCE(103); + if (lookahead == 't') ADVANCE(104); END_STATE(); case 51: - if (lookahead == 'o') ADVANCE(104); + if (lookahead == 'o') ADVANCE(105); END_STATE(); case 52: - if (lookahead == 't') ADVANCE(105); + if (lookahead == 't') ADVANCE(106); END_STATE(); case 53: - if (lookahead == 't') ADVANCE(106); + if (lookahead == 't') ADVANCE(107); END_STATE(); case 54: - if (lookahead == 'd') ADVANCE(107); - if (lookahead == 'v') ADVANCE(108); + if (lookahead == 'd') ADVANCE(108); + if (lookahead == 'v') ADVANCE(109); END_STATE(); case 55: - if (lookahead == 't') ADVANCE(109); + if (lookahead == 't') ADVANCE(110); END_STATE(); case 56: - if (lookahead == 't') ADVANCE(110); + if (lookahead == 't') ADVANCE(111); END_STATE(); case 57: - if (lookahead == 'b') ADVANCE(111); + if (lookahead == 'b') ADVANCE(112); END_STATE(); case 58: - if (lookahead == 'f') ADVANCE(112); - if (lookahead == 't') ADVANCE(113); + if (lookahead == 'w') ADVANCE(113); END_STATE(); case 59: - if (lookahead == 'l') ADVANCE(114); + if (lookahead == 'f') ADVANCE(114); + if (lookahead == 't') ADVANCE(115); END_STATE(); case 60: - if (lookahead == 'a') ADVANCE(115); - if (lookahead == 'm') ADVANCE(116); - if (lookahead == 'r') ADVANCE(117); + if (lookahead == 'l') ADVANCE(116); END_STATE(); case 61: - if (lookahead == 'p') ADVANCE(118); + if (lookahead == 'a') ADVANCE(117); + if (lookahead == 'm') ADVANCE(118); + if (lookahead == 'r') ADVANCE(119); END_STATE(); case 62: - if (lookahead == 'a') ADVANCE(119); - if (lookahead == 'u') ADVANCE(120); - if (lookahead == 'y') ADVANCE(121); + if (lookahead == 'p') ADVANCE(120); END_STATE(); case 63: - ACCEPT_TOKEN(anon_sym_tt); + if (lookahead == 'a') ADVANCE(121); + if (lookahead == 'u') ADVANCE(122); + if (lookahead == 'y') ADVANCE(123); END_STATE(); case 64: - ACCEPT_TOKEN(anon_sym_ty); - if (lookahead == 'p') ADVANCE(122); + ACCEPT_TOKEN(anon_sym_tt); END_STATE(); case 65: - if (lookahead == '2') ADVANCE(123); - if (lookahead == '6') ADVANCE(124); + ACCEPT_TOKEN(anon_sym_ty); + if (lookahead == 'p') ADVANCE(124); END_STATE(); case 66: if (lookahead == '2') ADVANCE(125); + if (lookahead == '6') ADVANCE(126); END_STATE(); case 67: - if (lookahead == '4') ADVANCE(126); + if (lookahead == '2') ADVANCE(127); END_STATE(); case 68: - ACCEPT_TOKEN(anon_sym_u8); + if (lookahead == '4') ADVANCE(128); END_STATE(); case 69: - if (lookahead == 'i') ADVANCE(127); - if (lookahead == 's') ADVANCE(128); + ACCEPT_TOKEN(anon_sym_u8); END_STATE(); case 70: - if (lookahead == 'e') ADVANCE(129); - if (lookahead == 'i') ADVANCE(130); + if (lookahead == 'i') ADVANCE(129); + if (lookahead == 's') ADVANCE(130); END_STATE(); case 71: - if (lookahead == 's') ADVANCE(131); + if (lookahead == 'e') ADVANCE(131); + if (lookahead == 'i') ADVANCE(132); END_STATE(); case 72: - if (lookahead == 'e') ADVANCE(132); - if (lookahead == 'i') ADVANCE(133); + if (lookahead == 's') ADVANCE(133); END_STATE(); case 73: if (lookahead == 'e') ADVANCE(134); + if (lookahead == 'i') ADVANCE(135); END_STATE(); case 74: - if (lookahead == 'n') ADVANCE(135); + if (lookahead == 'e') ADVANCE(136); END_STATE(); case 75: - if (lookahead == 'i') ADVANCE(136); + if (lookahead == 'n') ADVANCE(137); END_STATE(); case 76: - if (lookahead == 'c') ADVANCE(137); + if (lookahead == 'i') ADVANCE(138); END_STATE(); case 77: - if (lookahead == 'l') ADVANCE(138); + if (lookahead == 'c') ADVANCE(139); END_STATE(); case 78: - if (lookahead == 'a') ADVANCE(139); + if (lookahead == 'l') ADVANCE(140); END_STATE(); case 79: - if (lookahead == 'r') ADVANCE(140); + if (lookahead == 'a') ADVANCE(141); END_STATE(); case 80: - if (lookahead == 's') ADVANCE(141); - if (lookahead == 't') ADVANCE(142); + if (lookahead == 'r') ADVANCE(142); END_STATE(); case 81: - if (lookahead == 't') ADVANCE(143); + if (lookahead == 's') ADVANCE(143); + if (lookahead == 't') ADVANCE(144); END_STATE(); case 82: - if (lookahead == 'a') ADVANCE(144); + if (lookahead == 't') ADVANCE(145); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_dyn); + if (lookahead == 'a') ADVANCE(146); END_STATE(); case 84: - if (lookahead == 'e') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_dyn); END_STATE(); case 85: - if (lookahead == 'm') ADVANCE(146); + if (lookahead == 'e') ADVANCE(147); END_STATE(); case 86: - if (lookahead == 'r') ADVANCE(147); + if (lookahead == 'm') ADVANCE(148); END_STATE(); case 87: - if (lookahead == 'e') ADVANCE(148); + if (lookahead == 'r') ADVANCE(149); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_f32); + if (lookahead == 'e') ADVANCE(150); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_f64); + ACCEPT_TOKEN(anon_sym_f32); END_STATE(); case 90: - if (lookahead == 's') ADVANCE(149); + ACCEPT_TOKEN(anon_sym_f64); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 's') ADVANCE(151); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_gen); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 93: - if (lookahead == '8') ADVANCE(150); + ACCEPT_TOKEN(anon_sym_gen); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_i16); + if (lookahead == '8') ADVANCE(152); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_i32); + ACCEPT_TOKEN(anon_sym_i16); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_i64); + ACCEPT_TOKEN(anon_sym_i32); END_STATE(); case 97: - if (lookahead == 'n') ADVANCE(151); + ACCEPT_TOKEN(anon_sym_i64); END_STATE(); case 98: - if (lookahead == 'l') ADVANCE(152); + if (lookahead == 'n') ADVANCE(153); END_STATE(); case 99: - if (lookahead == 'z') ADVANCE(153); + if (lookahead == 'l') ADVANCE(154); END_STATE(); case 100: - if (lookahead == 'm') ADVANCE(154); + if (lookahead == 'z') ADVANCE(155); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_let); + if (lookahead == 'm') ADVANCE(156); END_STATE(); case 102: - if (lookahead == 'e') ADVANCE(155); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 103: - if (lookahead == 'e') ADVANCE(156); + if (lookahead == 'e') ADVANCE(157); END_STATE(); case 104: - if (lookahead == 'p') ADVANCE(157); + if (lookahead == 'e') ADVANCE(158); END_STATE(); case 105: - if (lookahead == 'c') ADVANCE(158); + if (lookahead == 'p') ADVANCE(159); END_STATE(); case 106: - if (lookahead == 'a') ADVANCE(159); + if (lookahead == 'c') ADVANCE(160); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_mod); + if (lookahead == 'a') ADVANCE(161); END_STATE(); case 108: - if (lookahead == 'e') ADVANCE(160); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 109: - ACCEPT_TOKEN(sym_mutable_specifier); + if (lookahead == 'e') ADVANCE(162); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_pat); - if (lookahead == 'h') ADVANCE(161); + ACCEPT_TOKEN(sym_mutable_specifier); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_pub); + ACCEPT_TOKEN(anon_sym_pat); + if (lookahead == 'h') ADVANCE(163); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_ref); + ACCEPT_TOKEN(anon_sym_pub); END_STATE(); case 113: - if (lookahead == 'u') ADVANCE(162); + ACCEPT_TOKEN(anon_sym_raw); END_STATE(); case 114: - if (lookahead == 'f') ADVANCE(163); + ACCEPT_TOKEN(anon_sym_ref); END_STATE(); case 115: - if (lookahead == 't') ADVANCE(164); + if (lookahead == 'u') ADVANCE(164); END_STATE(); case 116: - if (lookahead == 't') ADVANCE(165); + if (lookahead == 'f') ADVANCE(165); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_str); - if (lookahead == 'u') ADVANCE(166); + if (lookahead == 't') ADVANCE(166); END_STATE(); case 118: - if (lookahead == 'e') ADVANCE(167); + if (lookahead == 't') ADVANCE(167); END_STATE(); case 119: - if (lookahead == 'i') ADVANCE(168); + ACCEPT_TOKEN(anon_sym_str); + if (lookahead == 'u') ADVANCE(168); END_STATE(); case 120: if (lookahead == 'e') ADVANCE(169); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 'i') ADVANCE(170); END_STATE(); case 122: - if (lookahead == 'e') ADVANCE(170); + if (lookahead == 'e') ADVANCE(171); END_STATE(); case 123: - if (lookahead == '8') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_u16); + if (lookahead == 'e') ADVANCE(172); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_u32); + if (lookahead == '8') ADVANCE(173); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_u64); + ACCEPT_TOKEN(anon_sym_u16); END_STATE(); case 127: - if (lookahead == 'o') ADVANCE(172); + ACCEPT_TOKEN(anon_sym_u32); END_STATE(); case 128: - if (lookahead == 'a') ADVANCE(173); + ACCEPT_TOKEN(anon_sym_u64); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_use); + if (lookahead == 'o') ADVANCE(174); END_STATE(); case 130: - if (lookahead == 'z') ADVANCE(174); + if (lookahead == 'a') ADVANCE(175); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_vis); + ACCEPT_TOKEN(anon_sym_use); END_STATE(); case 132: - if (lookahead == 'r') ADVANCE(175); + if (lookahead == 'z') ADVANCE(176); END_STATE(); case 133: - if (lookahead == 'l') ADVANCE(176); + ACCEPT_TOKEN(anon_sym_vis); END_STATE(); case 134: - if (lookahead == 'l') ADVANCE(177); + if (lookahead == 'r') ADVANCE(177); END_STATE(); case 135: - if (lookahead == 'c') ADVANCE(178); + if (lookahead == 'l') ADVANCE(178); END_STATE(); case 136: - if (lookahead == 't') ADVANCE(179); + if (lookahead == 'l') ADVANCE(179); END_STATE(); case 137: - if (lookahead == 'k') ADVANCE(180); + if (lookahead == 'c') ADVANCE(180); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_bool); + if (lookahead == 't') ADVANCE(181); END_STATE(); case 139: - if (lookahead == 'k') ADVANCE(181); + if (lookahead == 'k') ADVANCE(182); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_char); + ACCEPT_TOKEN(anon_sym_bool); END_STATE(); case 141: - if (lookahead == 't') ADVANCE(182); + if (lookahead == 'k') ADVANCE(183); END_STATE(); case 142: - if (lookahead == 'i') ADVANCE(183); + ACCEPT_TOKEN(anon_sym_char); END_STATE(); case 143: - if (lookahead == 'e') ADVANCE(184); + if (lookahead == 't') ADVANCE(184); END_STATE(); case 144: - if (lookahead == 'u') ADVANCE(185); + if (lookahead == 'i') ADVANCE(185); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'e') ADVANCE(186); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'u') ADVANCE(187); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_expr); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 148: - if (lookahead == 'r') ADVANCE(186); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 149: - if (lookahead == 'e') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_expr); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_i128); + if (lookahead == 'r') ADVANCE(188); END_STATE(); case 151: - if (lookahead == 't') ADVANCE(188); + if (lookahead == 'e') ADVANCE(189); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_impl); + ACCEPT_TOKEN(anon_sym_i128); END_STATE(); case 153: - if (lookahead == 'e') ADVANCE(189); + if (lookahead == 't') ADVANCE(190); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_item); + ACCEPT_TOKEN(anon_sym_impl); END_STATE(); case 155: - if (lookahead == 't') ADVANCE(190); + if (lookahead == 'e') ADVANCE(191); END_STATE(); case 156: - if (lookahead == 'r') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_item); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_loop); + if (lookahead == 't') ADVANCE(192); END_STATE(); case 158: - if (lookahead == 'h') ADVANCE(192); + if (lookahead == 'r') ADVANCE(193); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_meta); + ACCEPT_TOKEN(anon_sym_loop); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_move); + if (lookahead == 'h') ADVANCE(194); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_path); + ACCEPT_TOKEN(anon_sym_meta); END_STATE(); case 162: - if (lookahead == 'r') ADVANCE(193); + ACCEPT_TOKEN(anon_sym_move); END_STATE(); case 163: - ACCEPT_TOKEN(sym_self); + ACCEPT_TOKEN(anon_sym_path); END_STATE(); case 164: - if (lookahead == 'i') ADVANCE(194); + if (lookahead == 'r') ADVANCE(195); END_STATE(); case 165: - ACCEPT_TOKEN(anon_sym_stmt); + ACCEPT_TOKEN(sym_self); END_STATE(); case 166: - if (lookahead == 'c') ADVANCE(195); + if (lookahead == 'i') ADVANCE(196); END_STATE(); case 167: - if (lookahead == 'r') ADVANCE(196); + ACCEPT_TOKEN(anon_sym_stmt); END_STATE(); case 168: - if (lookahead == 't') ADVANCE(197); + if (lookahead == 'c') ADVANCE(197); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_true); + if (lookahead == 'r') ADVANCE(198); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_type); + if (lookahead == 't') ADVANCE(199); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_u128); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 172: - if (lookahead == 'n') ADVANCE(198); + ACCEPT_TOKEN(anon_sym_type); END_STATE(); case 173: - if (lookahead == 'f') ADVANCE(199); + ACCEPT_TOKEN(anon_sym_u128); END_STATE(); case 174: - if (lookahead == 'e') ADVANCE(200); + if (lookahead == 'n') ADVANCE(200); END_STATE(); case 175: - if (lookahead == 'e') ADVANCE(201); + if (lookahead == 'f') ADVANCE(201); END_STATE(); case 176: if (lookahead == 'e') ADVANCE(202); END_STATE(); case 177: - if (lookahead == 'd') ADVANCE(203); + if (lookahead == 'e') ADVANCE(203); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_async); + if (lookahead == 'e') ADVANCE(204); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_await); + if (lookahead == 'd') ADVANCE(205); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_block); + ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_break); + ACCEPT_TOKEN(anon_sym_await); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_block); END_STATE(); case 183: - if (lookahead == 'n') ADVANCE(204); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 184: - ACCEPT_TOKEN(sym_crate); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 185: - if (lookahead == 'l') ADVANCE(205); + if (lookahead == 'n') ADVANCE(206); END_STATE(); case 186: - if (lookahead == 'n') ADVANCE(206); + ACCEPT_TOKEN(sym_crate); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_false); + if (lookahead == 'l') ADVANCE(207); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_ident); + if (lookahead == 'n') ADVANCE(208); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_isize); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 190: - if (lookahead == 'i') ADVANCE(207); + ACCEPT_TOKEN(anon_sym_ident); END_STATE(); case 191: - if (lookahead == 'a') ADVANCE(208); + ACCEPT_TOKEN(anon_sym_isize); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_match); + if (lookahead == 'i') ADVANCE(209); END_STATE(); case 193: - if (lookahead == 'n') ADVANCE(209); + if (lookahead == 'a') ADVANCE(210); END_STATE(); case 194: - if (lookahead == 'c') ADVANCE(210); + ACCEPT_TOKEN(anon_sym_match); END_STATE(); case 195: - if (lookahead == 't') ADVANCE(211); + if (lookahead == 'n') ADVANCE(211); END_STATE(); case 196: - ACCEPT_TOKEN(sym_super); + if (lookahead == 'c') ADVANCE(212); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_trait); + if (lookahead == 't') ADVANCE(213); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_union); + ACCEPT_TOKEN(sym_super); END_STATE(); case 199: - if (lookahead == 'e') ADVANCE(212); + ACCEPT_TOKEN(anon_sym_trait); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_usize); + ACCEPT_TOKEN(anon_sym_union); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_where); + if (lookahead == 'e') ADVANCE(214); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_while); + ACCEPT_TOKEN(anon_sym_usize); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_yield); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 204: - if (lookahead == 'u') ADVANCE(213); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 205: - if (lookahead == 't') ADVANCE(214); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 206: - ACCEPT_TOKEN(anon_sym_extern); + if (lookahead == 'u') ADVANCE(215); END_STATE(); case 207: - if (lookahead == 'm') ADVANCE(215); + if (lookahead == 't') ADVANCE(216); END_STATE(); case 208: - if (lookahead == 'l') ADVANCE(216); + ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'm') ADVANCE(217); END_STATE(); case 210: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 'l') ADVANCE(218); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_struct); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym_unsafe); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 213: - if (lookahead == 'e') ADVANCE(217); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 214: - ACCEPT_TOKEN(anon_sym_default); + ACCEPT_TOKEN(anon_sym_unsafe); END_STATE(); case 215: - if (lookahead == 'e') ADVANCE(218); + if (lookahead == 'e') ADVANCE(219); END_STATE(); case 216: - ACCEPT_TOKEN(anon_sym_literal); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 217: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 'e') ADVANCE(220); END_STATE(); case 218: + ACCEPT_TOKEN(anon_sym_literal); + END_STATE(); + case 219: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 220: ACCEPT_TOKEN(anon_sym_lifetime); END_STATE(); default: @@ -10121,7 +10148,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [41] = {.lex_state = 3, .external_lex_state = 2}, [42] = {.lex_state = 3, .external_lex_state = 2}, [43] = {.lex_state = 5, .external_lex_state = 2}, - [44] = {.lex_state = 3, .external_lex_state = 2}, + [44] = {.lex_state = 5, .external_lex_state = 2}, [45] = {.lex_state = 3, .external_lex_state = 2}, [46] = {.lex_state = 5, .external_lex_state = 2}, [47] = {.lex_state = 5, .external_lex_state = 2}, @@ -10129,7 +10156,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [49] = {.lex_state = 5, .external_lex_state = 2}, [50] = {.lex_state = 5, .external_lex_state = 2}, [51] = {.lex_state = 5, .external_lex_state = 2}, - [52] = {.lex_state = 5, .external_lex_state = 2}, + [52] = {.lex_state = 3, .external_lex_state = 2}, [53] = {.lex_state = 3, .external_lex_state = 2}, [54] = {.lex_state = 3, .external_lex_state = 2}, [55] = {.lex_state = 3, .external_lex_state = 2}, @@ -10152,117 +10179,117 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [72] = {.lex_state = 2, .external_lex_state = 2}, [73] = {.lex_state = 2, .external_lex_state = 2}, [74] = {.lex_state = 2, .external_lex_state = 2}, - [75] = {.lex_state = 2, .external_lex_state = 2}, + [75] = {.lex_state = 4, .external_lex_state = 2}, [76] = {.lex_state = 2, .external_lex_state = 2}, [77] = {.lex_state = 2, .external_lex_state = 2}, [78] = {.lex_state = 2, .external_lex_state = 2}, [79] = {.lex_state = 2, .external_lex_state = 2}, [80] = {.lex_state = 2, .external_lex_state = 2}, [81] = {.lex_state = 2, .external_lex_state = 2}, - [82] = {.lex_state = 4, .external_lex_state = 2}, + [82] = {.lex_state = 2, .external_lex_state = 2}, [83] = {.lex_state = 2, .external_lex_state = 2}, [84] = {.lex_state = 4, .external_lex_state = 2}, [85] = {.lex_state = 2, .external_lex_state = 2}, [86] = {.lex_state = 2, .external_lex_state = 2}, - [87] = {.lex_state = 4, .external_lex_state = 2}, - [88] = {.lex_state = 4, .external_lex_state = 2}, - [89] = {.lex_state = 4, .external_lex_state = 2}, - [90] = {.lex_state = 2, .external_lex_state = 2}, - [91] = {.lex_state = 2, .external_lex_state = 2}, - [92] = {.lex_state = 2, .external_lex_state = 2}, - [93] = {.lex_state = 2, .external_lex_state = 2}, - [94] = {.lex_state = 2, .external_lex_state = 2}, - [95] = {.lex_state = 2, .external_lex_state = 2}, - [96] = {.lex_state = 2, .external_lex_state = 2}, - [97] = {.lex_state = 2, .external_lex_state = 2}, + [87] = {.lex_state = 2, .external_lex_state = 2}, + [88] = {.lex_state = 2, .external_lex_state = 2}, + [89] = {.lex_state = 2, .external_lex_state = 2}, + [90] = {.lex_state = 4, .external_lex_state = 2}, + [91] = {.lex_state = 4, .external_lex_state = 2}, + [92] = {.lex_state = 4, .external_lex_state = 2}, + [93] = {.lex_state = 4, .external_lex_state = 2}, + [94] = {.lex_state = 4, .external_lex_state = 2}, + [95] = {.lex_state = 4, .external_lex_state = 2}, + [96] = {.lex_state = 4, .external_lex_state = 2}, + [97] = {.lex_state = 4, .external_lex_state = 2}, [98] = {.lex_state = 4, .external_lex_state = 2}, [99] = {.lex_state = 4, .external_lex_state = 2}, - [100] = {.lex_state = 4, .external_lex_state = 2}, - [101] = {.lex_state = 4, .external_lex_state = 2}, + [100] = {.lex_state = 2, .external_lex_state = 2}, + [101] = {.lex_state = 2, .external_lex_state = 2}, [102] = {.lex_state = 4, .external_lex_state = 2}, [103] = {.lex_state = 4, .external_lex_state = 2}, [104] = {.lex_state = 4, .external_lex_state = 2}, - [105] = {.lex_state = 4, .external_lex_state = 2}, + [105] = {.lex_state = 2, .external_lex_state = 2}, [106] = {.lex_state = 4, .external_lex_state = 2}, - [107] = {.lex_state = 2, .external_lex_state = 2}, - [108] = {.lex_state = 4, .external_lex_state = 2}, + [107] = {.lex_state = 4, .external_lex_state = 2}, + [108] = {.lex_state = 2, .external_lex_state = 2}, [109] = {.lex_state = 4, .external_lex_state = 2}, - [110] = {.lex_state = 4, .external_lex_state = 2}, - [111] = {.lex_state = 4, .external_lex_state = 2}, + [110] = {.lex_state = 2, .external_lex_state = 2}, + [111] = {.lex_state = 2, .external_lex_state = 2}, [112] = {.lex_state = 4, .external_lex_state = 2}, - [113] = {.lex_state = 2, .external_lex_state = 2}, + [113] = {.lex_state = 4, .external_lex_state = 2}, [114] = {.lex_state = 4, .external_lex_state = 2}, - [115] = {.lex_state = 4, .external_lex_state = 2}, + [115] = {.lex_state = 2, .external_lex_state = 2}, [116] = {.lex_state = 4, .external_lex_state = 2}, [117] = {.lex_state = 4, .external_lex_state = 2}, [118] = {.lex_state = 4, .external_lex_state = 2}, - [119] = {.lex_state = 4, .external_lex_state = 2}, + [119] = {.lex_state = 2, .external_lex_state = 2}, [120] = {.lex_state = 4, .external_lex_state = 2}, - [121] = {.lex_state = 4, .external_lex_state = 2}, + [121] = {.lex_state = 2, .external_lex_state = 2}, [122] = {.lex_state = 4, .external_lex_state = 2}, [123] = {.lex_state = 4, .external_lex_state = 2}, [124] = {.lex_state = 4, .external_lex_state = 2}, - [125] = {.lex_state = 2, .external_lex_state = 2}, + [125] = {.lex_state = 4, .external_lex_state = 2}, [126] = {.lex_state = 4, .external_lex_state = 2}, [127] = {.lex_state = 4, .external_lex_state = 2}, [128] = {.lex_state = 4, .external_lex_state = 2}, [129] = {.lex_state = 4, .external_lex_state = 2}, [130] = {.lex_state = 4, .external_lex_state = 2}, [131] = {.lex_state = 4, .external_lex_state = 2}, - [132] = {.lex_state = 2, .external_lex_state = 2}, + [132] = {.lex_state = 4, .external_lex_state = 2}, [133] = {.lex_state = 4, .external_lex_state = 2}, [134] = {.lex_state = 11, .external_lex_state = 2}, [135] = {.lex_state = 11, .external_lex_state = 2}, - [136] = {.lex_state = 11, .external_lex_state = 2}, - [137] = {.lex_state = 11, .external_lex_state = 2}, + [136] = {.lex_state = 2, .external_lex_state = 2}, + [137] = {.lex_state = 2, .external_lex_state = 2}, [138] = {.lex_state = 11, .external_lex_state = 2}, [139] = {.lex_state = 11, .external_lex_state = 2}, [140] = {.lex_state = 2, .external_lex_state = 2}, [141] = {.lex_state = 11, .external_lex_state = 2}, - [142] = {.lex_state = 2, .external_lex_state = 2}, + [142] = {.lex_state = 11, .external_lex_state = 2}, [143] = {.lex_state = 11, .external_lex_state = 2}, - [144] = {.lex_state = 2, .external_lex_state = 2}, + [144] = {.lex_state = 11, .external_lex_state = 2}, [145] = {.lex_state = 2, .external_lex_state = 2}, - [146] = {.lex_state = 11, .external_lex_state = 2}, - [147] = {.lex_state = 2, .external_lex_state = 2}, - [148] = {.lex_state = 2, .external_lex_state = 2}, - [149] = {.lex_state = 11, .external_lex_state = 2}, + [146] = {.lex_state = 2, .external_lex_state = 2}, + [147] = {.lex_state = 11, .external_lex_state = 2}, + [148] = {.lex_state = 11, .external_lex_state = 2}, + [149] = {.lex_state = 2, .external_lex_state = 2}, [150] = {.lex_state = 2, .external_lex_state = 2}, [151] = {.lex_state = 2, .external_lex_state = 2}, [152] = {.lex_state = 2, .external_lex_state = 2}, - [153] = {.lex_state = 2, .external_lex_state = 2}, - [154] = {.lex_state = 2, .external_lex_state = 2}, + [153] = {.lex_state = 11, .external_lex_state = 2}, + [154] = {.lex_state = 11, .external_lex_state = 2}, [155] = {.lex_state = 2, .external_lex_state = 2}, - [156] = {.lex_state = 11, .external_lex_state = 2}, + [156] = {.lex_state = 2, .external_lex_state = 2}, [157] = {.lex_state = 2, .external_lex_state = 2}, - [158] = {.lex_state = 2, .external_lex_state = 2}, - [159] = {.lex_state = 2, .external_lex_state = 2}, - [160] = {.lex_state = 2, .external_lex_state = 2}, + [158] = {.lex_state = 11, .external_lex_state = 2}, + [159] = {.lex_state = 11, .external_lex_state = 2}, + [160] = {.lex_state = 4, .external_lex_state = 2}, [161] = {.lex_state = 11, .external_lex_state = 2}, - [162] = {.lex_state = 2, .external_lex_state = 2}, + [162] = {.lex_state = 11, .external_lex_state = 2}, [163] = {.lex_state = 2, .external_lex_state = 2}, - [164] = {.lex_state = 2, .external_lex_state = 2}, + [164] = {.lex_state = 11, .external_lex_state = 2}, [165] = {.lex_state = 2, .external_lex_state = 2}, - [166] = {.lex_state = 2, .external_lex_state = 2}, + [166] = {.lex_state = 11, .external_lex_state = 2}, [167] = {.lex_state = 11, .external_lex_state = 2}, - [168] = {.lex_state = 11, .external_lex_state = 2}, + [168] = {.lex_state = 2, .external_lex_state = 2}, [169] = {.lex_state = 11, .external_lex_state = 2}, - [170] = {.lex_state = 11, .external_lex_state = 2}, - [171] = {.lex_state = 11, .external_lex_state = 2}, + [170] = {.lex_state = 2, .external_lex_state = 2}, + [171] = {.lex_state = 2, .external_lex_state = 2}, [172] = {.lex_state = 11, .external_lex_state = 2}, - [173] = {.lex_state = 4, .external_lex_state = 2}, - [174] = {.lex_state = 11, .external_lex_state = 2}, - [175] = {.lex_state = 11, .external_lex_state = 2}, - [176] = {.lex_state = 11, .external_lex_state = 2}, + [173] = {.lex_state = 2, .external_lex_state = 2}, + [174] = {.lex_state = 2, .external_lex_state = 2}, + [175] = {.lex_state = 2, .external_lex_state = 2}, + [176] = {.lex_state = 4, .external_lex_state = 2}, [177] = {.lex_state = 11, .external_lex_state = 2}, - [178] = {.lex_state = 11, .external_lex_state = 2}, - [179] = {.lex_state = 2, .external_lex_state = 2}, + [178] = {.lex_state = 2, .external_lex_state = 2}, + [179] = {.lex_state = 11, .external_lex_state = 2}, [180] = {.lex_state = 2, .external_lex_state = 2}, [181] = {.lex_state = 2, .external_lex_state = 2}, [182] = {.lex_state = 11, .external_lex_state = 2}, [183] = {.lex_state = 11, .external_lex_state = 2}, - [184] = {.lex_state = 4, .external_lex_state = 2}, - [185] = {.lex_state = 11, .external_lex_state = 2}, + [184] = {.lex_state = 2, .external_lex_state = 2}, + [185] = {.lex_state = 2, .external_lex_state = 2}, [186] = {.lex_state = 11, .external_lex_state = 2}, [187] = {.lex_state = 11, .external_lex_state = 2}, [188] = {.lex_state = 11, .external_lex_state = 2}, @@ -10274,56 +10301,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [194] = {.lex_state = 11, .external_lex_state = 2}, [195] = {.lex_state = 11, .external_lex_state = 2}, [196] = {.lex_state = 11, .external_lex_state = 2}, - [197] = {.lex_state = 2, .external_lex_state = 2}, - [198] = {.lex_state = 4, .external_lex_state = 2}, - [199] = {.lex_state = 4, .external_lex_state = 2}, - [200] = {.lex_state = 11, .external_lex_state = 2}, - [201] = {.lex_state = 4, .external_lex_state = 2}, + [197] = {.lex_state = 11, .external_lex_state = 2}, + [198] = {.lex_state = 11, .external_lex_state = 2}, + [199] = {.lex_state = 11, .external_lex_state = 2}, + [200] = {.lex_state = 4, .external_lex_state = 2}, + [201] = {.lex_state = 11, .external_lex_state = 2}, [202] = {.lex_state = 4, .external_lex_state = 2}, [203] = {.lex_state = 4, .external_lex_state = 2}, [204] = {.lex_state = 4, .external_lex_state = 2}, - [205] = {.lex_state = 4, .external_lex_state = 2}, + [205] = {.lex_state = 11, .external_lex_state = 2}, [206] = {.lex_state = 11, .external_lex_state = 2}, [207] = {.lex_state = 4, .external_lex_state = 2}, - [208] = {.lex_state = 11, .external_lex_state = 2}, + [208] = {.lex_state = 4, .external_lex_state = 2}, [209] = {.lex_state = 4, .external_lex_state = 2}, - [210] = {.lex_state = 11, .external_lex_state = 2}, - [211] = {.lex_state = 11, .external_lex_state = 2}, - [212] = {.lex_state = 11, .external_lex_state = 2}, + [210] = {.lex_state = 4, .external_lex_state = 2}, + [211] = {.lex_state = 4, .external_lex_state = 2}, + [212] = {.lex_state = 4, .external_lex_state = 2}, [213] = {.lex_state = 4, .external_lex_state = 2}, - [214] = {.lex_state = 4, .external_lex_state = 2}, - [215] = {.lex_state = 11, .external_lex_state = 2}, + [214] = {.lex_state = 11, .external_lex_state = 2}, + [215] = {.lex_state = 13, .external_lex_state = 2}, [216] = {.lex_state = 13, .external_lex_state = 2}, - [217] = {.lex_state = 13, .external_lex_state = 2}, + [217] = {.lex_state = 11, .external_lex_state = 2}, [218] = {.lex_state = 11, .external_lex_state = 2}, - [219] = {.lex_state = 11, .external_lex_state = 2}, + [219] = {.lex_state = 13, .external_lex_state = 2}, [220] = {.lex_state = 13, .external_lex_state = 2}, [221] = {.lex_state = 13, .external_lex_state = 2}, - [222] = {.lex_state = 11, .external_lex_state = 2}, + [222] = {.lex_state = 13, .external_lex_state = 2}, [223] = {.lex_state = 13, .external_lex_state = 2}, [224] = {.lex_state = 13, .external_lex_state = 2}, [225] = {.lex_state = 11, .external_lex_state = 2}, [226] = {.lex_state = 11, .external_lex_state = 2}, - [227] = {.lex_state = 11, .external_lex_state = 2}, - [228] = {.lex_state = 11, .external_lex_state = 2}, + [227] = {.lex_state = 13, .external_lex_state = 2}, + [228] = {.lex_state = 13, .external_lex_state = 2}, [229] = {.lex_state = 11, .external_lex_state = 2}, - [230] = {.lex_state = 11, .external_lex_state = 2}, + [230] = {.lex_state = 13, .external_lex_state = 2}, [231] = {.lex_state = 11, .external_lex_state = 2}, - [232] = {.lex_state = 13, .external_lex_state = 2}, - [233] = {.lex_state = 13, .external_lex_state = 2}, + [232] = {.lex_state = 11, .external_lex_state = 2}, + [233] = {.lex_state = 11, .external_lex_state = 2}, [234] = {.lex_state = 11, .external_lex_state = 2}, - [235] = {.lex_state = 13, .external_lex_state = 2}, - [236] = {.lex_state = 13, .external_lex_state = 2}, + [235] = {.lex_state = 11, .external_lex_state = 2}, + [236] = {.lex_state = 11, .external_lex_state = 2}, [237] = {.lex_state = 11, .external_lex_state = 2}, - [238] = {.lex_state = 13, .external_lex_state = 2}, - [239] = {.lex_state = 13, .external_lex_state = 2}, + [238] = {.lex_state = 11, .external_lex_state = 2}, + [239] = {.lex_state = 11, .external_lex_state = 2}, [240] = {.lex_state = 13, .external_lex_state = 2}, [241] = {.lex_state = 13, .external_lex_state = 2}, - [242] = {.lex_state = 13, .external_lex_state = 2}, + [242] = {.lex_state = 11, .external_lex_state = 2}, [243] = {.lex_state = 11, .external_lex_state = 2}, [244] = {.lex_state = 11, .external_lex_state = 2}, - [245] = {.lex_state = 11, .external_lex_state = 2}, - [246] = {.lex_state = 11, .external_lex_state = 2}, + [245] = {.lex_state = 13, .external_lex_state = 2}, + [246] = {.lex_state = 13, .external_lex_state = 2}, [247] = {.lex_state = 11, .external_lex_state = 2}, [248] = {.lex_state = 11, .external_lex_state = 2}, [249] = {.lex_state = 11, .external_lex_state = 2}, @@ -10394,7 +10421,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [314] = {.lex_state = 11, .external_lex_state = 2}, [315] = {.lex_state = 11, .external_lex_state = 2}, [316] = {.lex_state = 11, .external_lex_state = 2}, - [317] = {.lex_state = 11, .external_lex_state = 2}, + [317] = {.lex_state = 69, .external_lex_state = 2}, [318] = {.lex_state = 11, .external_lex_state = 2}, [319] = {.lex_state = 11, .external_lex_state = 2}, [320] = {.lex_state = 11, .external_lex_state = 2}, @@ -10407,7 +10434,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [327] = {.lex_state = 11, .external_lex_state = 2}, [328] = {.lex_state = 11, .external_lex_state = 2}, [329] = {.lex_state = 11, .external_lex_state = 2}, - [330] = {.lex_state = 69, .external_lex_state = 2}, + [330] = {.lex_state = 11, .external_lex_state = 2}, [331] = {.lex_state = 11, .external_lex_state = 2}, [332] = {.lex_state = 11, .external_lex_state = 2}, [333] = {.lex_state = 11, .external_lex_state = 2}, @@ -10443,10 +10470,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [363] = {.lex_state = 11, .external_lex_state = 2}, [364] = {.lex_state = 11, .external_lex_state = 2}, [365] = {.lex_state = 11, .external_lex_state = 2}, - [366] = {.lex_state = 69, .external_lex_state = 2}, - [367] = {.lex_state = 69, .external_lex_state = 2}, - [368] = {.lex_state = 69, .external_lex_state = 2}, - [369] = {.lex_state = 69, .external_lex_state = 2}, + [366] = {.lex_state = 11, .external_lex_state = 2}, + [367] = {.lex_state = 11, .external_lex_state = 2}, + [368] = {.lex_state = 11, .external_lex_state = 2}, + [369] = {.lex_state = 11, .external_lex_state = 2}, [370] = {.lex_state = 69, .external_lex_state = 2}, [371] = {.lex_state = 69, .external_lex_state = 2}, [372] = {.lex_state = 69, .external_lex_state = 2}, @@ -10473,13 +10500,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [393] = {.lex_state = 69, .external_lex_state = 2}, [394] = {.lex_state = 69, .external_lex_state = 2}, [395] = {.lex_state = 69, .external_lex_state = 2}, - [396] = {.lex_state = 12, .external_lex_state = 2}, - [397] = {.lex_state = 12, .external_lex_state = 2}, - [398] = {.lex_state = 12, .external_lex_state = 2}, - [399] = {.lex_state = 12, .external_lex_state = 2}, + [396] = {.lex_state = 69, .external_lex_state = 2}, + [397] = {.lex_state = 69, .external_lex_state = 2}, + [398] = {.lex_state = 69, .external_lex_state = 2}, + [399] = {.lex_state = 69, .external_lex_state = 2}, [400] = {.lex_state = 12, .external_lex_state = 2}, - [401] = {.lex_state = 12, .external_lex_state = 2}, - [402] = {.lex_state = 69, .external_lex_state = 2}, + [401] = {.lex_state = 69, .external_lex_state = 2}, + [402] = {.lex_state = 12, .external_lex_state = 2}, [403] = {.lex_state = 12, .external_lex_state = 2}, [404] = {.lex_state = 12, .external_lex_state = 2}, [405] = {.lex_state = 12, .external_lex_state = 2}, @@ -10489,33 +10516,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [409] = {.lex_state = 12, .external_lex_state = 2}, [410] = {.lex_state = 12, .external_lex_state = 2}, [411] = {.lex_state = 12, .external_lex_state = 2}, - [412] = {.lex_state = 11, .external_lex_state = 2}, + [412] = {.lex_state = 12, .external_lex_state = 2}, [413] = {.lex_state = 12, .external_lex_state = 2}, - [414] = {.lex_state = 11, .external_lex_state = 2}, - [415] = {.lex_state = 11, .external_lex_state = 2}, - [416] = {.lex_state = 12, .external_lex_state = 2}, - [417] = {.lex_state = 12, .external_lex_state = 2}, + [414] = {.lex_state = 12, .external_lex_state = 2}, + [415] = {.lex_state = 12, .external_lex_state = 2}, + [416] = {.lex_state = 11, .external_lex_state = 2}, + [417] = {.lex_state = 11, .external_lex_state = 2}, [418] = {.lex_state = 12, .external_lex_state = 2}, - [419] = {.lex_state = 12, .external_lex_state = 2}, - [420] = {.lex_state = 11, .external_lex_state = 2}, - [421] = {.lex_state = 3, .external_lex_state = 2}, - [422] = {.lex_state = 11, .external_lex_state = 2}, - [423] = {.lex_state = 11, .external_lex_state = 2}, + [419] = {.lex_state = 11, .external_lex_state = 2}, + [420] = {.lex_state = 12, .external_lex_state = 2}, + [421] = {.lex_state = 12, .external_lex_state = 2}, + [422] = {.lex_state = 12, .external_lex_state = 2}, + [423] = {.lex_state = 12, .external_lex_state = 2}, [424] = {.lex_state = 11, .external_lex_state = 2}, [425] = {.lex_state = 11, .external_lex_state = 2}, [426] = {.lex_state = 11, .external_lex_state = 2}, [427] = {.lex_state = 11, .external_lex_state = 2}, - [428] = {.lex_state = 11, .external_lex_state = 2}, + [428] = {.lex_state = 3, .external_lex_state = 2}, [429] = {.lex_state = 11, .external_lex_state = 2}, [430] = {.lex_state = 11, .external_lex_state = 2}, [431] = {.lex_state = 11, .external_lex_state = 2}, - [432] = {.lex_state = 5, .external_lex_state = 2}, - [433] = {.lex_state = 13, .external_lex_state = 2}, - [434] = {.lex_state = 13, .external_lex_state = 2}, + [432] = {.lex_state = 11, .external_lex_state = 2}, + [433] = {.lex_state = 11, .external_lex_state = 2}, + [434] = {.lex_state = 11, .external_lex_state = 2}, [435] = {.lex_state = 11, .external_lex_state = 2}, - [436] = {.lex_state = 11, .external_lex_state = 2}, - [437] = {.lex_state = 11, .external_lex_state = 2}, - [438] = {.lex_state = 11, .external_lex_state = 2}, + [436] = {.lex_state = 5, .external_lex_state = 2}, + [437] = {.lex_state = 13, .external_lex_state = 2}, + [438] = {.lex_state = 13, .external_lex_state = 2}, [439] = {.lex_state = 11, .external_lex_state = 2}, [440] = {.lex_state = 11, .external_lex_state = 2}, [441] = {.lex_state = 11, .external_lex_state = 2}, @@ -10525,30 +10552,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [445] = {.lex_state = 11, .external_lex_state = 2}, [446] = {.lex_state = 11, .external_lex_state = 2}, [447] = {.lex_state = 11, .external_lex_state = 2}, - [448] = {.lex_state = 3, .external_lex_state = 2}, - [449] = {.lex_state = 3, .external_lex_state = 2}, - [450] = {.lex_state = 3, .external_lex_state = 2}, - [451] = {.lex_state = 3, .external_lex_state = 2}, + [448] = {.lex_state = 11, .external_lex_state = 2}, + [449] = {.lex_state = 11, .external_lex_state = 2}, + [450] = {.lex_state = 11, .external_lex_state = 2}, + [451] = {.lex_state = 11, .external_lex_state = 2}, [452] = {.lex_state = 3, .external_lex_state = 2}, [453] = {.lex_state = 3, .external_lex_state = 2}, [454] = {.lex_state = 3, .external_lex_state = 2}, [455] = {.lex_state = 3, .external_lex_state = 2}, [456] = {.lex_state = 3, .external_lex_state = 2}, [457] = {.lex_state = 3, .external_lex_state = 2}, - [458] = {.lex_state = 3, .external_lex_state = 2}, + [458] = {.lex_state = 11, .external_lex_state = 2}, [459] = {.lex_state = 3, .external_lex_state = 2}, [460] = {.lex_state = 3, .external_lex_state = 2}, [461] = {.lex_state = 3, .external_lex_state = 2}, - [462] = {.lex_state = 11, .external_lex_state = 2}, + [462] = {.lex_state = 3, .external_lex_state = 2}, [463] = {.lex_state = 3, .external_lex_state = 2}, [464] = {.lex_state = 3, .external_lex_state = 2}, [465] = {.lex_state = 3, .external_lex_state = 2}, - [466] = {.lex_state = 11, .external_lex_state = 2}, + [466] = {.lex_state = 3, .external_lex_state = 2}, [467] = {.lex_state = 3, .external_lex_state = 2}, - [468] = {.lex_state = 3, .external_lex_state = 2}, + [468] = {.lex_state = 11, .external_lex_state = 2}, [469] = {.lex_state = 11, .external_lex_state = 2}, [470] = {.lex_state = 3, .external_lex_state = 2}, - [471] = {.lex_state = 11, .external_lex_state = 2}, + [471] = {.lex_state = 3, .external_lex_state = 2}, [472] = {.lex_state = 3, .external_lex_state = 2}, [473] = {.lex_state = 3, .external_lex_state = 2}, [474] = {.lex_state = 3, .external_lex_state = 2}, @@ -10556,10 +10583,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [476] = {.lex_state = 3, .external_lex_state = 2}, [477] = {.lex_state = 3, .external_lex_state = 2}, [478] = {.lex_state = 3, .external_lex_state = 2}, - [479] = {.lex_state = 71, .external_lex_state = 2}, - [480] = {.lex_state = 71, .external_lex_state = 2}, - [481] = {.lex_state = 71, .external_lex_state = 2}, - [482] = {.lex_state = 71, .external_lex_state = 2}, + [479] = {.lex_state = 11, .external_lex_state = 2}, + [480] = {.lex_state = 3, .external_lex_state = 2}, + [481] = {.lex_state = 3, .external_lex_state = 2}, + [482] = {.lex_state = 3, .external_lex_state = 2}, [483] = {.lex_state = 71, .external_lex_state = 2}, [484] = {.lex_state = 71, .external_lex_state = 2}, [485] = {.lex_state = 71, .external_lex_state = 2}, @@ -10674,7 +10701,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [594] = {.lex_state = 71, .external_lex_state = 2}, [595] = {.lex_state = 71, .external_lex_state = 2}, [596] = {.lex_state = 71, .external_lex_state = 2}, - [597] = {.lex_state = 71, .external_lex_state = 2}, + [597] = {.lex_state = 11, .external_lex_state = 2}, [598] = {.lex_state = 71, .external_lex_state = 2}, [599] = {.lex_state = 71, .external_lex_state = 2}, [600] = {.lex_state = 71, .external_lex_state = 2}, @@ -10690,7 +10717,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [610] = {.lex_state = 71, .external_lex_state = 2}, [611] = {.lex_state = 71, .external_lex_state = 2}, [612] = {.lex_state = 71, .external_lex_state = 2}, - [613] = {.lex_state = 11, .external_lex_state = 2}, + [613] = {.lex_state = 71, .external_lex_state = 2}, [614] = {.lex_state = 71, .external_lex_state = 2}, [615] = {.lex_state = 71, .external_lex_state = 2}, [616] = {.lex_state = 71, .external_lex_state = 2}, @@ -10815,59 +10842,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [735] = {.lex_state = 71, .external_lex_state = 2}, [736] = {.lex_state = 71, .external_lex_state = 2}, [737] = {.lex_state = 71, .external_lex_state = 2}, - [738] = {.lex_state = 11, .external_lex_state = 2}, + [738] = {.lex_state = 71, .external_lex_state = 2}, [739] = {.lex_state = 71, .external_lex_state = 2}, - [740] = {.lex_state = 71, .external_lex_state = 2}, + [740] = {.lex_state = 11, .external_lex_state = 2}, [741] = {.lex_state = 71, .external_lex_state = 2}, [742] = {.lex_state = 71, .external_lex_state = 2}, [743] = {.lex_state = 71, .external_lex_state = 2}, [744] = {.lex_state = 71, .external_lex_state = 2}, [745] = {.lex_state = 71, .external_lex_state = 2}, - [746] = {.lex_state = 11, .external_lex_state = 2}, + [746] = {.lex_state = 71, .external_lex_state = 2}, [747] = {.lex_state = 71, .external_lex_state = 2}, - [748] = {.lex_state = 11, .external_lex_state = 2}, + [748] = {.lex_state = 71, .external_lex_state = 2}, [749] = {.lex_state = 71, .external_lex_state = 2}, [750] = {.lex_state = 71, .external_lex_state = 2}, - [751] = {.lex_state = 71, .external_lex_state = 2}, - [752] = {.lex_state = 10}, - [753] = {.lex_state = 11, .external_lex_state = 2}, - [754] = {.lex_state = 10}, - [755] = {.lex_state = 10}, + [751] = {.lex_state = 11, .external_lex_state = 2}, + [752] = {.lex_state = 71, .external_lex_state = 2}, + [753] = {.lex_state = 71, .external_lex_state = 2}, + [754] = {.lex_state = 11, .external_lex_state = 2}, + [755] = {.lex_state = 71, .external_lex_state = 2}, [756] = {.lex_state = 10}, [757] = {.lex_state = 10}, [758] = {.lex_state = 11, .external_lex_state = 2}, - [759] = {.lex_state = 11, .external_lex_state = 2}, - [760] = {.lex_state = 11, .external_lex_state = 2}, - [761] = {.lex_state = 11, .external_lex_state = 2}, + [759] = {.lex_state = 10}, + [760] = {.lex_state = 10}, + [761] = {.lex_state = 10}, [762] = {.lex_state = 11, .external_lex_state = 2}, [763] = {.lex_state = 11, .external_lex_state = 2}, [764] = {.lex_state = 11, .external_lex_state = 2}, [765] = {.lex_state = 11, .external_lex_state = 2}, - [766] = {.lex_state = 14}, - [767] = {.lex_state = 14}, + [766] = {.lex_state = 11, .external_lex_state = 2}, + [767] = {.lex_state = 11, .external_lex_state = 2}, [768] = {.lex_state = 11, .external_lex_state = 2}, - [769] = {.lex_state = 14}, - [770] = {.lex_state = 14}, + [769] = {.lex_state = 11, .external_lex_state = 2}, + [770] = {.lex_state = 11, .external_lex_state = 2}, [771] = {.lex_state = 14}, [772] = {.lex_state = 14}, [773] = {.lex_state = 14}, [774] = {.lex_state = 14}, [775] = {.lex_state = 14}, - [776] = {.lex_state = 11, .external_lex_state = 2}, - [777] = {.lex_state = 11, .external_lex_state = 2}, + [776] = {.lex_state = 14}, + [777] = {.lex_state = 14}, [778] = {.lex_state = 14}, [779] = {.lex_state = 11, .external_lex_state = 2}, - [780] = {.lex_state = 14}, + [780] = {.lex_state = 11, .external_lex_state = 2}, [781] = {.lex_state = 11, .external_lex_state = 2}, - [782] = {.lex_state = 11, .external_lex_state = 2}, + [782] = {.lex_state = 14}, [783] = {.lex_state = 11, .external_lex_state = 2}, - [784] = {.lex_state = 11, .external_lex_state = 2}, - [785] = {.lex_state = 11, .external_lex_state = 2}, + [784] = {.lex_state = 14}, + [785] = {.lex_state = 14}, [786] = {.lex_state = 11, .external_lex_state = 2}, - [787] = {.lex_state = 12, .external_lex_state = 2}, + [787] = {.lex_state = 11, .external_lex_state = 2}, [788] = {.lex_state = 11, .external_lex_state = 2}, [789] = {.lex_state = 11, .external_lex_state = 2}, - [790] = {.lex_state = 11, .external_lex_state = 2}, + [790] = {.lex_state = 12, .external_lex_state = 2}, [791] = {.lex_state = 11, .external_lex_state = 2}, [792] = {.lex_state = 11, .external_lex_state = 2}, [793] = {.lex_state = 11, .external_lex_state = 2}, @@ -10910,21 +10937,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [830] = {.lex_state = 11, .external_lex_state = 2}, [831] = {.lex_state = 11, .external_lex_state = 2}, [832] = {.lex_state = 11, .external_lex_state = 2}, - [833] = {.lex_state = 14}, - [834] = {.lex_state = 14}, - [835] = {.lex_state = 14}, - [836] = {.lex_state = 14}, + [833] = {.lex_state = 11, .external_lex_state = 2}, + [834] = {.lex_state = 11, .external_lex_state = 2}, + [835] = {.lex_state = 11, .external_lex_state = 2}, + [836] = {.lex_state = 11, .external_lex_state = 2}, [837] = {.lex_state = 14}, [838] = {.lex_state = 14}, [839] = {.lex_state = 14}, - [840] = {.lex_state = 11, .external_lex_state = 2}, + [840] = {.lex_state = 14}, [841] = {.lex_state = 14}, [842] = {.lex_state = 14}, [843] = {.lex_state = 14}, [844] = {.lex_state = 14}, [845] = {.lex_state = 14}, [846] = {.lex_state = 14}, - [847] = {.lex_state = 14}, + [847] = {.lex_state = 11, .external_lex_state = 2}, [848] = {.lex_state = 14}, [849] = {.lex_state = 14}, [850] = {.lex_state = 14}, @@ -10990,7 +11017,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [910] = {.lex_state = 14}, [911] = {.lex_state = 14}, [912] = {.lex_state = 14}, - [913] = {.lex_state = 11, .external_lex_state = 2}, + [913] = {.lex_state = 14}, [914] = {.lex_state = 14}, [915] = {.lex_state = 14}, [916] = {.lex_state = 14}, @@ -11071,7 +11098,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [991] = {.lex_state = 14}, [992] = {.lex_state = 14}, [993] = {.lex_state = 14}, - [994] = {.lex_state = 14}, + [994] = {.lex_state = 11, .external_lex_state = 2}, [995] = {.lex_state = 14}, [996] = {.lex_state = 14}, [997] = {.lex_state = 14}, @@ -11084,144 +11111,144 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1004] = {.lex_state = 14}, [1005] = {.lex_state = 14}, [1006] = {.lex_state = 14}, - [1007] = {.lex_state = 11, .external_lex_state = 2}, - [1008] = {.lex_state = 13, .external_lex_state = 2}, - [1009] = {.lex_state = 13, .external_lex_state = 2}, - [1010] = {.lex_state = 11, .external_lex_state = 2}, - [1011] = {.lex_state = 12, .external_lex_state = 2}, - [1012] = {.lex_state = 14}, - [1013] = {.lex_state = 11, .external_lex_state = 2}, + [1007] = {.lex_state = 14}, + [1008] = {.lex_state = 14}, + [1009] = {.lex_state = 14}, + [1010] = {.lex_state = 14}, + [1011] = {.lex_state = 11, .external_lex_state = 2}, + [1012] = {.lex_state = 13, .external_lex_state = 2}, + [1013] = {.lex_state = 13, .external_lex_state = 2}, [1014] = {.lex_state = 11, .external_lex_state = 2}, - [1015] = {.lex_state = 6}, - [1016] = {.lex_state = 6}, - [1017] = {.lex_state = 6}, - [1018] = {.lex_state = 6}, + [1015] = {.lex_state = 12, .external_lex_state = 2}, + [1016] = {.lex_state = 14}, + [1017] = {.lex_state = 11, .external_lex_state = 2}, + [1018] = {.lex_state = 11, .external_lex_state = 2}, [1019] = {.lex_state = 6}, - [1020] = {.lex_state = 10}, - [1021] = {.lex_state = 10}, + [1020] = {.lex_state = 6}, + [1021] = {.lex_state = 6}, [1022] = {.lex_state = 6}, - [1023] = {.lex_state = 6}, + [1023] = {.lex_state = 10}, [1024] = {.lex_state = 10}, [1025] = {.lex_state = 6}, - [1026] = {.lex_state = 10}, - [1027] = {.lex_state = 10}, + [1026] = {.lex_state = 6}, + [1027] = {.lex_state = 6}, [1028] = {.lex_state = 6}, [1029] = {.lex_state = 10}, [1030] = {.lex_state = 6}, - [1031] = {.lex_state = 6}, - [1032] = {.lex_state = 10}, - [1033] = {.lex_state = 6}, + [1031] = {.lex_state = 10}, + [1032] = {.lex_state = 6}, + [1033] = {.lex_state = 10}, [1034] = {.lex_state = 10}, - [1035] = {.lex_state = 10}, - [1036] = {.lex_state = 22}, - [1037] = {.lex_state = 11, .external_lex_state = 2}, - [1038] = {.lex_state = 22}, - [1039] = {.lex_state = 7}, - [1040] = {.lex_state = 7}, - [1041] = {.lex_state = 22}, - [1042] = {.lex_state = 22}, + [1035] = {.lex_state = 6}, + [1036] = {.lex_state = 6}, + [1037] = {.lex_state = 10}, + [1038] = {.lex_state = 10}, + [1039] = {.lex_state = 10}, + [1040] = {.lex_state = 22}, + [1041] = {.lex_state = 7}, + [1042] = {.lex_state = 11, .external_lex_state = 2}, [1043] = {.lex_state = 7}, - [1044] = {.lex_state = 7}, + [1044] = {.lex_state = 22}, [1045] = {.lex_state = 7}, [1046] = {.lex_state = 22}, [1047] = {.lex_state = 7}, - [1048] = {.lex_state = 7}, + [1048] = {.lex_state = 22}, [1049] = {.lex_state = 7}, [1050] = {.lex_state = 7}, - [1051] = {.lex_state = 7}, - [1052] = {.lex_state = 14}, + [1051] = {.lex_state = 22}, + [1052] = {.lex_state = 7}, [1053] = {.lex_state = 7}, - [1054] = {.lex_state = 7}, - [1055] = {.lex_state = 7}, - [1056] = {.lex_state = 14}, - [1057] = {.lex_state = 19}, - [1058] = {.lex_state = 18}, + [1054] = {.lex_state = 19}, + [1055] = {.lex_state = 19}, + [1056] = {.lex_state = 18}, + [1057] = {.lex_state = 7}, + [1058] = {.lex_state = 14}, [1059] = {.lex_state = 7}, - [1060] = {.lex_state = 7}, + [1060] = {.lex_state = 18}, [1061] = {.lex_state = 18}, - [1062] = {.lex_state = 18}, - [1063] = {.lex_state = 7}, - [1064] = {.lex_state = 6}, + [1062] = {.lex_state = 6}, + [1063] = {.lex_state = 18}, + [1064] = {.lex_state = 18}, [1065] = {.lex_state = 18}, [1066] = {.lex_state = 18}, - [1067] = {.lex_state = 18}, + [1067] = {.lex_state = 7}, [1068] = {.lex_state = 7}, [1069] = {.lex_state = 7}, [1070] = {.lex_state = 18}, [1071] = {.lex_state = 7}, - [1072] = {.lex_state = 18}, + [1072] = {.lex_state = 7}, [1073] = {.lex_state = 7}, [1074] = {.lex_state = 18}, [1075] = {.lex_state = 7}, [1076] = {.lex_state = 18}, [1077] = {.lex_state = 7}, [1078] = {.lex_state = 18}, - [1079] = {.lex_state = 7}, + [1079] = {.lex_state = 14}, [1080] = {.lex_state = 7}, - [1081] = {.lex_state = 7}, + [1081] = {.lex_state = 14}, [1082] = {.lex_state = 7}, [1083] = {.lex_state = 7}, [1084] = {.lex_state = 14}, [1085] = {.lex_state = 14}, - [1086] = {.lex_state = 14}, - [1087] = {.lex_state = 14}, + [1086] = {.lex_state = 7}, + [1087] = {.lex_state = 7}, [1088] = {.lex_state = 14}, - [1089] = {.lex_state = 7}, + [1089] = {.lex_state = 14}, [1090] = {.lex_state = 14}, - [1091] = {.lex_state = 14}, + [1091] = {.lex_state = 7}, [1092] = {.lex_state = 7}, - [1093] = {.lex_state = 19}, - [1094] = {.lex_state = 18}, + [1093] = {.lex_state = 7}, + [1094] = {.lex_state = 7}, [1095] = {.lex_state = 7}, - [1096] = {.lex_state = 7}, + [1096] = {.lex_state = 14}, [1097] = {.lex_state = 7}, - [1098] = {.lex_state = 10}, + [1098] = {.lex_state = 18}, [1099] = {.lex_state = 10}, [1100] = {.lex_state = 10}, - [1101] = {.lex_state = 7}, - [1102] = {.lex_state = 10}, - [1103] = {.lex_state = 10}, - [1104] = {.lex_state = 10}, - [1105] = {.lex_state = 10}, - [1106] = {.lex_state = 10}, - [1107] = {.lex_state = 10}, - [1108] = {.lex_state = 10}, - [1109] = {.lex_state = 10}, + [1101] = {.lex_state = 10}, + [1102] = {.lex_state = 7}, + [1103] = {.lex_state = 7}, + [1104] = {.lex_state = 7}, + [1105] = {.lex_state = 7}, + [1106] = {.lex_state = 7}, + [1107] = {.lex_state = 7}, + [1108] = {.lex_state = 7}, + [1109] = {.lex_state = 7}, [1110] = {.lex_state = 7}, [1111] = {.lex_state = 7}, - [1112] = {.lex_state = 10}, - [1113] = {.lex_state = 10}, - [1114] = {.lex_state = 10}, - [1115] = {.lex_state = 10}, - [1116] = {.lex_state = 10}, + [1112] = {.lex_state = 7}, + [1113] = {.lex_state = 7}, + [1114] = {.lex_state = 7}, + [1115] = {.lex_state = 7}, + [1116] = {.lex_state = 7}, [1117] = {.lex_state = 7}, - [1118] = {.lex_state = 7}, - [1119] = {.lex_state = 7}, - [1120] = {.lex_state = 7}, - [1121] = {.lex_state = 7}, - [1122] = {.lex_state = 7}, - [1123] = {.lex_state = 10}, - [1124] = {.lex_state = 14}, + [1118] = {.lex_state = 10}, + [1119] = {.lex_state = 10}, + [1120] = {.lex_state = 10}, + [1121] = {.lex_state = 10}, + [1122] = {.lex_state = 10}, + [1123] = {.lex_state = 7}, + [1124] = {.lex_state = 10}, [1125] = {.lex_state = 10}, - [1126] = {.lex_state = 7}, - [1127] = {.lex_state = 7}, - [1128] = {.lex_state = 7}, + [1126] = {.lex_state = 10}, + [1127] = {.lex_state = 10}, + [1128] = {.lex_state = 10}, [1129] = {.lex_state = 7}, - [1130] = {.lex_state = 14}, - [1131] = {.lex_state = 7}, + [1130] = {.lex_state = 10}, + [1131] = {.lex_state = 10}, [1132] = {.lex_state = 10}, [1133] = {.lex_state = 10}, [1134] = {.lex_state = 10}, [1135] = {.lex_state = 10}, [1136] = {.lex_state = 10}, - [1137] = {.lex_state = 7}, + [1137] = {.lex_state = 10}, [1138] = {.lex_state = 10}, [1139] = {.lex_state = 10}, [1140] = {.lex_state = 10}, [1141] = {.lex_state = 10}, [1142] = {.lex_state = 10}, - [1143] = {.lex_state = 7}, - [1144] = {.lex_state = 14}, + [1143] = {.lex_state = 10}, + [1144] = {.lex_state = 10}, [1145] = {.lex_state = 10}, [1146] = {.lex_state = 10}, [1147] = {.lex_state = 10}, @@ -11231,45 +11258,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1151] = {.lex_state = 10}, [1152] = {.lex_state = 10}, [1153] = {.lex_state = 10}, - [1154] = {.lex_state = 10}, + [1154] = {.lex_state = 7}, [1155] = {.lex_state = 10}, [1156] = {.lex_state = 10}, - [1157] = {.lex_state = 10}, - [1158] = {.lex_state = 10}, - [1159] = {.lex_state = 10}, - [1160] = {.lex_state = 10}, - [1161] = {.lex_state = 10}, - [1162] = {.lex_state = 10}, - [1163] = {.lex_state = 10}, - [1164] = {.lex_state = 10}, - [1165] = {.lex_state = 10}, - [1166] = {.lex_state = 10}, + [1157] = {.lex_state = 7}, + [1158] = {.lex_state = 7}, + [1159] = {.lex_state = 7}, + [1160] = {.lex_state = 7}, + [1161] = {.lex_state = 7}, + [1162] = {.lex_state = 7}, + [1163] = {.lex_state = 7}, + [1164] = {.lex_state = 7}, + [1165] = {.lex_state = 7}, + [1166] = {.lex_state = 7}, [1167] = {.lex_state = 10}, - [1168] = {.lex_state = 10}, - [1169] = {.lex_state = 7}, + [1168] = {.lex_state = 7}, + [1169] = {.lex_state = 10}, [1170] = {.lex_state = 10}, - [1171] = {.lex_state = 10}, - [1172] = {.lex_state = 7}, - [1173] = {.lex_state = 7}, - [1174] = {.lex_state = 7}, - [1175] = {.lex_state = 7}, - [1176] = {.lex_state = 7}, - [1177] = {.lex_state = 7}, + [1171] = {.lex_state = 7}, + [1172] = {.lex_state = 10}, + [1173] = {.lex_state = 10}, + [1174] = {.lex_state = 10}, + [1175] = {.lex_state = 10}, + [1176] = {.lex_state = 10}, + [1177] = {.lex_state = 10}, [1178] = {.lex_state = 7}, [1179] = {.lex_state = 7}, - [1180] = {.lex_state = 7}, - [1181] = {.lex_state = 7}, + [1180] = {.lex_state = 10}, + [1181] = {.lex_state = 10}, [1182] = {.lex_state = 10}, [1183] = {.lex_state = 10}, - [1184] = {.lex_state = 7}, + [1184] = {.lex_state = 10}, [1185] = {.lex_state = 10}, [1186] = {.lex_state = 10}, [1187] = {.lex_state = 10}, [1188] = {.lex_state = 10}, - [1189] = {.lex_state = 10}, + [1189] = {.lex_state = 7}, [1190] = {.lex_state = 10}, - [1191] = {.lex_state = 7}, - [1192] = {.lex_state = 7}, + [1191] = {.lex_state = 10}, + [1192] = {.lex_state = 10}, [1193] = {.lex_state = 10}, [1194] = {.lex_state = 10}, [1195] = {.lex_state = 10}, @@ -11279,9 +11306,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1199] = {.lex_state = 10}, [1200] = {.lex_state = 10}, [1201] = {.lex_state = 10}, - [1202] = {.lex_state = 7}, + [1202] = {.lex_state = 10}, [1203] = {.lex_state = 10}, - [1204] = {.lex_state = 7}, + [1204] = {.lex_state = 10}, [1205] = {.lex_state = 10}, [1206] = {.lex_state = 10}, [1207] = {.lex_state = 10}, @@ -11298,39 +11325,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1218] = {.lex_state = 10}, [1219] = {.lex_state = 10}, [1220] = {.lex_state = 10}, - [1221] = {.lex_state = 10}, - [1222] = {.lex_state = 10}, - [1223] = {.lex_state = 10}, + [1221] = {.lex_state = 7}, + [1222] = {.lex_state = 7}, + [1223] = {.lex_state = 7}, [1224] = {.lex_state = 10}, [1225] = {.lex_state = 10}, - [1226] = {.lex_state = 10}, - [1227] = {.lex_state = 10}, - [1228] = {.lex_state = 10}, + [1226] = {.lex_state = 7}, + [1227] = {.lex_state = 7}, + [1228] = {.lex_state = 7}, [1229] = {.lex_state = 10}, - [1230] = {.lex_state = 10}, - [1231] = {.lex_state = 10}, - [1232] = {.lex_state = 10}, + [1230] = {.lex_state = 7}, + [1231] = {.lex_state = 7}, + [1232] = {.lex_state = 7}, [1233] = {.lex_state = 10}, [1234] = {.lex_state = 10}, - [1235] = {.lex_state = 7}, - [1236] = {.lex_state = 7}, + [1235] = {.lex_state = 10}, + [1236] = {.lex_state = 10}, [1237] = {.lex_state = 10}, [1238] = {.lex_state = 10}, - [1239] = {.lex_state = 12, .external_lex_state = 2}, - [1240] = {.lex_state = 7}, - [1241] = {.lex_state = 7}, - [1242] = {.lex_state = 7}, - [1243] = {.lex_state = 7}, - [1244] = {.lex_state = 7}, - [1245] = {.lex_state = 7}, - [1246] = {.lex_state = 7}, + [1239] = {.lex_state = 10}, + [1240] = {.lex_state = 10}, + [1241] = {.lex_state = 10}, + [1242] = {.lex_state = 10}, + [1243] = {.lex_state = 10}, + [1244] = {.lex_state = 10}, + [1245] = {.lex_state = 10}, + [1246] = {.lex_state = 10}, [1247] = {.lex_state = 10}, [1248] = {.lex_state = 10}, [1249] = {.lex_state = 10}, [1250] = {.lex_state = 10}, [1251] = {.lex_state = 10}, [1252] = {.lex_state = 10}, - [1253] = {.lex_state = 10}, + [1253] = {.lex_state = 7}, [1254] = {.lex_state = 10}, [1255] = {.lex_state = 10}, [1256] = {.lex_state = 10}, @@ -11344,9 +11371,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1264] = {.lex_state = 10}, [1265] = {.lex_state = 10}, [1266] = {.lex_state = 10}, - [1267] = {.lex_state = 7}, + [1267] = {.lex_state = 10}, [1268] = {.lex_state = 10}, - [1269] = {.lex_state = 7}, + [1269] = {.lex_state = 10}, [1270] = {.lex_state = 10}, [1271] = {.lex_state = 10}, [1272] = {.lex_state = 10}, @@ -11359,12 +11386,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1279] = {.lex_state = 10}, [1280] = {.lex_state = 10}, [1281] = {.lex_state = 10}, - [1282] = {.lex_state = 10}, + [1282] = {.lex_state = 7}, [1283] = {.lex_state = 10}, [1284] = {.lex_state = 10}, [1285] = {.lex_state = 10}, [1286] = {.lex_state = 10}, - [1287] = {.lex_state = 10}, + [1287] = {.lex_state = 7}, [1288] = {.lex_state = 10}, [1289] = {.lex_state = 10}, [1290] = {.lex_state = 10}, @@ -11374,13 +11401,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1294] = {.lex_state = 10}, [1295] = {.lex_state = 10}, [1296] = {.lex_state = 10}, - [1297] = {.lex_state = 7}, - [1298] = {.lex_state = 7}, + [1297] = {.lex_state = 10}, + [1298] = {.lex_state = 10}, [1299] = {.lex_state = 10}, [1300] = {.lex_state = 10}, - [1301] = {.lex_state = 7}, - [1302] = {.lex_state = 12, .external_lex_state = 2}, - [1303] = {.lex_state = 7}, + [1301] = {.lex_state = 10}, + [1302] = {.lex_state = 10}, + [1303] = {.lex_state = 10}, [1304] = {.lex_state = 10}, [1305] = {.lex_state = 10}, [1306] = {.lex_state = 10}, @@ -11404,16 +11431,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1324] = {.lex_state = 10}, [1325] = {.lex_state = 10}, [1326] = {.lex_state = 10}, - [1327] = {.lex_state = 7}, + [1327] = {.lex_state = 10}, [1328] = {.lex_state = 10}, [1329] = {.lex_state = 10}, - [1330] = {.lex_state = 10}, + [1330] = {.lex_state = 12, .external_lex_state = 2}, [1331] = {.lex_state = 10}, [1332] = {.lex_state = 10}, [1333] = {.lex_state = 10}, [1334] = {.lex_state = 10}, - [1335] = {.lex_state = 10}, - [1336] = {.lex_state = 10}, + [1335] = {.lex_state = 7}, + [1336] = {.lex_state = 7}, [1337] = {.lex_state = 10}, [1338] = {.lex_state = 10}, [1339] = {.lex_state = 10}, @@ -11430,9 +11457,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1350] = {.lex_state = 10}, [1351] = {.lex_state = 10}, [1352] = {.lex_state = 10}, - [1353] = {.lex_state = 7}, - [1354] = {.lex_state = 7}, - [1355] = {.lex_state = 7}, + [1353] = {.lex_state = 10}, + [1354] = {.lex_state = 10}, + [1355] = {.lex_state = 10}, [1356] = {.lex_state = 10}, [1357] = {.lex_state = 10}, [1358] = {.lex_state = 10}, @@ -11444,7 +11471,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1364] = {.lex_state = 10}, [1365] = {.lex_state = 10}, [1366] = {.lex_state = 10}, - [1367] = {.lex_state = 7}, + [1367] = {.lex_state = 10}, [1368] = {.lex_state = 10}, [1369] = {.lex_state = 10}, [1370] = {.lex_state = 10}, @@ -11466,30 +11493,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1386] = {.lex_state = 10}, [1387] = {.lex_state = 10}, [1388] = {.lex_state = 10}, - [1389] = {.lex_state = 10}, + [1389] = {.lex_state = 7}, [1390] = {.lex_state = 10}, - [1391] = {.lex_state = 10}, - [1392] = {.lex_state = 10}, - [1393] = {.lex_state = 10}, - [1394] = {.lex_state = 10}, - [1395] = {.lex_state = 10}, - [1396] = {.lex_state = 10}, - [1397] = {.lex_state = 10}, - [1398] = {.lex_state = 10}, - [1399] = {.lex_state = 10}, - [1400] = {.lex_state = 10}, - [1401] = {.lex_state = 10}, - [1402] = {.lex_state = 10}, - [1403] = {.lex_state = 10}, - [1404] = {.lex_state = 10}, - [1405] = {.lex_state = 10}, - [1406] = {.lex_state = 10}, - [1407] = {.lex_state = 10}, + [1391] = {.lex_state = 14}, + [1392] = {.lex_state = 14}, + [1393] = {.lex_state = 14}, + [1394] = {.lex_state = 14}, + [1395] = {.lex_state = 14}, + [1396] = {.lex_state = 7}, + [1397] = {.lex_state = 7}, + [1398] = {.lex_state = 7}, + [1399] = {.lex_state = 7}, + [1400] = {.lex_state = 7}, + [1401] = {.lex_state = 7}, + [1402] = {.lex_state = 7}, + [1403] = {.lex_state = 7}, + [1404] = {.lex_state = 7}, + [1405] = {.lex_state = 7}, + [1406] = {.lex_state = 7}, + [1407] = {.lex_state = 7}, [1408] = {.lex_state = 7}, [1409] = {.lex_state = 7}, - [1410] = {.lex_state = 10}, + [1410] = {.lex_state = 7}, [1411] = {.lex_state = 7}, - [1412] = {.lex_state = 7}, + [1412] = {.lex_state = 10}, [1413] = {.lex_state = 7}, [1414] = {.lex_state = 7}, [1415] = {.lex_state = 7}, @@ -11500,230 +11527,230 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1420] = {.lex_state = 7}, [1421] = {.lex_state = 7}, [1422] = {.lex_state = 7}, - [1423] = {.lex_state = 7}, - [1424] = {.lex_state = 7}, + [1423] = {.lex_state = 14}, + [1424] = {.lex_state = 14}, [1425] = {.lex_state = 7}, [1426] = {.lex_state = 7}, [1427] = {.lex_state = 7}, - [1428] = {.lex_state = 7}, + [1428] = {.lex_state = 10}, [1429] = {.lex_state = 7}, [1430] = {.lex_state = 7}, - [1431] = {.lex_state = 7}, - [1432] = {.lex_state = 7}, + [1431] = {.lex_state = 10}, + [1432] = {.lex_state = 11, .external_lex_state = 2}, [1433] = {.lex_state = 7}, - [1434] = {.lex_state = 10}, + [1434] = {.lex_state = 7}, [1435] = {.lex_state = 10}, - [1436] = {.lex_state = 14}, - [1437] = {.lex_state = 14}, - [1438] = {.lex_state = 14}, - [1439] = {.lex_state = 7}, - [1440] = {.lex_state = 7}, + [1436] = {.lex_state = 7}, + [1437] = {.lex_state = 7}, + [1438] = {.lex_state = 7}, + [1439] = {.lex_state = 10}, + [1440] = {.lex_state = 10}, [1441] = {.lex_state = 7}, [1442] = {.lex_state = 7}, [1443] = {.lex_state = 7}, - [1444] = {.lex_state = 7}, + [1444] = {.lex_state = 10}, [1445] = {.lex_state = 7}, - [1446] = {.lex_state = 7}, + [1446] = {.lex_state = 10}, [1447] = {.lex_state = 7}, - [1448] = {.lex_state = 7}, + [1448] = {.lex_state = 11, .external_lex_state = 2}, [1449] = {.lex_state = 7}, [1450] = {.lex_state = 7}, [1451] = {.lex_state = 7}, - [1452] = {.lex_state = 14}, - [1453] = {.lex_state = 7}, - [1454] = {.lex_state = 7}, + [1452] = {.lex_state = 7}, + [1453] = {.lex_state = 14}, + [1454] = {.lex_state = 14}, [1455] = {.lex_state = 14}, [1456] = {.lex_state = 7}, [1457] = {.lex_state = 7}, - [1458] = {.lex_state = 7}, - [1459] = {.lex_state = 14}, - [1460] = {.lex_state = 14}, + [1458] = {.lex_state = 10}, + [1459] = {.lex_state = 7}, + [1460] = {.lex_state = 7}, [1461] = {.lex_state = 7}, [1462] = {.lex_state = 7}, - [1463] = {.lex_state = 7}, - [1464] = {.lex_state = 11, .external_lex_state = 2}, + [1463] = {.lex_state = 10}, + [1464] = {.lex_state = 7}, [1465] = {.lex_state = 7}, [1466] = {.lex_state = 10}, [1467] = {.lex_state = 7}, - [1468] = {.lex_state = 7}, + [1468] = {.lex_state = 10}, [1469] = {.lex_state = 7}, [1470] = {.lex_state = 7}, - [1471] = {.lex_state = 11, .external_lex_state = 2}, + [1471] = {.lex_state = 7}, [1472] = {.lex_state = 7}, [1473] = {.lex_state = 7}, [1474] = {.lex_state = 7}, [1475] = {.lex_state = 7}, [1476] = {.lex_state = 7}, - [1477] = {.lex_state = 14}, - [1478] = {.lex_state = 7}, - [1479] = {.lex_state = 14}, - [1480] = {.lex_state = 11, .external_lex_state = 2}, - [1481] = {.lex_state = 11, .external_lex_state = 2}, + [1477] = {.lex_state = 10}, + [1478] = {.lex_state = 10}, + [1479] = {.lex_state = 7}, + [1480] = {.lex_state = 12, .external_lex_state = 2}, + [1481] = {.lex_state = 10}, [1482] = {.lex_state = 7}, [1483] = {.lex_state = 14}, - [1484] = {.lex_state = 11, .external_lex_state = 2}, - [1485] = {.lex_state = 14}, + [1484] = {.lex_state = 14}, + [1485] = {.lex_state = 11, .external_lex_state = 2}, [1486] = {.lex_state = 11, .external_lex_state = 2}, [1487] = {.lex_state = 11, .external_lex_state = 2}, - [1488] = {.lex_state = 7}, - [1489] = {.lex_state = 7}, - [1490] = {.lex_state = 7}, + [1488] = {.lex_state = 14}, + [1489] = {.lex_state = 11, .external_lex_state = 2}, + [1490] = {.lex_state = 14}, [1491] = {.lex_state = 7}, - [1492] = {.lex_state = 7}, + [1492] = {.lex_state = 11, .external_lex_state = 2}, [1493] = {.lex_state = 7}, [1494] = {.lex_state = 7}, [1495] = {.lex_state = 7}, [1496] = {.lex_state = 7}, [1497] = {.lex_state = 7}, - [1498] = {.lex_state = 9}, + [1498] = {.lex_state = 14}, [1499] = {.lex_state = 7}, - [1500] = {.lex_state = 7}, - [1501] = {.lex_state = 14}, - [1502] = {.lex_state = 14}, - [1503] = {.lex_state = 14}, + [1500] = {.lex_state = 14}, + [1501] = {.lex_state = 7}, + [1502] = {.lex_state = 7}, + [1503] = {.lex_state = 7}, [1504] = {.lex_state = 7}, [1505] = {.lex_state = 7}, [1506] = {.lex_state = 7}, [1507] = {.lex_state = 7}, [1508] = {.lex_state = 7}, - [1509] = {.lex_state = 7}, + [1509] = {.lex_state = 14}, [1510] = {.lex_state = 7}, [1511] = {.lex_state = 7}, [1512] = {.lex_state = 7}, - [1513] = {.lex_state = 9}, - [1514] = {.lex_state = 8}, - [1515] = {.lex_state = 11, .external_lex_state = 2}, - [1516] = {.lex_state = 11, .external_lex_state = 2}, - [1517] = {.lex_state = 11, .external_lex_state = 2}, - [1518] = {.lex_state = 9}, - [1519] = {.lex_state = 9}, - [1520] = {.lex_state = 7}, - [1521] = {.lex_state = 11, .external_lex_state = 2}, - [1522] = {.lex_state = 7}, - [1523] = {.lex_state = 9}, + [1513] = {.lex_state = 7}, + [1514] = {.lex_state = 9}, + [1515] = {.lex_state = 7}, + [1516] = {.lex_state = 7}, + [1517] = {.lex_state = 9}, + [1518] = {.lex_state = 11, .external_lex_state = 2}, + [1519] = {.lex_state = 11, .external_lex_state = 2}, + [1520] = {.lex_state = 9}, + [1521] = {.lex_state = 8}, + [1522] = {.lex_state = 11, .external_lex_state = 2}, + [1523] = {.lex_state = 11, .external_lex_state = 2}, [1524] = {.lex_state = 7}, - [1525] = {.lex_state = 14}, - [1526] = {.lex_state = 9}, - [1527] = {.lex_state = 7}, - [1528] = {.lex_state = 8}, - [1529] = {.lex_state = 9}, - [1530] = {.lex_state = 7}, - [1531] = {.lex_state = 7}, + [1525] = {.lex_state = 9}, + [1526] = {.lex_state = 7}, + [1527] = {.lex_state = 9}, + [1528] = {.lex_state = 9}, + [1529] = {.lex_state = 14}, + [1530] = {.lex_state = 14}, + [1531] = {.lex_state = 14}, [1532] = {.lex_state = 14}, - [1533] = {.lex_state = 14}, + [1533] = {.lex_state = 9}, [1534] = {.lex_state = 8}, [1535] = {.lex_state = 14}, - [1536] = {.lex_state = 7}, - [1537] = {.lex_state = 14}, - [1538] = {.lex_state = 9}, - [1539] = {.lex_state = 9}, - [1540] = {.lex_state = 9}, - [1541] = {.lex_state = 14}, + [1536] = {.lex_state = 9}, + [1537] = {.lex_state = 8}, + [1538] = {.lex_state = 7}, + [1539] = {.lex_state = 7}, + [1540] = {.lex_state = 14}, + [1541] = {.lex_state = 7}, [1542] = {.lex_state = 9}, - [1543] = {.lex_state = 9}, - [1544] = {.lex_state = 14}, - [1545] = {.lex_state = 8}, + [1543] = {.lex_state = 8}, + [1544] = {.lex_state = 9}, + [1545] = {.lex_state = 7}, [1546] = {.lex_state = 7}, - [1547] = {.lex_state = 8}, - [1548] = {.lex_state = 8}, - [1549] = {.lex_state = 8}, - [1550] = {.lex_state = 8}, - [1551] = {.lex_state = 8}, + [1547] = {.lex_state = 14}, + [1548] = {.lex_state = 9}, + [1549] = {.lex_state = 7}, + [1550] = {.lex_state = 9}, + [1551] = {.lex_state = 7}, [1552] = {.lex_state = 8}, - [1553] = {.lex_state = 8}, - [1554] = {.lex_state = 8}, - [1555] = {.lex_state = 8}, + [1553] = {.lex_state = 7}, + [1554] = {.lex_state = 7}, + [1555] = {.lex_state = 7}, [1556] = {.lex_state = 7}, - [1557] = {.lex_state = 7}, + [1557] = {.lex_state = 8}, [1558] = {.lex_state = 7}, - [1559] = {.lex_state = 7}, + [1559] = {.lex_state = 8}, [1560] = {.lex_state = 7}, [1561] = {.lex_state = 7}, - [1562] = {.lex_state = 7}, - [1563] = {.lex_state = 8}, + [1562] = {.lex_state = 8}, + [1563] = {.lex_state = 7}, [1564] = {.lex_state = 7}, - [1565] = {.lex_state = 7}, + [1565] = {.lex_state = 8}, [1566] = {.lex_state = 7}, [1567] = {.lex_state = 7}, - [1568] = {.lex_state = 7}, - [1569] = {.lex_state = 7}, + [1568] = {.lex_state = 8}, + [1569] = {.lex_state = 8}, [1570] = {.lex_state = 8}, [1571] = {.lex_state = 8}, [1572] = {.lex_state = 7}, [1573] = {.lex_state = 8}, [1574] = {.lex_state = 8}, [1575] = {.lex_state = 8}, - [1576] = {.lex_state = 7}, + [1576] = {.lex_state = 8}, [1577] = {.lex_state = 7}, - [1578] = {.lex_state = 7}, - [1579] = {.lex_state = 20}, - [1580] = {.lex_state = 20}, - [1581] = {.lex_state = 8}, + [1578] = {.lex_state = 8}, + [1579] = {.lex_state = 7}, + [1580] = {.lex_state = 7}, + [1581] = {.lex_state = 7}, [1582] = {.lex_state = 7}, - [1583] = {.lex_state = 7}, - [1584] = {.lex_state = 7}, + [1583] = {.lex_state = 8}, + [1584] = {.lex_state = 14}, [1585] = {.lex_state = 7}, - [1586] = {.lex_state = 8}, + [1586] = {.lex_state = 7}, [1587] = {.lex_state = 7}, - [1588] = {.lex_state = 7}, - [1589] = {.lex_state = 8}, - [1590] = {.lex_state = 20}, - [1591] = {.lex_state = 7}, - [1592] = {.lex_state = 8}, + [1588] = {.lex_state = 20}, + [1589] = {.lex_state = 9}, + [1590] = {.lex_state = 14}, + [1591] = {.lex_state = 8}, + [1592] = {.lex_state = 7}, [1593] = {.lex_state = 7}, [1594] = {.lex_state = 7}, - [1595] = {.lex_state = 7}, - [1596] = {.lex_state = 7}, + [1595] = {.lex_state = 8}, + [1596] = {.lex_state = 20}, [1597] = {.lex_state = 7}, [1598] = {.lex_state = 8}, - [1599] = {.lex_state = 7}, + [1599] = {.lex_state = 8}, [1600] = {.lex_state = 8}, - [1601] = {.lex_state = 7}, - [1602] = {.lex_state = 7}, - [1603] = {.lex_state = 14}, - [1604] = {.lex_state = 7}, - [1605] = {.lex_state = 7}, - [1606] = {.lex_state = 8}, - [1607] = {.lex_state = 20}, - [1608] = {.lex_state = 7}, - [1609] = {.lex_state = 7}, - [1610] = {.lex_state = 20}, - [1611] = {.lex_state = 20}, + [1601] = {.lex_state = 20}, + [1602] = {.lex_state = 20}, + [1603] = {.lex_state = 7}, + [1604] = {.lex_state = 8}, + [1605] = {.lex_state = 8}, + [1606] = {.lex_state = 7}, + [1607] = {.lex_state = 7}, + [1608] = {.lex_state = 8}, + [1609] = {.lex_state = 8}, + [1610] = {.lex_state = 7}, + [1611] = {.lex_state = 14}, [1612] = {.lex_state = 7}, - [1613] = {.lex_state = 7}, + [1613] = {.lex_state = 8}, [1614] = {.lex_state = 8}, - [1615] = {.lex_state = 8}, + [1615] = {.lex_state = 20}, [1616] = {.lex_state = 8}, - [1617] = {.lex_state = 8}, - [1618] = {.lex_state = 8}, - [1619] = {.lex_state = 7}, + [1617] = {.lex_state = 20}, + [1618] = {.lex_state = 7}, + [1619] = {.lex_state = 20}, [1620] = {.lex_state = 7}, [1621] = {.lex_state = 8}, - [1622] = {.lex_state = 8}, + [1622] = {.lex_state = 20}, [1623] = {.lex_state = 8}, - [1624] = {.lex_state = 7}, - [1625] = {.lex_state = 8}, - [1626] = {.lex_state = 8}, + [1624] = {.lex_state = 20}, + [1625] = {.lex_state = 7}, + [1626] = {.lex_state = 20}, [1627] = {.lex_state = 8}, - [1628] = {.lex_state = 9}, - [1629] = {.lex_state = 7}, - [1630] = {.lex_state = 14}, + [1628] = {.lex_state = 8}, + [1629] = {.lex_state = 8}, + [1630] = {.lex_state = 8}, [1631] = {.lex_state = 7}, - [1632] = {.lex_state = 8}, - [1633] = {.lex_state = 20}, - [1634] = {.lex_state = 20}, - [1635] = {.lex_state = 20}, + [1632] = {.lex_state = 7}, + [1633] = {.lex_state = 7}, + [1634] = {.lex_state = 8}, + [1635] = {.lex_state = 7}, [1636] = {.lex_state = 20}, - [1637] = {.lex_state = 20}, - [1638] = {.lex_state = 14}, - [1639] = {.lex_state = 20}, - [1640] = {.lex_state = 7}, - [1641] = {.lex_state = 8}, - [1642] = {.lex_state = 8}, - [1643] = {.lex_state = 8}, - [1644] = {.lex_state = 8}, - [1645] = {.lex_state = 8}, - [1646] = {.lex_state = 8}, + [1637] = {.lex_state = 7}, + [1638] = {.lex_state = 7}, + [1639] = {.lex_state = 7}, + [1640] = {.lex_state = 8}, + [1641] = {.lex_state = 7}, + [1642] = {.lex_state = 7}, + [1643] = {.lex_state = 7}, + [1644] = {.lex_state = 7}, + [1645] = {.lex_state = 7}, + [1646] = {.lex_state = 20}, [1647] = {.lex_state = 8}, [1648] = {.lex_state = 8}, [1649] = {.lex_state = 8}, @@ -11731,20 +11758,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1651] = {.lex_state = 8}, [1652] = {.lex_state = 8}, [1653] = {.lex_state = 8}, - [1654] = {.lex_state = 8}, + [1654] = {.lex_state = 7}, [1655] = {.lex_state = 8}, - [1656] = {.lex_state = 8}, + [1656] = {.lex_state = 7}, [1657] = {.lex_state = 8}, - [1658] = {.lex_state = 7}, + [1658] = {.lex_state = 8}, [1659] = {.lex_state = 8}, - [1660] = {.lex_state = 8}, + [1660] = {.lex_state = 7}, [1661] = {.lex_state = 8}, [1662] = {.lex_state = 8}, [1663] = {.lex_state = 7}, - [1664] = {.lex_state = 7}, + [1664] = {.lex_state = 8}, [1665] = {.lex_state = 8}, [1666] = {.lex_state = 8}, - [1667] = {.lex_state = 14}, + [1667] = {.lex_state = 8}, [1668] = {.lex_state = 8}, [1669] = {.lex_state = 8}, [1670] = {.lex_state = 8}, @@ -11752,26 +11779,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1672] = {.lex_state = 8}, [1673] = {.lex_state = 8}, [1674] = {.lex_state = 8}, - [1675] = {.lex_state = 7}, + [1675] = {.lex_state = 8}, [1676] = {.lex_state = 8}, [1677] = {.lex_state = 8}, [1678] = {.lex_state = 8}, - [1679] = {.lex_state = 7}, + [1679] = {.lex_state = 8}, [1680] = {.lex_state = 8}, [1681] = {.lex_state = 8}, - [1682] = {.lex_state = 8}, + [1682] = {.lex_state = 7}, [1683] = {.lex_state = 8}, [1684] = {.lex_state = 8}, [1685] = {.lex_state = 8}, [1686] = {.lex_state = 8}, - [1687] = {.lex_state = 7}, + [1687] = {.lex_state = 8}, [1688] = {.lex_state = 8}, [1689] = {.lex_state = 8}, [1690] = {.lex_state = 8}, [1691] = {.lex_state = 8}, [1692] = {.lex_state = 8}, [1693] = {.lex_state = 8}, - [1694] = {.lex_state = 8}, + [1694] = {.lex_state = 7}, [1695] = {.lex_state = 8}, [1696] = {.lex_state = 8}, [1697] = {.lex_state = 8}, @@ -11785,94 +11812,94 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1705] = {.lex_state = 7}, [1706] = {.lex_state = 8}, [1707] = {.lex_state = 8}, - [1708] = {.lex_state = 8}, + [1708] = {.lex_state = 7}, [1709] = {.lex_state = 8}, [1710] = {.lex_state = 8}, - [1711] = {.lex_state = 8}, + [1711] = {.lex_state = 7}, [1712] = {.lex_state = 8}, - [1713] = {.lex_state = 8}, - [1714] = {.lex_state = 8}, - [1715] = {.lex_state = 8}, - [1716] = {.lex_state = 8}, - [1717] = {.lex_state = 8}, + [1713] = {.lex_state = 7}, + [1714] = {.lex_state = 7}, + [1715] = {.lex_state = 7}, + [1716] = {.lex_state = 7}, + [1717] = {.lex_state = 7}, [1718] = {.lex_state = 8}, [1719] = {.lex_state = 8}, [1720] = {.lex_state = 8}, [1721] = {.lex_state = 8}, [1722] = {.lex_state = 8}, - [1723] = {.lex_state = 8}, + [1723] = {.lex_state = 7}, [1724] = {.lex_state = 8}, [1725] = {.lex_state = 8}, - [1726] = {.lex_state = 8}, - [1727] = {.lex_state = 8}, - [1728] = {.lex_state = 7}, + [1726] = {.lex_state = 7}, + [1727] = {.lex_state = 7}, + [1728] = {.lex_state = 8}, [1729] = {.lex_state = 8}, [1730] = {.lex_state = 8}, - [1731] = {.lex_state = 8}, + [1731] = {.lex_state = 7}, [1732] = {.lex_state = 8}, - [1733] = {.lex_state = 7}, + [1733] = {.lex_state = 8}, [1734] = {.lex_state = 8}, - [1735] = {.lex_state = 8}, + [1735] = {.lex_state = 7}, [1736] = {.lex_state = 8}, - [1737] = {.lex_state = 7}, + [1737] = {.lex_state = 8}, [1738] = {.lex_state = 7}, - [1739] = {.lex_state = 8}, + [1739] = {.lex_state = 7}, [1740] = {.lex_state = 8}, - [1741] = {.lex_state = 8}, + [1741] = {.lex_state = 7}, [1742] = {.lex_state = 7}, - [1743] = {.lex_state = 8}, - [1744] = {.lex_state = 8}, + [1743] = {.lex_state = 7}, + [1744] = {.lex_state = 7}, [1745] = {.lex_state = 7}, [1746] = {.lex_state = 7}, [1747] = {.lex_state = 7}, - [1748] = {.lex_state = 8}, - [1749] = {.lex_state = 8}, + [1748] = {.lex_state = 7}, + [1749] = {.lex_state = 7}, [1750] = {.lex_state = 7}, - [1751] = {.lex_state = 8}, - [1752] = {.lex_state = 8}, - [1753] = {.lex_state = 7}, + [1751] = {.lex_state = 7}, + [1752] = {.lex_state = 7}, + [1753] = {.lex_state = 8}, [1754] = {.lex_state = 8}, [1755] = {.lex_state = 7}, [1756] = {.lex_state = 7}, - [1757] = {.lex_state = 8}, + [1757] = {.lex_state = 7}, [1758] = {.lex_state = 7}, [1759] = {.lex_state = 7}, - [1760] = {.lex_state = 8}, + [1760] = {.lex_state = 7}, [1761] = {.lex_state = 7}, - [1762] = {.lex_state = 8}, + [1762] = {.lex_state = 7}, [1763] = {.lex_state = 7}, [1764] = {.lex_state = 7}, - [1765] = {.lex_state = 8}, + [1765] = {.lex_state = 7}, [1766] = {.lex_state = 7}, [1767] = {.lex_state = 7}, - [1768] = {.lex_state = 8}, - [1769] = {.lex_state = 7}, - [1770] = {.lex_state = 8}, + [1768] = {.lex_state = 7}, + [1769] = {.lex_state = 8}, + [1770] = {.lex_state = 7}, [1771] = {.lex_state = 7}, [1772] = {.lex_state = 7}, - [1773] = {.lex_state = 8}, + [1773] = {.lex_state = 7}, [1774] = {.lex_state = 7}, [1775] = {.lex_state = 7}, [1776] = {.lex_state = 7}, [1777] = {.lex_state = 7}, - [1778] = {.lex_state = 7}, - [1779] = {.lex_state = 7}, - [1780] = {.lex_state = 7}, - [1781] = {.lex_state = 7}, + [1778] = {.lex_state = 8}, + [1779] = {.lex_state = 8}, + [1780] = {.lex_state = 8}, + [1781] = {.lex_state = 8}, [1782] = {.lex_state = 7}, [1783] = {.lex_state = 7}, [1784] = {.lex_state = 7}, - [1785] = {.lex_state = 7}, + [1785] = {.lex_state = 8}, [1786] = {.lex_state = 7}, - [1787] = {.lex_state = 8}, + [1787] = {.lex_state = 7}, [1788] = {.lex_state = 8}, - [1789] = {.lex_state = 7}, + [1789] = {.lex_state = 8}, [1790] = {.lex_state = 7}, [1791] = {.lex_state = 7}, [1792] = {.lex_state = 7}, - [1793] = {.lex_state = 7}, - [1794] = {.lex_state = 7}, - [1795] = {.lex_state = 7}, + [1793] = {.lex_state = 8}, + [1794] = {.lex_state = 8}, + [1795] = {.lex_state = 8}, [1796] = {.lex_state = 7}, [1797] = {.lex_state = 7}, [1798] = {.lex_state = 7}, @@ -11884,56 +11911,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1804] = {.lex_state = 7}, [1805] = {.lex_state = 7}, [1806] = {.lex_state = 8}, - [1807] = {.lex_state = 7}, + [1807] = {.lex_state = 8}, [1808] = {.lex_state = 7}, [1809] = {.lex_state = 7}, [1810] = {.lex_state = 7}, [1811] = {.lex_state = 7}, - [1812] = {.lex_state = 7}, + [1812] = {.lex_state = 8}, [1813] = {.lex_state = 7}, [1814] = {.lex_state = 7}, - [1815] = {.lex_state = 7}, - [1816] = {.lex_state = 7}, - [1817] = {.lex_state = 7}, - [1818] = {.lex_state = 7}, - [1819] = {.lex_state = 7}, - [1820] = {.lex_state = 7}, - [1821] = {.lex_state = 7}, + [1815] = {.lex_state = 8}, + [1816] = {.lex_state = 8}, + [1817] = {.lex_state = 8}, + [1818] = {.lex_state = 8}, + [1819] = {.lex_state = 8}, + [1820] = {.lex_state = 8}, + [1821] = {.lex_state = 8}, [1822] = {.lex_state = 8}, [1823] = {.lex_state = 8}, [1824] = {.lex_state = 8}, [1825] = {.lex_state = 8}, [1826] = {.lex_state = 8}, [1827] = {.lex_state = 8}, - [1828] = {.lex_state = 7}, - [1829] = {.lex_state = 8}, - [1830] = {.lex_state = 7}, + [1828] = {.lex_state = 8}, + [1829] = {.lex_state = 14}, + [1830] = {.lex_state = 8}, [1831] = {.lex_state = 8}, [1832] = {.lex_state = 8}, [1833] = {.lex_state = 8}, - [1834] = {.lex_state = 7}, + [1834] = {.lex_state = 8}, [1835] = {.lex_state = 8}, - [1836] = {.lex_state = 8}, + [1836] = {.lex_state = 7}, [1837] = {.lex_state = 7}, [1838] = {.lex_state = 8}, [1839] = {.lex_state = 8}, - [1840] = {.lex_state = 7}, - [1841] = {.lex_state = 7}, + [1840] = {.lex_state = 8}, + [1841] = {.lex_state = 8}, [1842] = {.lex_state = 8}, - [1843] = {.lex_state = 8}, - [1844] = {.lex_state = 8}, - [1845] = {.lex_state = 7}, - [1846] = {.lex_state = 7}, - [1847] = {.lex_state = 7}, - [1848] = {.lex_state = 7}, + [1843] = {.lex_state = 7}, + [1844] = {.lex_state = 7}, + [1845] = {.lex_state = 8}, + [1846] = {.lex_state = 8}, + [1847] = {.lex_state = 8}, + [1848] = {.lex_state = 8}, [1849] = {.lex_state = 8}, - [1850] = {.lex_state = 7}, - [1851] = {.lex_state = 7}, - [1852] = {.lex_state = 7}, + [1850] = {.lex_state = 8}, + [1851] = {.lex_state = 8}, + [1852] = {.lex_state = 8}, [1853] = {.lex_state = 8}, - [1854] = {.lex_state = 7}, + [1854] = {.lex_state = 8}, [1855] = {.lex_state = 7}, - [1856] = {.lex_state = 7}, + [1856] = {.lex_state = 8}, [1857] = {.lex_state = 7}, [1858] = {.lex_state = 7}, [1859] = {.lex_state = 7}, @@ -11942,12 +11969,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1862] = {.lex_state = 7}, [1863] = {.lex_state = 7}, [1864] = {.lex_state = 7}, - [1865] = {.lex_state = 7}, + [1865] = {.lex_state = 14}, [1866] = {.lex_state = 7}, [1867] = {.lex_state = 7}, - [1868] = {.lex_state = 14}, + [1868] = {.lex_state = 7}, [1869] = {.lex_state = 7}, - [1870] = {.lex_state = 8}, + [1870] = {.lex_state = 7}, [1871] = {.lex_state = 7}, [1872] = {.lex_state = 7}, [1873] = {.lex_state = 7}, @@ -11956,17 +11983,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1876] = {.lex_state = 7}, [1877] = {.lex_state = 7}, [1878] = {.lex_state = 7}, - [1879] = {.lex_state = 7}, + [1879] = {.lex_state = 8}, [1880] = {.lex_state = 7}, - [1881] = {.lex_state = 8}, + [1881] = {.lex_state = 7}, [1882] = {.lex_state = 7}, [1883] = {.lex_state = 7}, - [1884] = {.lex_state = 14}, - [1885] = {.lex_state = 14}, - [1886] = {.lex_state = 14}, - [1887] = {.lex_state = 14}, - [1888] = {.lex_state = 14}, - [1889] = {.lex_state = 14}, + [1884] = {.lex_state = 8}, + [1885] = {.lex_state = 7}, + [1886] = {.lex_state = 7}, + [1887] = {.lex_state = 7}, + [1888] = {.lex_state = 7}, + [1889] = {.lex_state = 7}, [1890] = {.lex_state = 14}, [1891] = {.lex_state = 14}, [1892] = {.lex_state = 14}, @@ -11987,128 +12014,128 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1907] = {.lex_state = 14}, [1908] = {.lex_state = 14}, [1909] = {.lex_state = 14}, - [1910] = {.lex_state = 27}, - [1911] = {.lex_state = 27}, - [1912] = {.lex_state = 16}, - [1913] = {.lex_state = 16}, - [1914] = {.lex_state = 16}, - [1915] = {.lex_state = 16}, + [1910] = {.lex_state = 14}, + [1911] = {.lex_state = 14}, + [1912] = {.lex_state = 14}, + [1913] = {.lex_state = 14}, + [1914] = {.lex_state = 14}, + [1915] = {.lex_state = 14}, [1916] = {.lex_state = 16}, - [1917] = {.lex_state = 16}, - [1918] = {.lex_state = 16}, + [1917] = {.lex_state = 27}, + [1918] = {.lex_state = 27}, [1919] = {.lex_state = 16}, [1920] = {.lex_state = 16}, [1921] = {.lex_state = 16}, - [1922] = {.lex_state = 27}, - [1923] = {.lex_state = 27}, - [1924] = {.lex_state = 27}, + [1922] = {.lex_state = 16}, + [1923] = {.lex_state = 16}, + [1924] = {.lex_state = 16}, [1925] = {.lex_state = 16}, [1926] = {.lex_state = 16}, - [1927] = {.lex_state = 16}, + [1927] = {.lex_state = 27}, [1928] = {.lex_state = 27}, - [1929] = {.lex_state = 14}, - [1930] = {.lex_state = 14}, - [1931] = {.lex_state = 14}, - [1932] = {.lex_state = 14}, - [1933] = {.lex_state = 14}, - [1934] = {.lex_state = 14}, + [1929] = {.lex_state = 16}, + [1930] = {.lex_state = 27}, + [1931] = {.lex_state = 16}, + [1932] = {.lex_state = 27}, + [1933] = {.lex_state = 16}, + [1934] = {.lex_state = 16}, [1935] = {.lex_state = 14}, [1936] = {.lex_state = 14}, - [1937] = {.lex_state = 27}, - [1938] = {.lex_state = 16}, + [1937] = {.lex_state = 14}, + [1938] = {.lex_state = 14}, [1939] = {.lex_state = 14}, [1940] = {.lex_state = 14}, - [1941] = {.lex_state = 14}, - [1942] = {.lex_state = 16}, + [1941] = {.lex_state = 27}, + [1942] = {.lex_state = 14}, [1943] = {.lex_state = 14}, [1944] = {.lex_state = 14}, - [1945] = {.lex_state = 16}, - [1946] = {.lex_state = 27}, - [1947] = {.lex_state = 14}, - [1948] = {.lex_state = 27}, - [1949] = {.lex_state = 14}, - [1950] = {.lex_state = 27}, + [1945] = {.lex_state = 14}, + [1946] = {.lex_state = 14}, + [1947] = {.lex_state = 16}, + [1948] = {.lex_state = 14}, + [1949] = {.lex_state = 16}, + [1950] = {.lex_state = 14}, [1951] = {.lex_state = 27}, - [1952] = {.lex_state = 14}, + [1952] = {.lex_state = 16}, [1953] = {.lex_state = 27}, - [1954] = {.lex_state = 16}, + [1954] = {.lex_state = 27}, [1955] = {.lex_state = 14}, [1956] = {.lex_state = 27}, - [1957] = {.lex_state = 27}, - [1958] = {.lex_state = 16}, - [1959] = {.lex_state = 27}, + [1957] = {.lex_state = 14}, + [1958] = {.lex_state = 27}, + [1959] = {.lex_state = 14}, [1960] = {.lex_state = 14}, [1961] = {.lex_state = 14}, [1962] = {.lex_state = 27}, - [1963] = {.lex_state = 14}, + [1963] = {.lex_state = 27}, [1964] = {.lex_state = 27}, [1965] = {.lex_state = 27}, - [1966] = {.lex_state = 16}, + [1966] = {.lex_state = 14}, [1967] = {.lex_state = 27}, [1968] = {.lex_state = 27}, - [1969] = {.lex_state = 27}, + [1969] = {.lex_state = 16}, [1970] = {.lex_state = 27}, - [1971] = {.lex_state = 14}, - [1972] = {.lex_state = 27}, + [1971] = {.lex_state = 27}, + [1972] = {.lex_state = 14}, [1973] = {.lex_state = 27}, - [1974] = {.lex_state = 27}, + [1974] = {.lex_state = 16}, [1975] = {.lex_state = 27}, - [1976] = {.lex_state = 27}, + [1976] = {.lex_state = 16}, [1977] = {.lex_state = 27}, - [1978] = {.lex_state = 27}, + [1978] = {.lex_state = 14}, [1979] = {.lex_state = 27}, - [1980] = {.lex_state = 16}, + [1980] = {.lex_state = 27}, [1981] = {.lex_state = 27}, [1982] = {.lex_state = 27}, [1983] = {.lex_state = 27}, - [1984] = {.lex_state = 27}, + [1984] = {.lex_state = 14}, [1985] = {.lex_state = 27}, [1986] = {.lex_state = 27}, [1987] = {.lex_state = 27}, - [1988] = {.lex_state = 14}, - [1989] = {.lex_state = 14}, + [1988] = {.lex_state = 27}, + [1989] = {.lex_state = 27}, [1990] = {.lex_state = 14}, [1991] = {.lex_state = 27}, - [1992] = {.lex_state = 27}, + [1992] = {.lex_state = 14}, [1993] = {.lex_state = 27}, [1994] = {.lex_state = 27}, - [1995] = {.lex_state = 14}, + [1995] = {.lex_state = 27}, [1996] = {.lex_state = 27}, [1997] = {.lex_state = 27}, [1998] = {.lex_state = 27}, [1999] = {.lex_state = 27}, [2000] = {.lex_state = 27}, - [2001] = {.lex_state = 14}, + [2001] = {.lex_state = 16}, [2002] = {.lex_state = 27}, [2003] = {.lex_state = 27}, - [2004] = {.lex_state = 27}, + [2004] = {.lex_state = 14}, [2005] = {.lex_state = 27}, [2006] = {.lex_state = 27}, [2007] = {.lex_state = 14}, - [2008] = {.lex_state = 16}, - [2009] = {.lex_state = 14}, - [2010] = {.lex_state = 16}, - [2011] = {.lex_state = 16}, - [2012] = {.lex_state = 16}, - [2013] = {.lex_state = 16}, + [2008] = {.lex_state = 27}, + [2009] = {.lex_state = 27}, + [2010] = {.lex_state = 27}, + [2011] = {.lex_state = 14}, + [2012] = {.lex_state = 27}, + [2013] = {.lex_state = 27}, [2014] = {.lex_state = 16}, - [2015] = {.lex_state = 16}, - [2016] = {.lex_state = 27}, - [2017] = {.lex_state = 27}, - [2018] = {.lex_state = 16}, - [2019] = {.lex_state = 27}, + [2015] = {.lex_state = 14}, + [2016] = {.lex_state = 16}, + [2017] = {.lex_state = 16}, + [2018] = {.lex_state = 27}, + [2019] = {.lex_state = 16}, [2020] = {.lex_state = 16}, - [2021] = {.lex_state = 16}, + [2021] = {.lex_state = 27}, [2022] = {.lex_state = 17}, [2023] = {.lex_state = 16}, [2024] = {.lex_state = 16}, [2025] = {.lex_state = 16}, - [2026] = {.lex_state = 14}, - [2027] = {.lex_state = 14}, - [2028] = {.lex_state = 14}, - [2029] = {.lex_state = 14}, - [2030] = {.lex_state = 14}, - [2031] = {.lex_state = 14}, + [2026] = {.lex_state = 16}, + [2027] = {.lex_state = 16}, + [2028] = {.lex_state = 16}, + [2029] = {.lex_state = 16}, + [2030] = {.lex_state = 16}, + [2031] = {.lex_state = 27}, [2032] = {.lex_state = 14}, [2033] = {.lex_state = 14}, [2034] = {.lex_state = 14}, @@ -12119,183 +12146,183 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2039] = {.lex_state = 14}, [2040] = {.lex_state = 14}, [2041] = {.lex_state = 14}, - [2042] = {.lex_state = 27}, + [2042] = {.lex_state = 14}, [2043] = {.lex_state = 14}, [2044] = {.lex_state = 14}, [2045] = {.lex_state = 14}, [2046] = {.lex_state = 14}, [2047] = {.lex_state = 14}, [2048] = {.lex_state = 14}, - [2049] = {.lex_state = 21}, - [2050] = {.lex_state = 16}, - [2051] = {.lex_state = 21}, + [2049] = {.lex_state = 14}, + [2050] = {.lex_state = 14}, + [2051] = {.lex_state = 16}, [2052] = {.lex_state = 27}, - [2053] = {.lex_state = 14}, + [2053] = {.lex_state = 27}, [2054] = {.lex_state = 14}, - [2055] = {.lex_state = 16}, - [2056] = {.lex_state = 14}, - [2057] = {.lex_state = 14}, - [2058] = {.lex_state = 27}, - [2059] = {.lex_state = 14}, - [2060] = {.lex_state = 16}, - [2061] = {.lex_state = 17}, - [2062] = {.lex_state = 27}, - [2063] = {.lex_state = 17}, + [2055] = {.lex_state = 21}, + [2056] = {.lex_state = 23}, + [2057] = {.lex_state = 16}, + [2058] = {.lex_state = 14}, + [2059] = {.lex_state = 16}, + [2060] = {.lex_state = 27}, + [2061] = {.lex_state = 27}, + [2062] = {.lex_state = 14}, + [2063] = {.lex_state = 14}, [2064] = {.lex_state = 17}, - [2065] = {.lex_state = 14}, - [2066] = {.lex_state = 14}, + [2065] = {.lex_state = 17}, + [2066] = {.lex_state = 16}, [2067] = {.lex_state = 14}, - [2068] = {.lex_state = 23}, + [2068] = {.lex_state = 17}, [2069] = {.lex_state = 14}, - [2070] = {.lex_state = 16}, - [2071] = {.lex_state = 16}, - [2072] = {.lex_state = 16}, - [2073] = {.lex_state = 27}, - [2074] = {.lex_state = 14}, + [2070] = {.lex_state = 14}, + [2071] = {.lex_state = 14}, + [2072] = {.lex_state = 17}, + [2073] = {.lex_state = 21}, + [2074] = {.lex_state = 27}, [2075] = {.lex_state = 14}, - [2076] = {.lex_state = 21}, - [2077] = {.lex_state = 16}, - [2078] = {.lex_state = 21}, - [2079] = {.lex_state = 16}, + [2076] = {.lex_state = 14}, + [2077] = {.lex_state = 23}, + [2078] = {.lex_state = 16}, + [2079] = {.lex_state = 21}, [2080] = {.lex_state = 16}, - [2081] = {.lex_state = 16}, - [2082] = {.lex_state = 23}, - [2083] = {.lex_state = 17}, + [2081] = {.lex_state = 21}, + [2082] = {.lex_state = 16}, + [2083] = {.lex_state = 16}, [2084] = {.lex_state = 16}, [2085] = {.lex_state = 14}, - [2086] = {.lex_state = 27}, - [2087] = {.lex_state = 27}, - [2088] = {.lex_state = 27}, - [2089] = {.lex_state = 27}, + [2086] = {.lex_state = 14}, + [2087] = {.lex_state = 16}, + [2088] = {.lex_state = 14}, + [2089] = {.lex_state = 14}, [2090] = {.lex_state = 27}, [2091] = {.lex_state = 27}, [2092] = {.lex_state = 27}, [2093] = {.lex_state = 27}, - [2094] = {.lex_state = 16}, + [2094] = {.lex_state = 27}, [2095] = {.lex_state = 27}, [2096] = {.lex_state = 27}, - [2097] = {.lex_state = 27}, - [2098] = {.lex_state = 27}, + [2097] = {.lex_state = 23}, + [2098] = {.lex_state = 16}, [2099] = {.lex_state = 27}, - [2100] = {.lex_state = 27}, - [2101] = {.lex_state = 14}, + [2100] = {.lex_state = 10}, + [2101] = {.lex_state = 27}, [2102] = {.lex_state = 17}, [2103] = {.lex_state = 27}, - [2104] = {.lex_state = 23}, - [2105] = {.lex_state = 27}, - [2106] = {.lex_state = 27}, - [2107] = {.lex_state = 27}, + [2104] = {.lex_state = 27}, + [2105] = {.lex_state = 14}, + [2106] = {.lex_state = 14}, + [2107] = {.lex_state = 16}, [2108] = {.lex_state = 27}, [2109] = {.lex_state = 27}, [2110] = {.lex_state = 27}, [2111] = {.lex_state = 27}, [2112] = {.lex_state = 27}, [2113] = {.lex_state = 27}, - [2114] = {.lex_state = 23}, + [2114] = {.lex_state = 27}, [2115] = {.lex_state = 27}, - [2116] = {.lex_state = 27}, - [2117] = {.lex_state = 27}, + [2116] = {.lex_state = 16}, + [2117] = {.lex_state = 14}, [2118] = {.lex_state = 27}, - [2119] = {.lex_state = 27}, + [2119] = {.lex_state = 14}, [2120] = {.lex_state = 27}, - [2121] = {.lex_state = 16}, - [2122] = {.lex_state = 23}, + [2121] = {.lex_state = 27}, + [2122] = {.lex_state = 27}, [2123] = {.lex_state = 27}, [2124] = {.lex_state = 27}, - [2125] = {.lex_state = 14}, - [2126] = {.lex_state = 10}, - [2127] = {.lex_state = 14}, - [2128] = {.lex_state = 16}, + [2125] = {.lex_state = 27}, + [2126] = {.lex_state = 27}, + [2127] = {.lex_state = 16}, + [2128] = {.lex_state = 27}, [2129] = {.lex_state = 27}, - [2130] = {.lex_state = 27}, - [2131] = {.lex_state = 27}, - [2132] = {.lex_state = 14}, + [2130] = {.lex_state = 16}, + [2131] = {.lex_state = 14}, + [2132] = {.lex_state = 27}, [2133] = {.lex_state = 27}, [2134] = {.lex_state = 23}, [2135] = {.lex_state = 27}, - [2136] = {.lex_state = 10}, - [2137] = {.lex_state = 17}, - [2138] = {.lex_state = 14}, - [2139] = {.lex_state = 16}, - [2140] = {.lex_state = 14}, - [2141] = {.lex_state = 14}, - [2142] = {.lex_state = 14}, + [2136] = {.lex_state = 27}, + [2137] = {.lex_state = 23}, + [2138] = {.lex_state = 23}, + [2139] = {.lex_state = 27}, + [2140] = {.lex_state = 27}, + [2141] = {.lex_state = 27}, + [2142] = {.lex_state = 16}, [2143] = {.lex_state = 14}, [2144] = {.lex_state = 14}, - [2145] = {.lex_state = 27}, + [2145] = {.lex_state = 23}, [2146] = {.lex_state = 14}, - [2147] = {.lex_state = 6}, + [2147] = {.lex_state = 16}, [2148] = {.lex_state = 14}, [2149] = {.lex_state = 14}, [2150] = {.lex_state = 14}, - [2151] = {.lex_state = 70}, - [2152] = {.lex_state = 14}, - [2153] = {.lex_state = 17}, - [2154] = {.lex_state = 10}, + [2151] = {.lex_state = 14}, + [2152] = {.lex_state = 16}, + [2153] = {.lex_state = 10}, + [2154] = {.lex_state = 14}, [2155] = {.lex_state = 17}, - [2156] = {.lex_state = 14}, - [2157] = {.lex_state = 14}, - [2158] = {.lex_state = 27}, - [2159] = {.lex_state = 14}, + [2156] = {.lex_state = 16}, + [2157] = {.lex_state = 70}, + [2158] = {.lex_state = 17}, + [2159] = {.lex_state = 17}, [2160] = {.lex_state = 17}, - [2161] = {.lex_state = 6}, - [2162] = {.lex_state = 23}, + [2161] = {.lex_state = 17}, + [2162] = {.lex_state = 16}, [2163] = {.lex_state = 14}, [2164] = {.lex_state = 14}, [2165] = {.lex_state = 14}, [2166] = {.lex_state = 14}, - [2167] = {.lex_state = 14}, + [2167] = {.lex_state = 6}, [2168] = {.lex_state = 14}, [2169] = {.lex_state = 14}, - [2170] = {.lex_state = 10}, - [2171] = {.lex_state = 27}, + [2170] = {.lex_state = 14}, + [2171] = {.lex_state = 14}, [2172] = {.lex_state = 14}, [2173] = {.lex_state = 14}, - [2174] = {.lex_state = 27}, + [2174] = {.lex_state = 14}, [2175] = {.lex_state = 14}, - [2176] = {.lex_state = 27}, - [2177] = {.lex_state = 27}, - [2178] = {.lex_state = 27}, + [2176] = {.lex_state = 14}, + [2177] = {.lex_state = 10}, + [2178] = {.lex_state = 6}, [2179] = {.lex_state = 14}, - [2180] = {.lex_state = 10}, - [2181] = {.lex_state = 6}, - [2182] = {.lex_state = 27}, - [2183] = {.lex_state = 17}, + [2180] = {.lex_state = 16}, + [2181] = {.lex_state = 16}, + [2182] = {.lex_state = 10}, + [2183] = {.lex_state = 6}, [2184] = {.lex_state = 14}, [2185] = {.lex_state = 14}, - [2186] = {.lex_state = 14}, - [2187] = {.lex_state = 14}, - [2188] = {.lex_state = 14}, + [2186] = {.lex_state = 10}, + [2187] = {.lex_state = 16}, + [2188] = {.lex_state = 16}, [2189] = {.lex_state = 14}, [2190] = {.lex_state = 23}, [2191] = {.lex_state = 14}, [2192] = {.lex_state = 14}, [2193] = {.lex_state = 14}, [2194] = {.lex_state = 14}, - [2195] = {.lex_state = 14}, + [2195] = {.lex_state = 21}, [2196] = {.lex_state = 14}, [2197] = {.lex_state = 14}, - [2198] = {.lex_state = 23}, + [2198] = {.lex_state = 14}, [2199] = {.lex_state = 14}, - [2200] = {.lex_state = 23}, - [2201] = {.lex_state = 14}, + [2200] = {.lex_state = 14}, + [2201] = {.lex_state = 23}, [2202] = {.lex_state = 23}, - [2203] = {.lex_state = 21}, - [2204] = {.lex_state = 10}, - [2205] = {.lex_state = 14}, - [2206] = {.lex_state = 23}, + [2203] = {.lex_state = 14}, + [2204] = {.lex_state = 23}, + [2205] = {.lex_state = 23}, + [2206] = {.lex_state = 14}, [2207] = {.lex_state = 14}, - [2208] = {.lex_state = 14}, + [2208] = {.lex_state = 23}, [2209] = {.lex_state = 14}, [2210] = {.lex_state = 14}, [2211] = {.lex_state = 14}, [2212] = {.lex_state = 14}, [2213] = {.lex_state = 14}, - [2214] = {.lex_state = 23}, + [2214] = {.lex_state = 14}, [2215] = {.lex_state = 14}, - [2216] = {.lex_state = 23}, + [2216] = {.lex_state = 14}, [2217] = {.lex_state = 14}, - [2218] = {.lex_state = 23}, + [2218] = {.lex_state = 14}, [2219] = {.lex_state = 14}, [2220] = {.lex_state = 14}, [2221] = {.lex_state = 14}, @@ -12304,603 +12331,603 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2224] = {.lex_state = 14}, [2225] = {.lex_state = 14}, [2226] = {.lex_state = 14}, - [2227] = {.lex_state = 14}, + [2227] = {.lex_state = 23}, [2228] = {.lex_state = 14}, [2229] = {.lex_state = 14}, [2230] = {.lex_state = 23}, - [2231] = {.lex_state = 14}, - [2232] = {.lex_state = 23}, - [2233] = {.lex_state = 23}, - [2234] = {.lex_state = 23}, + [2231] = {.lex_state = 23}, + [2232] = {.lex_state = 10}, + [2233] = {.lex_state = 14}, + [2234] = {.lex_state = 14}, [2235] = {.lex_state = 14}, [2236] = {.lex_state = 14}, [2237] = {.lex_state = 14}, [2238] = {.lex_state = 14}, [2239] = {.lex_state = 14}, - [2240] = {.lex_state = 70}, - [2241] = {.lex_state = 70}, - [2242] = {.lex_state = 14}, - [2243] = {.lex_state = 23}, - [2244] = {.lex_state = 70}, - [2245] = {.lex_state = 70}, + [2240] = {.lex_state = 14}, + [2241] = {.lex_state = 23}, + [2242] = {.lex_state = 23}, + [2243] = {.lex_state = 14}, + [2244] = {.lex_state = 23}, + [2245] = {.lex_state = 14}, [2246] = {.lex_state = 70}, - [2247] = {.lex_state = 70}, - [2248] = {.lex_state = 14}, - [2249] = {.lex_state = 70}, - [2250] = {.lex_state = 70}, - [2251] = {.lex_state = 27}, - [2252] = {.lex_state = 10}, + [2247] = {.lex_state = 17}, + [2248] = {.lex_state = 70}, + [2249] = {.lex_state = 23}, + [2250] = {.lex_state = 23}, + [2251] = {.lex_state = 70}, + [2252] = {.lex_state = 70}, [2253] = {.lex_state = 23}, - [2254] = {.lex_state = 70}, - [2255] = {.lex_state = 14}, - [2256] = {.lex_state = 70}, + [2254] = {.lex_state = 3}, + [2255] = {.lex_state = 70}, + [2256] = {.lex_state = 14}, [2257] = {.lex_state = 70}, - [2258] = {.lex_state = 70}, + [2258] = {.lex_state = 14}, [2259] = {.lex_state = 70}, - [2260] = {.lex_state = 70}, - [2261] = {.lex_state = 3}, - [2262] = {.lex_state = 10}, + [2260] = {.lex_state = 14}, + [2261] = {.lex_state = 70}, + [2262] = {.lex_state = 14}, [2263] = {.lex_state = 70}, [2264] = {.lex_state = 70}, [2265] = {.lex_state = 70}, - [2266] = {.lex_state = 3}, + [2266] = {.lex_state = 70}, [2267] = {.lex_state = 14}, - [2268] = {.lex_state = 23}, - [2269] = {.lex_state = 23}, + [2268] = {.lex_state = 70}, + [2269] = {.lex_state = 70}, [2270] = {.lex_state = 70}, - [2271] = {.lex_state = 23}, + [2271] = {.lex_state = 70}, [2272] = {.lex_state = 70}, [2273] = {.lex_state = 70}, - [2274] = {.lex_state = 70}, - [2275] = {.lex_state = 70}, - [2276] = {.lex_state = 70}, - [2277] = {.lex_state = 70}, - [2278] = {.lex_state = 27}, + [2274] = {.lex_state = 14}, + [2275] = {.lex_state = 14}, + [2276] = {.lex_state = 23}, + [2277] = {.lex_state = 23}, + [2278] = {.lex_state = 3}, [2279] = {.lex_state = 70}, - [2280] = {.lex_state = 14}, + [2280] = {.lex_state = 70}, [2281] = {.lex_state = 70}, - [2282] = {.lex_state = 14}, + [2282] = {.lex_state = 70}, [2283] = {.lex_state = 10}, - [2284] = {.lex_state = 23}, - [2285] = {.lex_state = 14}, - [2286] = {.lex_state = 23}, - [2287] = {.lex_state = 14}, - [2288] = {.lex_state = 3}, + [2284] = {.lex_state = 3}, + [2285] = {.lex_state = 10}, + [2286] = {.lex_state = 70}, + [2287] = {.lex_state = 70}, + [2288] = {.lex_state = 70}, [2289] = {.lex_state = 70}, - [2290] = {.lex_state = 17}, - [2291] = {.lex_state = 14}, - [2292] = {.lex_state = 70}, - [2293] = {.lex_state = 14}, - [2294] = {.lex_state = 167}, - [2295] = {.lex_state = 23}, + [2290] = {.lex_state = 23}, + [2291] = {.lex_state = 23}, + [2292] = {.lex_state = 167}, + [2293] = {.lex_state = 23}, + [2294] = {.lex_state = 10}, + [2295] = {.lex_state = 14}, [2296] = {.lex_state = 70}, [2297] = {.lex_state = 70}, [2298] = {.lex_state = 14}, - [2299] = {.lex_state = 14}, - [2300] = {.lex_state = 14}, + [2299] = {.lex_state = 16}, + [2300] = {.lex_state = 16}, [2301] = {.lex_state = 14}, - [2302] = {.lex_state = 14}, - [2303] = {.lex_state = 14}, + [2302] = {.lex_state = 70}, + [2303] = {.lex_state = 70}, [2304] = {.lex_state = 14}, - [2305] = {.lex_state = 14}, - [2306] = {.lex_state = 27}, + [2305] = {.lex_state = 17}, + [2306] = {.lex_state = 14}, [2307] = {.lex_state = 17}, - [2308] = {.lex_state = 13}, - [2309] = {.lex_state = 27}, - [2310] = {.lex_state = 70}, + [2308] = {.lex_state = 14}, + [2309] = {.lex_state = 3}, + [2310] = {.lex_state = 17}, [2311] = {.lex_state = 17}, - [2312] = {.lex_state = 3}, - [2313] = {.lex_state = 14}, - [2314] = {.lex_state = 14}, + [2312] = {.lex_state = 17}, + [2313] = {.lex_state = 27}, + [2314] = {.lex_state = 17}, [2315] = {.lex_state = 14}, [2316] = {.lex_state = 14}, - [2317] = {.lex_state = 14}, - [2318] = {.lex_state = 14}, - [2319] = {.lex_state = 14}, - [2320] = {.lex_state = 27}, - [2321] = {.lex_state = 19}, - [2322] = {.lex_state = 17}, - [2323] = {.lex_state = 19}, + [2317] = {.lex_state = 23}, + [2318] = {.lex_state = 17}, + [2319] = {.lex_state = 27}, + [2320] = {.lex_state = 14}, + [2321] = {.lex_state = 27}, + [2322] = {.lex_state = 14}, + [2323] = {.lex_state = 14}, [2324] = {.lex_state = 14}, - [2325] = {.lex_state = 19}, - [2326] = {.lex_state = 23}, - [2327] = {.lex_state = 3}, + [2325] = {.lex_state = 14}, + [2326] = {.lex_state = 14}, + [2327] = {.lex_state = 27}, [2328] = {.lex_state = 14}, [2329] = {.lex_state = 14}, [2330] = {.lex_state = 14}, [2331] = {.lex_state = 27}, - [2332] = {.lex_state = 27}, + [2332] = {.lex_state = 19}, [2333] = {.lex_state = 27}, - [2334] = {.lex_state = 27}, - [2335] = {.lex_state = 3}, + [2334] = {.lex_state = 14}, + [2335] = {.lex_state = 14}, [2336] = {.lex_state = 14}, - [2337] = {.lex_state = 27}, + [2337] = {.lex_state = 14}, [2338] = {.lex_state = 14}, - [2339] = {.lex_state = 27}, + [2339] = {.lex_state = 14}, [2340] = {.lex_state = 14}, - [2341] = {.lex_state = 14}, - [2342] = {.lex_state = 19}, - [2343] = {.lex_state = 14}, + [2341] = {.lex_state = 27}, + [2342] = {.lex_state = 27}, + [2343] = {.lex_state = 27}, [2344] = {.lex_state = 14}, - [2345] = {.lex_state = 17}, - [2346] = {.lex_state = 17}, - [2347] = {.lex_state = 27}, + [2345] = {.lex_state = 27}, + [2346] = {.lex_state = 14}, + [2347] = {.lex_state = 14}, [2348] = {.lex_state = 14}, - [2349] = {.lex_state = 14}, + [2349] = {.lex_state = 19}, [2350] = {.lex_state = 14}, - [2351] = {.lex_state = 27}, + [2351] = {.lex_state = 14}, [2352] = {.lex_state = 14}, [2353] = {.lex_state = 14}, [2354] = {.lex_state = 14}, - [2355] = {.lex_state = 27}, - [2356] = {.lex_state = 14}, + [2355] = {.lex_state = 14}, + [2356] = {.lex_state = 70}, [2357] = {.lex_state = 14}, [2358] = {.lex_state = 14}, - [2359] = {.lex_state = 13}, - [2360] = {.lex_state = 14}, + [2359] = {.lex_state = 19}, + [2360] = {.lex_state = 19}, [2361] = {.lex_state = 14}, [2362] = {.lex_state = 14}, [2363] = {.lex_state = 14}, [2364] = {.lex_state = 14}, - [2365] = {.lex_state = 70}, + [2365] = {.lex_state = 14}, [2366] = {.lex_state = 14}, [2367] = {.lex_state = 14}, - [2368] = {.lex_state = 17}, + [2368] = {.lex_state = 14}, [2369] = {.lex_state = 14}, [2370] = {.lex_state = 14}, - [2371] = {.lex_state = 14}, - [2372] = {.lex_state = 14}, + [2371] = {.lex_state = 27}, + [2372] = {.lex_state = 27}, [2373] = {.lex_state = 14}, [2374] = {.lex_state = 27}, - [2375] = {.lex_state = 14}, + [2375] = {.lex_state = 27}, [2376] = {.lex_state = 14}, [2377] = {.lex_state = 14}, - [2378] = {.lex_state = 14}, + [2378] = {.lex_state = 19}, [2379] = {.lex_state = 14}, - [2380] = {.lex_state = 19}, - [2381] = {.lex_state = 27}, - [2382] = {.lex_state = 27}, - [2383] = {.lex_state = 14}, - [2384] = {.lex_state = 27}, - [2385] = {.lex_state = 14}, - [2386] = {.lex_state = 14}, + [2380] = {.lex_state = 14}, + [2381] = {.lex_state = 13}, + [2382] = {.lex_state = 19}, + [2383] = {.lex_state = 13}, + [2384] = {.lex_state = 3}, + [2385] = {.lex_state = 27}, + [2386] = {.lex_state = 27}, [2387] = {.lex_state = 14}, [2388] = {.lex_state = 27}, - [2389] = {.lex_state = 19}, + [2389] = {.lex_state = 14}, [2390] = {.lex_state = 3}, - [2391] = {.lex_state = 17}, - [2392] = {.lex_state = 27}, - [2393] = {.lex_state = 14}, + [2391] = {.lex_state = 3}, + [2392] = {.lex_state = 70}, + [2393] = {.lex_state = 27}, [2394] = {.lex_state = 14}, [2395] = {.lex_state = 14}, [2396] = {.lex_state = 14}, [2397] = {.lex_state = 14}, [2398] = {.lex_state = 14}, - [2399] = {.lex_state = 27}, - [2400] = {.lex_state = 10}, - [2401] = {.lex_state = 6}, - [2402] = {.lex_state = 10}, - [2403] = {.lex_state = 10, .external_lex_state = 3}, + [2399] = {.lex_state = 14}, + [2400] = {.lex_state = 14}, + [2401] = {.lex_state = 14}, + [2402] = {.lex_state = 14}, + [2403] = {.lex_state = 10}, [2404] = {.lex_state = 10}, - [2405] = {.lex_state = 27}, - [2406] = {.lex_state = 27}, - [2407] = {.lex_state = 27}, - [2408] = {.lex_state = 27}, - [2409] = {.lex_state = 14}, - [2410] = {.lex_state = 14}, - [2411] = {.lex_state = 27}, - [2412] = {.lex_state = 27}, - [2413] = {.lex_state = 27}, - [2414] = {.lex_state = 10}, - [2415] = {.lex_state = 10}, - [2416] = {.lex_state = 14}, + [2405] = {.lex_state = 10}, + [2406] = {.lex_state = 10}, + [2407] = {.lex_state = 10}, + [2408] = {.lex_state = 10}, + [2409] = {.lex_state = 10}, + [2410] = {.lex_state = 10}, + [2411] = {.lex_state = 10}, + [2412] = {.lex_state = 14}, + [2413] = {.lex_state = 14}, + [2414] = {.lex_state = 14}, + [2415] = {.lex_state = 27}, + [2416] = {.lex_state = 27}, [2417] = {.lex_state = 10}, - [2418] = {.lex_state = 27}, - [2419] = {.lex_state = 27}, - [2420] = {.lex_state = 27}, - [2421] = {.lex_state = 14}, - [2422] = {.lex_state = 14}, - [2423] = {.lex_state = 14}, - [2424] = {.lex_state = 27}, - [2425] = {.lex_state = 27}, - [2426] = {.lex_state = 14}, - [2427] = {.lex_state = 6}, - [2428] = {.lex_state = 27}, - [2429] = {.lex_state = 14}, - [2430] = {.lex_state = 27}, + [2418] = {.lex_state = 70}, + [2419] = {.lex_state = 14}, + [2420] = {.lex_state = 10}, + [2421] = {.lex_state = 3}, + [2422] = {.lex_state = 10}, + [2423] = {.lex_state = 27}, + [2424] = {.lex_state = 14}, + [2425] = {.lex_state = 10}, + [2426] = {.lex_state = 10}, + [2427] = {.lex_state = 27}, + [2428] = {.lex_state = 10}, + [2429] = {.lex_state = 10}, + [2430] = {.lex_state = 10}, [2431] = {.lex_state = 14}, - [2432] = {.lex_state = 10}, - [2433] = {.lex_state = 3}, - [2434] = {.lex_state = 27}, + [2432] = {.lex_state = 27}, + [2433] = {.lex_state = 14}, + [2434] = {.lex_state = 14}, [2435] = {.lex_state = 27}, [2436] = {.lex_state = 27}, - [2437] = {.lex_state = 27}, - [2438] = {.lex_state = 27}, - [2439] = {.lex_state = 27}, - [2440] = {.lex_state = 10}, - [2441] = {.lex_state = 27}, - [2442] = {.lex_state = 10}, - [2443] = {.lex_state = 3}, - [2444] = {.lex_state = 10}, + [2437] = {.lex_state = 70}, + [2438] = {.lex_state = 6}, + [2439] = {.lex_state = 3}, + [2440] = {.lex_state = 27}, + [2441] = {.lex_state = 10}, + [2442] = {.lex_state = 27}, + [2443] = {.lex_state = 27}, + [2444] = {.lex_state = 27}, [2445] = {.lex_state = 27}, [2446] = {.lex_state = 10}, - [2447] = {.lex_state = 10}, + [2447] = {.lex_state = 14}, [2448] = {.lex_state = 14}, - [2449] = {.lex_state = 10}, - [2450] = {.lex_state = 10}, - [2451] = {.lex_state = 14}, - [2452] = {.lex_state = 10}, - [2453] = {.lex_state = 70}, + [2449] = {.lex_state = 27}, + [2450] = {.lex_state = 27}, + [2451] = {.lex_state = 10}, + [2452] = {.lex_state = 14}, + [2453] = {.lex_state = 27}, [2454] = {.lex_state = 27}, - [2455] = {.lex_state = 27}, - [2456] = {.lex_state = 27}, - [2457] = {.lex_state = 14}, - [2458] = {.lex_state = 10}, - [2459] = {.lex_state = 10}, + [2455] = {.lex_state = 10}, + [2456] = {.lex_state = 10}, + [2457] = {.lex_state = 27}, + [2458] = {.lex_state = 14}, + [2459] = {.lex_state = 14}, [2460] = {.lex_state = 10}, - [2461] = {.lex_state = 10}, - [2462] = {.lex_state = 10}, - [2463] = {.lex_state = 10}, - [2464] = {.lex_state = 10}, - [2465] = {.lex_state = 10}, - [2466] = {.lex_state = 14}, - [2467] = {.lex_state = 14}, - [2468] = {.lex_state = 10}, - [2469] = {.lex_state = 6}, - [2470] = {.lex_state = 27}, + [2461] = {.lex_state = 14}, + [2462] = {.lex_state = 14}, + [2463] = {.lex_state = 27}, + [2464] = {.lex_state = 27}, + [2465] = {.lex_state = 6}, + [2466] = {.lex_state = 27}, + [2467] = {.lex_state = 27}, + [2468] = {.lex_state = 27}, + [2469] = {.lex_state = 14}, + [2470] = {.lex_state = 10}, [2471] = {.lex_state = 27}, - [2472] = {.lex_state = 27}, + [2472] = {.lex_state = 10}, [2473] = {.lex_state = 27}, - [2474] = {.lex_state = 27}, - [2475] = {.lex_state = 14}, - [2476] = {.lex_state = 14}, + [2474] = {.lex_state = 14}, + [2475] = {.lex_state = 10}, + [2476] = {.lex_state = 10}, [2477] = {.lex_state = 14}, [2478] = {.lex_state = 14}, - [2479] = {.lex_state = 14}, - [2480] = {.lex_state = 27}, - [2481] = {.lex_state = 27}, - [2482] = {.lex_state = 6}, - [2483] = {.lex_state = 10}, + [2479] = {.lex_state = 10}, + [2480] = {.lex_state = 14}, + [2481] = {.lex_state = 14}, + [2482] = {.lex_state = 27}, + [2483] = {.lex_state = 10, .external_lex_state = 3}, [2484] = {.lex_state = 27}, - [2485] = {.lex_state = 10}, + [2485] = {.lex_state = 27}, [2486] = {.lex_state = 27}, - [2487] = {.lex_state = 14}, - [2488] = {.lex_state = 14}, + [2487] = {.lex_state = 27}, + [2488] = {.lex_state = 10}, [2489] = {.lex_state = 14}, - [2490] = {.lex_state = 10}, + [2490] = {.lex_state = 27}, [2491] = {.lex_state = 10}, - [2492] = {.lex_state = 10}, + [2492] = {.lex_state = 14}, [2493] = {.lex_state = 27}, - [2494] = {.lex_state = 10}, - [2495] = {.lex_state = 14}, - [2496] = {.lex_state = 14}, - [2497] = {.lex_state = 10}, - [2498] = {.lex_state = 27}, - [2499] = {.lex_state = 27}, - [2500] = {.lex_state = 10}, - [2501] = {.lex_state = 14}, - [2502] = {.lex_state = 14}, + [2494] = {.lex_state = 27}, + [2495] = {.lex_state = 27}, + [2496] = {.lex_state = 27}, + [2497] = {.lex_state = 27}, + [2498] = {.lex_state = 10}, + [2499] = {.lex_state = 10}, + [2500] = {.lex_state = 14}, + [2501] = {.lex_state = 27}, + [2502] = {.lex_state = 6}, [2503] = {.lex_state = 27}, - [2504] = {.lex_state = 70}, - [2505] = {.lex_state = 10}, - [2506] = {.lex_state = 6}, + [2504] = {.lex_state = 14}, + [2505] = {.lex_state = 27}, + [2506] = {.lex_state = 27}, [2507] = {.lex_state = 10}, - [2508] = {.lex_state = 14}, - [2509] = {.lex_state = 17}, - [2510] = {.lex_state = 17}, - [2511] = {.lex_state = 17}, - [2512] = {.lex_state = 17}, - [2513] = {.lex_state = 70}, - [2514] = {.lex_state = 70}, - [2515] = {.lex_state = 17}, + [2508] = {.lex_state = 6}, + [2509] = {.lex_state = 14}, + [2510] = {.lex_state = 14}, + [2511] = {.lex_state = 14}, + [2512] = {.lex_state = 6}, + [2513] = {.lex_state = 10, .external_lex_state = 4}, + [2514] = {.lex_state = 17}, + [2515] = {.lex_state = 14}, [2516] = {.lex_state = 70}, - [2517] = {.lex_state = 6}, - [2518] = {.lex_state = 6}, - [2519] = {.lex_state = 17}, - [2520] = {.lex_state = 17}, + [2517] = {.lex_state = 70}, + [2518] = {.lex_state = 27}, + [2519] = {.lex_state = 16}, + [2520] = {.lex_state = 70}, [2521] = {.lex_state = 27}, - [2522] = {.lex_state = 70}, - [2523] = {.lex_state = 17}, - [2524] = {.lex_state = 14}, - [2525] = {.lex_state = 14}, - [2526] = {.lex_state = 14}, + [2522] = {.lex_state = 14}, + [2523] = {.lex_state = 14}, + [2524] = {.lex_state = 10}, + [2525] = {.lex_state = 10}, + [2526] = {.lex_state = 10}, [2527] = {.lex_state = 14}, - [2528] = {.lex_state = 14}, - [2529] = {.lex_state = 10}, - [2530] = {.lex_state = 14}, - [2531] = {.lex_state = 10, .external_lex_state = 4}, - [2532] = {.lex_state = 14}, - [2533] = {.lex_state = 3}, - [2534] = {.lex_state = 6}, - [2535] = {.lex_state = 14}, - [2536] = {.lex_state = 10}, - [2537] = {.lex_state = 14}, - [2538] = {.lex_state = 14}, + [2528] = {.lex_state = 10}, + [2529] = {.lex_state = 14}, + [2530] = {.lex_state = 10}, + [2531] = {.lex_state = 29}, + [2532] = {.lex_state = 10, .external_lex_state = 4}, + [2533] = {.lex_state = 10}, + [2534] = {.lex_state = 3}, + [2535] = {.lex_state = 10}, + [2536] = {.lex_state = 70}, + [2537] = {.lex_state = 70}, + [2538] = {.lex_state = 70}, [2539] = {.lex_state = 70}, - [2540] = {.lex_state = 70}, - [2541] = {.lex_state = 14}, - [2542] = {.lex_state = 10}, - [2543] = {.lex_state = 6}, - [2544] = {.lex_state = 6}, - [2545] = {.lex_state = 70}, + [2540] = {.lex_state = 27}, + [2541] = {.lex_state = 70}, + [2542] = {.lex_state = 70}, + [2543] = {.lex_state = 10}, + [2544] = {.lex_state = 14}, + [2545] = {.lex_state = 10}, [2546] = {.lex_state = 10}, - [2547] = {.lex_state = 14}, - [2548] = {.lex_state = 6}, - [2549] = {.lex_state = 29}, - [2550] = {.lex_state = 14}, - [2551] = {.lex_state = 14}, - [2552] = {.lex_state = 70}, - [2553] = {.lex_state = 14}, - [2554] = {.lex_state = 14}, - [2555] = {.lex_state = 14}, - [2556] = {.lex_state = 27}, - [2557] = {.lex_state = 70}, - [2558] = {.lex_state = 70}, - [2559] = {.lex_state = 10}, - [2560] = {.lex_state = 14}, - [2561] = {.lex_state = 27}, - [2562] = {.lex_state = 70}, + [2547] = {.lex_state = 10}, + [2548] = {.lex_state = 10, .external_lex_state = 4}, + [2549] = {.lex_state = 70}, + [2550] = {.lex_state = 10}, + [2551] = {.lex_state = 10}, + [2552] = {.lex_state = 6}, + [2553] = {.lex_state = 10}, + [2554] = {.lex_state = 16}, + [2555] = {.lex_state = 10}, + [2556] = {.lex_state = 70}, + [2557] = {.lex_state = 10}, + [2558] = {.lex_state = 10}, + [2559] = {.lex_state = 70}, + [2560] = {.lex_state = 6}, + [2561] = {.lex_state = 10}, + [2562] = {.lex_state = 10, .external_lex_state = 4}, [2563] = {.lex_state = 70}, - [2564] = {.lex_state = 14}, - [2565] = {.lex_state = 27}, - [2566] = {.lex_state = 10}, + [2564] = {.lex_state = 6}, + [2565] = {.lex_state = 6}, + [2566] = {.lex_state = 6}, [2567] = {.lex_state = 6}, - [2568] = {.lex_state = 10}, - [2569] = {.lex_state = 10}, - [2570] = {.lex_state = 14}, - [2571] = {.lex_state = 14}, - [2572] = {.lex_state = 10}, - [2573] = {.lex_state = 27}, - [2574] = {.lex_state = 70}, + [2568] = {.lex_state = 6}, + [2569] = {.lex_state = 70}, + [2570] = {.lex_state = 70}, + [2571] = {.lex_state = 6}, + [2572] = {.lex_state = 6}, + [2573] = {.lex_state = 14}, + [2574] = {.lex_state = 6}, [2575] = {.lex_state = 10, .external_lex_state = 4}, - [2576] = {.lex_state = 6}, - [2577] = {.lex_state = 27}, + [2576] = {.lex_state = 14}, + [2577] = {.lex_state = 10}, [2578] = {.lex_state = 70}, [2579] = {.lex_state = 10}, - [2580] = {.lex_state = 10}, - [2581] = {.lex_state = 27}, - [2582] = {.lex_state = 14}, + [2580] = {.lex_state = 16}, + [2581] = {.lex_state = 6}, + [2582] = {.lex_state = 70}, [2583] = {.lex_state = 27}, - [2584] = {.lex_state = 3}, - [2585] = {.lex_state = 10}, - [2586] = {.lex_state = 10}, - [2587] = {.lex_state = 10, .external_lex_state = 4}, - [2588] = {.lex_state = 70}, - [2589] = {.lex_state = 10}, + [2584] = {.lex_state = 14}, + [2585] = {.lex_state = 27}, + [2586] = {.lex_state = 70}, + [2587] = {.lex_state = 10}, + [2588] = {.lex_state = 10}, + [2589] = {.lex_state = 14}, [2590] = {.lex_state = 10}, - [2591] = {.lex_state = 27}, - [2592] = {.lex_state = 16}, - [2593] = {.lex_state = 10}, - [2594] = {.lex_state = 70}, + [2591] = {.lex_state = 70}, + [2592] = {.lex_state = 70}, + [2593] = {.lex_state = 14}, + [2594] = {.lex_state = 14}, [2595] = {.lex_state = 10}, - [2596] = {.lex_state = 10}, - [2597] = {.lex_state = 10}, - [2598] = {.lex_state = 10, .external_lex_state = 4}, - [2599] = {.lex_state = 70}, - [2600] = {.lex_state = 6}, - [2601] = {.lex_state = 6}, - [2602] = {.lex_state = 6}, - [2603] = {.lex_state = 6}, + [2596] = {.lex_state = 10, .external_lex_state = 4}, + [2597] = {.lex_state = 14}, + [2598] = {.lex_state = 10}, + [2599] = {.lex_state = 10}, + [2600] = {.lex_state = 10, .external_lex_state = 4}, + [2601] = {.lex_state = 10}, + [2602] = {.lex_state = 70}, + [2603] = {.lex_state = 10}, [2604] = {.lex_state = 70}, - [2605] = {.lex_state = 70}, - [2606] = {.lex_state = 16}, - [2607] = {.lex_state = 6}, - [2608] = {.lex_state = 70}, - [2609] = {.lex_state = 27}, - [2610] = {.lex_state = 10}, - [2611] = {.lex_state = 70}, - [2612] = {.lex_state = 10, .external_lex_state = 4}, - [2613] = {.lex_state = 10}, - [2614] = {.lex_state = 70}, - [2615] = {.lex_state = 10}, + [2605] = {.lex_state = 10}, + [2606] = {.lex_state = 10}, + [2607] = {.lex_state = 10}, + [2608] = {.lex_state = 10, .external_lex_state = 4}, + [2609] = {.lex_state = 70}, + [2610] = {.lex_state = 6}, + [2611] = {.lex_state = 6}, + [2612] = {.lex_state = 10}, + [2613] = {.lex_state = 14}, + [2614] = {.lex_state = 14}, + [2615] = {.lex_state = 6}, [2616] = {.lex_state = 10}, [2617] = {.lex_state = 70}, - [2618] = {.lex_state = 70}, - [2619] = {.lex_state = 6}, - [2620] = {.lex_state = 70}, - [2621] = {.lex_state = 10}, + [2618] = {.lex_state = 10, .external_lex_state = 4}, + [2619] = {.lex_state = 10}, + [2620] = {.lex_state = 14}, + [2621] = {.lex_state = 14}, [2622] = {.lex_state = 70}, - [2623] = {.lex_state = 10}, - [2624] = {.lex_state = 10}, - [2625] = {.lex_state = 10}, - [2626] = {.lex_state = 10}, - [2627] = {.lex_state = 10}, - [2628] = {.lex_state = 10}, + [2623] = {.lex_state = 10, .external_lex_state = 4}, + [2624] = {.lex_state = 70}, + [2625] = {.lex_state = 6}, + [2626] = {.lex_state = 6}, + [2627] = {.lex_state = 6}, + [2628] = {.lex_state = 70}, [2629] = {.lex_state = 10, .external_lex_state = 4}, - [2630] = {.lex_state = 10}, - [2631] = {.lex_state = 10}, - [2632] = {.lex_state = 70}, - [2633] = {.lex_state = 10}, + [2630] = {.lex_state = 10, .external_lex_state = 4}, + [2631] = {.lex_state = 6}, + [2632] = {.lex_state = 6}, + [2633] = {.lex_state = 6}, [2634] = {.lex_state = 10}, - [2635] = {.lex_state = 10}, - [2636] = {.lex_state = 10, .external_lex_state = 4}, - [2637] = {.lex_state = 70}, - [2638] = {.lex_state = 10}, + [2635] = {.lex_state = 70}, + [2636] = {.lex_state = 70}, + [2637] = {.lex_state = 6}, + [2638] = {.lex_state = 6}, [2639] = {.lex_state = 6}, [2640] = {.lex_state = 6}, - [2641] = {.lex_state = 10}, - [2642] = {.lex_state = 10}, - [2643] = {.lex_state = 70}, - [2644] = {.lex_state = 10}, - [2645] = {.lex_state = 10, .external_lex_state = 4}, - [2646] = {.lex_state = 10}, - [2647] = {.lex_state = 70}, - [2648] = {.lex_state = 10, .external_lex_state = 4}, - [2649] = {.lex_state = 70}, - [2650] = {.lex_state = 70}, - [2651] = {.lex_state = 6}, - [2652] = {.lex_state = 6}, - [2653] = {.lex_state = 6}, - [2654] = {.lex_state = 14}, - [2655] = {.lex_state = 6}, - [2656] = {.lex_state = 10, .external_lex_state = 4}, - [2657] = {.lex_state = 14}, - [2658] = {.lex_state = 10, .external_lex_state = 4}, - [2659] = {.lex_state = 6}, - [2660] = {.lex_state = 6}, - [2661] = {.lex_state = 27}, - [2662] = {.lex_state = 6}, - [2663] = {.lex_state = 70}, + [2641] = {.lex_state = 6}, + [2642] = {.lex_state = 6}, + [2643] = {.lex_state = 6}, + [2644] = {.lex_state = 3}, + [2645] = {.lex_state = 6}, + [2646] = {.lex_state = 6}, + [2647] = {.lex_state = 6}, + [2648] = {.lex_state = 6}, + [2649] = {.lex_state = 6}, + [2650] = {.lex_state = 10}, + [2651] = {.lex_state = 14}, + [2652] = {.lex_state = 70}, + [2653] = {.lex_state = 27}, + [2654] = {.lex_state = 6}, + [2655] = {.lex_state = 14}, + [2656] = {.lex_state = 3}, + [2657] = {.lex_state = 10}, + [2658] = {.lex_state = 10}, + [2659] = {.lex_state = 10}, + [2660] = {.lex_state = 27}, + [2661] = {.lex_state = 70}, + [2662] = {.lex_state = 70}, + [2663] = {.lex_state = 10}, [2664] = {.lex_state = 14}, - [2665] = {.lex_state = 6}, - [2666] = {.lex_state = 6}, - [2667] = {.lex_state = 6}, - [2668] = {.lex_state = 6}, - [2669] = {.lex_state = 6}, - [2670] = {.lex_state = 6}, - [2671] = {.lex_state = 6}, - [2672] = {.lex_state = 6}, - [2673] = {.lex_state = 6}, + [2665] = {.lex_state = 70}, + [2666] = {.lex_state = 27}, + [2667] = {.lex_state = 14}, + [2668] = {.lex_state = 14}, + [2669] = {.lex_state = 70}, + [2670] = {.lex_state = 70}, + [2671] = {.lex_state = 14}, + [2672] = {.lex_state = 70}, + [2673] = {.lex_state = 27}, [2674] = {.lex_state = 6}, - [2675] = {.lex_state = 6}, + [2675] = {.lex_state = 10}, [2676] = {.lex_state = 6}, - [2677] = {.lex_state = 29}, - [2678] = {.lex_state = 70}, - [2679] = {.lex_state = 70}, + [2677] = {.lex_state = 10}, + [2678] = {.lex_state = 10}, + [2679] = {.lex_state = 6}, [2680] = {.lex_state = 70}, - [2681] = {.lex_state = 3}, + [2681] = {.lex_state = 29}, [2682] = {.lex_state = 70}, - [2683] = {.lex_state = 10}, - [2684] = {.lex_state = 14}, - [2685] = {.lex_state = 14}, - [2686] = {.lex_state = 16}, - [2687] = {.lex_state = 70}, - [2688] = {.lex_state = 6}, - [2689] = {.lex_state = 6}, - [2690] = {.lex_state = 10}, - [2691] = {.lex_state = 10}, - [2692] = {.lex_state = 70}, - [2693] = {.lex_state = 70}, + [2683] = {.lex_state = 27}, + [2684] = {.lex_state = 10}, + [2685] = {.lex_state = 70}, + [2686] = {.lex_state = 27}, + [2687] = {.lex_state = 14}, + [2688] = {.lex_state = 70}, + [2689] = {.lex_state = 10}, + [2690] = {.lex_state = 29}, + [2691] = {.lex_state = 70}, + [2692] = {.lex_state = 10}, + [2693] = {.lex_state = 6}, [2694] = {.lex_state = 10}, - [2695] = {.lex_state = 10}, + [2695] = {.lex_state = 70}, [2696] = {.lex_state = 70}, - [2697] = {.lex_state = 14}, + [2697] = {.lex_state = 70}, [2698] = {.lex_state = 14}, - [2699] = {.lex_state = 70}, - [2700] = {.lex_state = 6}, - [2701] = {.lex_state = 27}, - [2702] = {.lex_state = 10}, + [2699] = {.lex_state = 10, .external_lex_state = 4}, + [2700] = {.lex_state = 10}, + [2701] = {.lex_state = 10}, + [2702] = {.lex_state = 14}, [2703] = {.lex_state = 14}, - [2704] = {.lex_state = 10}, - [2705] = {.lex_state = 29}, + [2704] = {.lex_state = 14}, + [2705] = {.lex_state = 70}, [2706] = {.lex_state = 10}, - [2707] = {.lex_state = 70}, - [2708] = {.lex_state = 14}, - [2709] = {.lex_state = 6}, + [2707] = {.lex_state = 10}, + [2708] = {.lex_state = 10}, + [2709] = {.lex_state = 10}, [2710] = {.lex_state = 10}, - [2711] = {.lex_state = 10}, - [2712] = {.lex_state = 70}, - [2713] = {.lex_state = 6}, - [2714] = {.lex_state = 10}, - [2715] = {.lex_state = 10}, - [2716] = {.lex_state = 29}, - [2717] = {.lex_state = 14}, - [2718] = {.lex_state = 10}, - [2719] = {.lex_state = 70}, - [2720] = {.lex_state = 10}, - [2721] = {.lex_state = 10}, - [2722] = {.lex_state = 10}, + [2711] = {.lex_state = 70}, + [2712] = {.lex_state = 10}, + [2713] = {.lex_state = 14}, + [2714] = {.lex_state = 3}, + [2715] = {.lex_state = 14}, + [2716] = {.lex_state = 14}, + [2717] = {.lex_state = 70}, + [2718] = {.lex_state = 70}, + [2719] = {.lex_state = 27}, + [2720] = {.lex_state = 70}, + [2721] = {.lex_state = 14}, + [2722] = {.lex_state = 14}, [2723] = {.lex_state = 10}, - [2724] = {.lex_state = 3}, - [2725] = {.lex_state = 14}, - [2726] = {.lex_state = 70}, - [2727] = {.lex_state = 27}, - [2728] = {.lex_state = 70}, - [2729] = {.lex_state = 14}, - [2730] = {.lex_state = 70}, - [2731] = {.lex_state = 14}, - [2732] = {.lex_state = 3}, - [2733] = {.lex_state = 6}, - [2734] = {.lex_state = 14}, - [2735] = {.lex_state = 70}, - [2736] = {.lex_state = 10}, - [2737] = {.lex_state = 6}, + [2724] = {.lex_state = 27}, + [2725] = {.lex_state = 3}, + [2726] = {.lex_state = 10}, + [2727] = {.lex_state = 14}, + [2728] = {.lex_state = 6}, + [2729] = {.lex_state = 6}, + [2730] = {.lex_state = 6}, + [2731] = {.lex_state = 17}, + [2732] = {.lex_state = 17}, + [2733] = {.lex_state = 29}, + [2734] = {.lex_state = 17}, + [2735] = {.lex_state = 17}, + [2736] = {.lex_state = 6}, + [2737] = {.lex_state = 14}, [2738] = {.lex_state = 14}, - [2739] = {.lex_state = 10}, - [2740] = {.lex_state = 6}, - [2741] = {.lex_state = 6}, + [2739] = {.lex_state = 17}, + [2740] = {.lex_state = 10}, + [2741] = {.lex_state = 14}, [2742] = {.lex_state = 6}, [2743] = {.lex_state = 6}, - [2744] = {.lex_state = 10, .external_lex_state = 4}, + [2744] = {.lex_state = 6}, [2745] = {.lex_state = 14}, - [2746] = {.lex_state = 10, .external_lex_state = 4}, - [2747] = {.lex_state = 70}, - [2748] = {.lex_state = 70}, - [2749] = {.lex_state = 70}, - [2750] = {.lex_state = 70}, - [2751] = {.lex_state = 17}, - [2752] = {.lex_state = 70}, - [2753] = {.lex_state = 70}, + [2746] = {.lex_state = 14}, + [2747] = {.lex_state = 17}, + [2748] = {.lex_state = 6}, + [2749] = {.lex_state = 17}, + [2750] = {.lex_state = 10}, + [2751] = {.lex_state = 10}, + [2752] = {.lex_state = 6}, + [2753] = {.lex_state = 14}, [2754] = {.lex_state = 70}, - [2755] = {.lex_state = 17}, - [2756] = {.lex_state = 17}, - [2757] = {.lex_state = 70}, + [2755] = {.lex_state = 70}, + [2756] = {.lex_state = 70}, + [2757] = {.lex_state = 14}, [2758] = {.lex_state = 70}, - [2759] = {.lex_state = 17}, - [2760] = {.lex_state = 14}, - [2761] = {.lex_state = 70}, - [2762] = {.lex_state = 17}, - [2763] = {.lex_state = 70}, - [2764] = {.lex_state = 6}, - [2765] = {.lex_state = 70}, + [2759] = {.lex_state = 70}, + [2760] = {.lex_state = 70}, + [2761] = {.lex_state = 14}, + [2762] = {.lex_state = 70}, + [2763] = {.lex_state = 17}, + [2764] = {.lex_state = 70}, + [2765] = {.lex_state = 6}, [2766] = {.lex_state = 70}, [2767] = {.lex_state = 70}, [2768] = {.lex_state = 70}, [2769] = {.lex_state = 70}, - [2770] = {.lex_state = 17}, + [2770] = {.lex_state = 70}, [2771] = {.lex_state = 70}, [2772] = {.lex_state = 70}, - [2773] = {.lex_state = 17}, + [2773] = {.lex_state = 70}, [2774] = {.lex_state = 70}, - [2775] = {.lex_state = 6}, + [2775] = {.lex_state = 70}, [2776] = {.lex_state = 70}, [2777] = {.lex_state = 70}, - [2778] = {.lex_state = 17}, - [2779] = {.lex_state = 17}, - [2780] = {.lex_state = 6}, - [2781] = {.lex_state = 17}, - [2782] = {.lex_state = 70}, - [2783] = {.lex_state = 17}, - [2784] = {.lex_state = 17}, + [2778] = {.lex_state = 70}, + [2779] = {.lex_state = 70}, + [2780] = {.lex_state = 70}, + [2781] = {.lex_state = 70}, + [2782] = {.lex_state = 6}, + [2783] = {.lex_state = 70}, + [2784] = {.lex_state = 70}, [2785] = {.lex_state = 70}, - [2786] = {.lex_state = 10}, + [2786] = {.lex_state = 14}, [2787] = {.lex_state = 70}, [2788] = {.lex_state = 14}, - [2789] = {.lex_state = 17}, + [2789] = {.lex_state = 14}, [2790] = {.lex_state = 70}, - [2791] = {.lex_state = 17}, - [2792] = {.lex_state = 6}, - [2793] = {.lex_state = 70}, - [2794] = {.lex_state = 17}, + [2791] = {.lex_state = 70}, + [2792] = {.lex_state = 70}, + [2793] = {.lex_state = 14}, + [2794] = {.lex_state = 70}, [2795] = {.lex_state = 70}, - [2796] = {.lex_state = 17}, + [2796] = {.lex_state = 70}, [2797] = {.lex_state = 70}, [2798] = {.lex_state = 70}, - [2799] = {.lex_state = 14}, - [2800] = {.lex_state = 10, .external_lex_state = 4}, + [2799] = {.lex_state = 70}, + [2800] = {.lex_state = 70}, [2801] = {.lex_state = 70}, [2802] = {.lex_state = 70}, - [2803] = {.lex_state = 6}, - [2804] = {.lex_state = 14}, + [2803] = {.lex_state = 70}, + [2804] = {.lex_state = 70}, [2805] = {.lex_state = 70}, [2806] = {.lex_state = 70}, [2807] = {.lex_state = 70}, - [2808] = {.lex_state = 10}, + [2808] = {.lex_state = 14}, [2809] = {.lex_state = 70}, [2810] = {.lex_state = 70}, [2811] = {.lex_state = 70}, - [2812] = {.lex_state = 6}, + [2812] = {.lex_state = 70}, [2813] = {.lex_state = 70}, [2814] = {.lex_state = 70}, [2815] = {.lex_state = 70}, [2816] = {.lex_state = 70}, [2817] = {.lex_state = 70}, - [2818] = {.lex_state = 17}, + [2818] = {.lex_state = 70}, [2819] = {.lex_state = 70}, - [2820] = {.lex_state = 17}, - [2821] = {.lex_state = 17}, + [2820] = {.lex_state = 70}, + [2821] = {.lex_state = 70}, [2822] = {.lex_state = 70}, - [2823] = {.lex_state = 17}, + [2823] = {.lex_state = 70}, [2824] = {.lex_state = 70}, [2825] = {.lex_state = 70}, [2826] = {.lex_state = 70}, @@ -12910,47 +12937,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2830] = {.lex_state = 70}, [2831] = {.lex_state = 70}, [2832] = {.lex_state = 70}, - [2833] = {.lex_state = 70}, + [2833] = {.lex_state = 14}, [2834] = {.lex_state = 70}, - [2835] = {.lex_state = 70}, + [2835] = {.lex_state = 17}, [2836] = {.lex_state = 70}, - [2837] = {.lex_state = 70}, + [2837] = {.lex_state = 17}, [2838] = {.lex_state = 70}, - [2839] = {.lex_state = 14}, - [2840] = {.lex_state = 70}, + [2839] = {.lex_state = 27}, + [2840] = {.lex_state = 17}, [2841] = {.lex_state = 70}, - [2842] = {.lex_state = 70}, - [2843] = {.lex_state = 17}, - [2844] = {.lex_state = 70}, - [2845] = {.lex_state = 70}, - [2846] = {.lex_state = 70}, - [2847] = {.lex_state = 19}, - [2848] = {.lex_state = 10}, - [2849] = {.lex_state = 17}, + [2842] = {.lex_state = 17}, + [2843] = {.lex_state = 70}, + [2844] = {.lex_state = 17}, + [2845] = {.lex_state = 17}, + [2846] = {.lex_state = 17}, + [2847] = {.lex_state = 70}, + [2848] = {.lex_state = 70}, + [2849] = {.lex_state = 70}, [2850] = {.lex_state = 70}, [2851] = {.lex_state = 70}, [2852] = {.lex_state = 70}, [2853] = {.lex_state = 70}, [2854] = {.lex_state = 70}, - [2855] = {.lex_state = 14}, + [2855] = {.lex_state = 70}, [2856] = {.lex_state = 70}, [2857] = {.lex_state = 70}, - [2858] = {.lex_state = 70}, + [2858] = {.lex_state = 17}, [2859] = {.lex_state = 70}, [2860] = {.lex_state = 70}, - [2861] = {.lex_state = 17}, + [2861] = {.lex_state = 70}, [2862] = {.lex_state = 70}, [2863] = {.lex_state = 70}, - [2864] = {.lex_state = 14}, - [2865] = {.lex_state = 19}, - [2866] = {.lex_state = 70}, - [2867] = {.lex_state = 6}, - [2868] = {.lex_state = 70}, + [2864] = {.lex_state = 70}, + [2865] = {.lex_state = 17}, + [2866] = {.lex_state = 19}, + [2867] = {.lex_state = 17}, + [2868] = {.lex_state = 17}, [2869] = {.lex_state = 70}, [2870] = {.lex_state = 70}, [2871] = {.lex_state = 70}, [2872] = {.lex_state = 70}, - [2873] = {.lex_state = 70}, + [2873] = {.lex_state = 19}, [2874] = {.lex_state = 70}, [2875] = {.lex_state = 70}, [2876] = {.lex_state = 70}, @@ -12958,89 +12985,89 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2878] = {.lex_state = 70}, [2879] = {.lex_state = 70}, [2880] = {.lex_state = 70}, - [2881] = {.lex_state = 6}, - [2882] = {.lex_state = 14}, - [2883] = {.lex_state = 70}, + [2881] = {.lex_state = 70}, + [2882] = {.lex_state = 17}, + [2883] = {.lex_state = 17}, [2884] = {.lex_state = 70}, [2885] = {.lex_state = 70}, [2886] = {.lex_state = 70}, - [2887] = {.lex_state = 70}, - [2888] = {.lex_state = 70}, + [2887] = {.lex_state = 14}, + [2888] = {.lex_state = 14}, [2889] = {.lex_state = 70}, [2890] = {.lex_state = 70}, [2891] = {.lex_state = 70}, [2892] = {.lex_state = 70}, - [2893] = {.lex_state = 70}, - [2894] = {.lex_state = 70}, + [2893] = {.lex_state = 14}, + [2894] = {.lex_state = 6}, [2895] = {.lex_state = 70}, [2896] = {.lex_state = 70}, [2897] = {.lex_state = 70}, [2898] = {.lex_state = 70}, - [2899] = {.lex_state = 70}, - [2900] = {.lex_state = 70}, + [2899] = {.lex_state = 14}, + [2900] = {.lex_state = 14}, [2901] = {.lex_state = 70}, - [2902] = {.lex_state = 14}, + [2902] = {.lex_state = 70}, [2903] = {.lex_state = 70}, [2904] = {.lex_state = 70}, - [2905] = {.lex_state = 19}, - [2906] = {.lex_state = 14}, - [2907] = {.lex_state = 70}, - [2908] = {.lex_state = 19}, + [2905] = {.lex_state = 6}, + [2906] = {.lex_state = 17}, + [2907] = {.lex_state = 17}, + [2908] = {.lex_state = 10}, [2909] = {.lex_state = 70}, [2910] = {.lex_state = 70}, [2911] = {.lex_state = 70}, - [2912] = {.lex_state = 10}, + [2912] = {.lex_state = 70}, [2913] = {.lex_state = 70}, - [2914] = {.lex_state = 14}, + [2914] = {.lex_state = 70}, [2915] = {.lex_state = 70}, [2916] = {.lex_state = 70}, [2917] = {.lex_state = 14}, [2918] = {.lex_state = 70}, [2919] = {.lex_state = 70}, - [2920] = {.lex_state = 14}, + [2920] = {.lex_state = 70}, [2921] = {.lex_state = 70}, [2922] = {.lex_state = 70}, [2923] = {.lex_state = 70}, [2924] = {.lex_state = 70}, [2925] = {.lex_state = 70}, - [2926] = {.lex_state = 70}, - [2927] = {.lex_state = 14}, - [2928] = {.lex_state = 70}, + [2926] = {.lex_state = 14}, + [2927] = {.lex_state = 70}, + [2928] = {.lex_state = 17}, [2929] = {.lex_state = 70}, - [2930] = {.lex_state = 70}, + [2930] = {.lex_state = 14}, [2931] = {.lex_state = 70}, - [2932] = {.lex_state = 70}, - [2933] = {.lex_state = 70}, - [2934] = {.lex_state = 70}, - [2935] = {.lex_state = 6}, - [2936] = {.lex_state = 19}, + [2932] = {.lex_state = 17}, + [2933] = {.lex_state = 17}, + [2934] = {.lex_state = 6}, + [2935] = {.lex_state = 19}, + [2936] = {.lex_state = 14}, [2937] = {.lex_state = 70}, - [2938] = {.lex_state = 70}, + [2938] = {.lex_state = 6}, [2939] = {.lex_state = 70}, - [2940] = {.lex_state = 70}, + [2940] = {.lex_state = 14}, [2941] = {.lex_state = 70}, - [2942] = {.lex_state = 70}, - [2943] = {.lex_state = 70}, + [2942] = {.lex_state = 17}, + [2943] = {.lex_state = 14}, [2944] = {.lex_state = 70}, - [2945] = {.lex_state = 70}, - [2946] = {.lex_state = 70}, + [2945] = {.lex_state = 10}, + [2946] = {.lex_state = 10}, [2947] = {.lex_state = 70}, [2948] = {.lex_state = 70}, - [2949] = {.lex_state = 70}, - [2950] = {.lex_state = 70}, - [2951] = {.lex_state = 70}, - [2952] = {.lex_state = 70}, - [2953] = {.lex_state = 70}, - [2954] = {.lex_state = 70}, - [2955] = {.lex_state = 70}, - [2956] = {.lex_state = 70}, - [2957] = {.lex_state = 27}, + [2949] = {.lex_state = 27}, + [2950] = {.lex_state = 17}, + [2951] = {.lex_state = 17}, + [2952] = {.lex_state = 17}, + [2953] = {.lex_state = 17}, + [2954] = {.lex_state = 17}, + [2955] = {.lex_state = 17}, + [2956] = {.lex_state = 17}, + [2957] = {.lex_state = 17}, [2958] = {.lex_state = 70}, - [2959] = {.lex_state = 70}, - [2960] = {.lex_state = 70}, - [2961] = {.lex_state = 14}, - [2962] = {.lex_state = 70}, - [2963] = {.lex_state = 70}, + [2959] = {.lex_state = 17}, + [2960] = {.lex_state = 6}, + [2961] = {.lex_state = 70}, + [2962] = {.lex_state = 17}, + [2963] = {.lex_state = 14}, [2964] = {.lex_state = 70}, [2965] = {.lex_state = 70}, [2966] = {.lex_state = 70}, @@ -13051,53 +13078,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2971] = {.lex_state = 70}, [2972] = {.lex_state = 70}, [2973] = {.lex_state = 70}, - [2974] = {.lex_state = 70}, - [2975] = {.lex_state = 17}, + [2974] = {.lex_state = 6}, + [2975] = {.lex_state = 70}, [2976] = {.lex_state = 70}, [2977] = {.lex_state = 70}, [2978] = {.lex_state = 70}, [2979] = {.lex_state = 70}, [2980] = {.lex_state = 70}, - [2981] = {.lex_state = 17}, - [2982] = {.lex_state = 14}, + [2981] = {.lex_state = 19}, + [2982] = {.lex_state = 70}, [2983] = {.lex_state = 70}, [2984] = {.lex_state = 70}, [2985] = {.lex_state = 70}, - [2986] = {.lex_state = 14}, + [2986] = {.lex_state = 70}, [2987] = {.lex_state = 70}, [2988] = {.lex_state = 70}, - [2989] = {.lex_state = 6}, + [2989] = {.lex_state = 70}, [2990] = {.lex_state = 70}, [2991] = {.lex_state = 14}, [2992] = {.lex_state = 70}, [2993] = {.lex_state = 70}, - [2994] = {.lex_state = 14}, + [2994] = {.lex_state = 70}, [2995] = {.lex_state = 70}, [2996] = {.lex_state = 70}, [2997] = {.lex_state = 70}, - [2998] = {.lex_state = 17}, + [2998] = {.lex_state = 70}, [2999] = {.lex_state = 70}, - [3000] = {.lex_state = 17}, + [3000] = {.lex_state = 14}, [3001] = {.lex_state = 70}, - [3002] = {.lex_state = 70}, + [3002] = {.lex_state = 10}, [3003] = {.lex_state = 70}, - [3004] = {.lex_state = 27}, + [3004] = {.lex_state = 70}, [3005] = {.lex_state = 14}, - [3006] = {.lex_state = 14}, + [3006] = {.lex_state = 6}, [3007] = {.lex_state = 70}, - [3008] = {.lex_state = 17}, - [3009] = {.lex_state = 14}, + [3008] = {.lex_state = 70}, + [3009] = {.lex_state = 70}, [3010] = {.lex_state = 70}, - [3011] = {.lex_state = 17}, - [3012] = {.lex_state = 70}, - [3013] = {.lex_state = 14}, + [3011] = {.lex_state = 70}, + [3012] = {.lex_state = 17}, + [3013] = {.lex_state = 17}, [3014] = {.lex_state = 70}, - [3015] = {.lex_state = 70}, + [3015] = {.lex_state = 17}, [3016] = {.lex_state = 17}, - [3017] = {.lex_state = 70}, + [3017] = {.lex_state = 17}, [3018] = {.lex_state = 17}, - [3019] = {.lex_state = 17}, - [3020] = {.lex_state = 17}, + [3019] = {.lex_state = 10, .external_lex_state = 4}, + [3020] = {.lex_state = 70}, [3021] = {.lex_state = 70}, [3022] = {.lex_state = 70}, [3023] = {.lex_state = 70}, @@ -13105,163 +13132,163 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3025] = {.lex_state = 70}, [3026] = {.lex_state = 70}, [3027] = {.lex_state = 70}, - [3028] = {.lex_state = 14}, + [3028] = {.lex_state = 6}, [3029] = {.lex_state = 70}, [3030] = {.lex_state = 70}, - [3031] = {.lex_state = 17}, - [3032] = {.lex_state = 17}, + [3031] = {.lex_state = 70}, + [3032] = {.lex_state = 70}, [3033] = {.lex_state = 17}, - [3034] = {.lex_state = 6}, + [3034] = {.lex_state = 14}, [3035] = {.lex_state = 70}, [3036] = {.lex_state = 70}, [3037] = {.lex_state = 70}, - [3038] = {.lex_state = 14}, + [3038] = {.lex_state = 70}, [3039] = {.lex_state = 6}, [3040] = {.lex_state = 70}, - [3041] = {.lex_state = 6}, + [3041] = {.lex_state = 70}, [3042] = {.lex_state = 70}, - [3043] = {.lex_state = 6}, - [3044] = {.lex_state = 17}, - [3045] = {.lex_state = 14}, - [3046] = {.lex_state = 14}, - [3047] = {.lex_state = 70}, + [3043] = {.lex_state = 70}, + [3044] = {.lex_state = 70}, + [3045] = {.lex_state = 70}, + [3046] = {.lex_state = 6}, + [3047] = {.lex_state = 6}, [3048] = {.lex_state = 70}, - [3049] = {.lex_state = 70}, - [3050] = {.lex_state = 70}, + [3049] = {.lex_state = 14}, + [3050] = {.lex_state = 6}, [3051] = {.lex_state = 70}, - [3052] = {.lex_state = 70}, - [3053] = {.lex_state = 70}, + [3052] = {.lex_state = 14}, + [3053] = {.lex_state = 19}, [3054] = {.lex_state = 70}, [3055] = {.lex_state = 14}, [3056] = {.lex_state = 70}, [3057] = {.lex_state = 14}, [3058] = {.lex_state = 70}, - [3059] = {.lex_state = 70}, - [3060] = {.lex_state = 14}, + [3059] = {.lex_state = 14}, + [3060] = {.lex_state = 70}, [3061] = {.lex_state = 14}, [3062] = {.lex_state = 14}, [3063] = {.lex_state = 70}, - [3064] = {.lex_state = 14}, + [3064] = {.lex_state = 10, .external_lex_state = 5}, [3065] = {.lex_state = 70}, [3066] = {.lex_state = 70}, - [3067] = {.lex_state = 14}, - [3068] = {.lex_state = 70}, - [3069] = {.lex_state = 70}, - [3070] = {.lex_state = 70, .external_lex_state = 5}, - [3071] = {.lex_state = 70}, + [3067] = {.lex_state = 70}, + [3068] = {.lex_state = 14}, + [3069] = {.lex_state = 14}, + [3070] = {.lex_state = 14}, + [3071] = {.lex_state = 14}, [3072] = {.lex_state = 14}, [3073] = {.lex_state = 70}, [3074] = {.lex_state = 70}, - [3075] = {.lex_state = 14}, + [3075] = {.lex_state = 70}, [3076] = {.lex_state = 70}, - [3077] = {.lex_state = 14}, - [3078] = {.lex_state = 14}, - [3079] = {.lex_state = 14}, + [3077] = {.lex_state = 70}, + [3078] = {.lex_state = 70}, + [3079] = {.lex_state = 70}, [3080] = {.lex_state = 14}, - [3081] = {.lex_state = 14}, + [3081] = {.lex_state = 70}, [3082] = {.lex_state = 14}, - [3083] = {.lex_state = 70}, + [3083] = {.lex_state = 14}, [3084] = {.lex_state = 14}, [3085] = {.lex_state = 70}, - [3086] = {.lex_state = 19}, - [3087] = {.lex_state = 70}, - [3088] = {.lex_state = 70}, - [3089] = {.lex_state = 70}, + [3086] = {.lex_state = 70}, + [3087] = {.lex_state = 14}, + [3088] = {.lex_state = 14}, + [3089] = {.lex_state = 14}, [3090] = {.lex_state = 70}, [3091] = {.lex_state = 14}, - [3092] = {.lex_state = 70}, - [3093] = {.lex_state = 14}, + [3092] = {.lex_state = 19}, + [3093] = {.lex_state = 70}, [3094] = {.lex_state = 70}, - [3095] = {.lex_state = 14}, + [3095] = {.lex_state = 70}, [3096] = {.lex_state = 70}, - [3097] = {.lex_state = 5}, - [3098] = {.lex_state = 70}, + [3097] = {.lex_state = 70}, + [3098] = {.lex_state = 14}, [3099] = {.lex_state = 70}, - [3100] = {.lex_state = 5}, - [3101] = {.lex_state = 70}, + [3100] = {.lex_state = 70}, + [3101] = {.lex_state = 10, .external_lex_state = 5}, [3102] = {.lex_state = 70}, [3103] = {.lex_state = 70}, [3104] = {.lex_state = 70}, [3105] = {.lex_state = 70}, [3106] = {.lex_state = 70}, [3107] = {.lex_state = 14}, - [3108] = {.lex_state = 70}, - [3109] = {.lex_state = 14}, + [3108] = {.lex_state = 14}, + [3109] = {.lex_state = 70}, [3110] = {.lex_state = 70}, - [3111] = {.lex_state = 14}, + [3111] = {.lex_state = 70}, [3112] = {.lex_state = 70}, - [3113] = {.lex_state = 70}, - [3114] = {.lex_state = 70}, + [3113] = {.lex_state = 14}, + [3114] = {.lex_state = 27}, [3115] = {.lex_state = 70}, [3116] = {.lex_state = 70}, [3117] = {.lex_state = 14}, - [3118] = {.lex_state = 10, .external_lex_state = 6}, - [3119] = {.lex_state = 14}, - [3120] = {.lex_state = 70}, + [3118] = {.lex_state = 70}, + [3119] = {.lex_state = 70}, + [3120] = {.lex_state = 6}, [3121] = {.lex_state = 14}, [3122] = {.lex_state = 70}, [3123] = {.lex_state = 14}, [3124] = {.lex_state = 70}, - [3125] = {.lex_state = 70}, - [3126] = {.lex_state = 70}, - [3127] = {.lex_state = 14}, + [3125] = {.lex_state = 14}, + [3126] = {.lex_state = 14}, + [3127] = {.lex_state = 70}, [3128] = {.lex_state = 70}, - [3129] = {.lex_state = 14}, - [3130] = {.lex_state = 14}, - [3131] = {.lex_state = 14}, - [3132] = {.lex_state = 70}, + [3129] = {.lex_state = 70}, + [3130] = {.lex_state = 70}, + [3131] = {.lex_state = 70}, + [3132] = {.lex_state = 14}, [3133] = {.lex_state = 14}, - [3134] = {.lex_state = 70}, - [3135] = {.lex_state = 70}, + [3134] = {.lex_state = 14}, + [3135] = {.lex_state = 14}, [3136] = {.lex_state = 70}, - [3137] = {.lex_state = 70}, - [3138] = {.lex_state = 14}, + [3137] = {.lex_state = 14}, + [3138] = {.lex_state = 70}, [3139] = {.lex_state = 14}, - [3140] = {.lex_state = 14}, + [3140] = {.lex_state = 70}, [3141] = {.lex_state = 14}, - [3142] = {.lex_state = 14}, - [3143] = {.lex_state = 70}, + [3142] = {.lex_state = 70}, + [3143] = {.lex_state = 14}, [3144] = {.lex_state = 70}, - [3145] = {.lex_state = 10, .external_lex_state = 6}, + [3145] = {.lex_state = 70}, [3146] = {.lex_state = 70}, - [3147] = {.lex_state = 14}, - [3148] = {.lex_state = 14}, - [3149] = {.lex_state = 14}, + [3147] = {.lex_state = 70}, + [3148] = {.lex_state = 70}, + [3149] = {.lex_state = 70}, [3150] = {.lex_state = 70}, - [3151] = {.lex_state = 70}, + [3151] = {.lex_state = 14}, [3152] = {.lex_state = 70}, - [3153] = {.lex_state = 14}, - [3154] = {.lex_state = 14}, + [3153] = {.lex_state = 70}, + [3154] = {.lex_state = 70}, [3155] = {.lex_state = 14}, - [3156] = {.lex_state = 6}, - [3157] = {.lex_state = 70}, + [3156] = {.lex_state = 14}, + [3157] = {.lex_state = 14}, [3158] = {.lex_state = 70}, - [3159] = {.lex_state = 70}, - [3160] = {.lex_state = 14}, - [3161] = {.lex_state = 14}, - [3162] = {.lex_state = 14}, + [3159] = {.lex_state = 27}, + [3160] = {.lex_state = 70}, + [3161] = {.lex_state = 70}, + [3162] = {.lex_state = 70}, [3163] = {.lex_state = 14}, [3164] = {.lex_state = 70}, [3165] = {.lex_state = 70}, [3166] = {.lex_state = 14}, - [3167] = {.lex_state = 70}, + [3167] = {.lex_state = 14}, [3168] = {.lex_state = 70}, - [3169] = {.lex_state = 70}, - [3170] = {.lex_state = 70}, - [3171] = {.lex_state = 70}, - [3172] = {.lex_state = 14}, - [3173] = {.lex_state = 14}, + [3169] = {.lex_state = 14}, + [3170] = {.lex_state = 14}, + [3171] = {.lex_state = 14}, + [3172] = {.lex_state = 70}, + [3173] = {.lex_state = 70}, [3174] = {.lex_state = 14}, [3175] = {.lex_state = 14}, - [3176] = {.lex_state = 70}, - [3177] = {.lex_state = 70}, - [3178] = {.lex_state = 70}, + [3176] = {.lex_state = 14}, + [3177] = {.lex_state = 14}, + [3178] = {.lex_state = 14}, [3179] = {.lex_state = 14}, [3180] = {.lex_state = 14}, - [3181] = {.lex_state = 14}, + [3181] = {.lex_state = 70, .external_lex_state = 6}, [3182] = {.lex_state = 14}, - [3183] = {.lex_state = 14}, - [3184] = {.lex_state = 14}, + [3183] = {.lex_state = 27}, + [3184] = {.lex_state = 70}, [3185] = {.lex_state = 14}, [3186] = {.lex_state = 14}, [3187] = {.lex_state = 14}, @@ -13271,304 +13298,304 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3191] = {.lex_state = 14}, [3192] = {.lex_state = 14}, [3193] = {.lex_state = 14}, - [3194] = {.lex_state = 14}, + [3194] = {.lex_state = 10, .external_lex_state = 5}, [3195] = {.lex_state = 14}, - [3196] = {.lex_state = 14}, + [3196] = {.lex_state = 70}, [3197] = {.lex_state = 14}, [3198] = {.lex_state = 14}, [3199] = {.lex_state = 14}, - [3200] = {.lex_state = 70}, + [3200] = {.lex_state = 14}, [3201] = {.lex_state = 14}, [3202] = {.lex_state = 70}, - [3203] = {.lex_state = 70}, - [3204] = {.lex_state = 10, .external_lex_state = 6}, - [3205] = {.lex_state = 70}, - [3206] = {.lex_state = 70}, + [3203] = {.lex_state = 14}, + [3204] = {.lex_state = 70}, + [3205] = {.lex_state = 14}, + [3206] = {.lex_state = 14}, [3207] = {.lex_state = 70}, - [3208] = {.lex_state = 27}, - [3209] = {.lex_state = 70}, - [3210] = {.lex_state = 14}, - [3211] = {.lex_state = 14}, - [3212] = {.lex_state = 70}, + [3208] = {.lex_state = 70}, + [3209] = {.lex_state = 14}, + [3210] = {.lex_state = 70}, + [3211] = {.lex_state = 10}, + [3212] = {.lex_state = 14}, [3213] = {.lex_state = 14}, [3214] = {.lex_state = 70}, [3215] = {.lex_state = 70}, - [3216] = {.lex_state = 70}, + [3216] = {.lex_state = 5}, [3217] = {.lex_state = 14}, - [3218] = {.lex_state = 14}, + [3218] = {.lex_state = 5}, [3219] = {.lex_state = 70}, [3220] = {.lex_state = 70}, [3221] = {.lex_state = 70}, - [3222] = {.lex_state = 70}, + [3222] = {.lex_state = 14}, [3223] = {.lex_state = 70}, [3224] = {.lex_state = 70}, [3225] = {.lex_state = 70}, - [3226] = {.lex_state = 70}, - [3227] = {.lex_state = 14}, - [3228] = {.lex_state = 14}, + [3226] = {.lex_state = 14}, + [3227] = {.lex_state = 70}, + [3228] = {.lex_state = 70}, [3229] = {.lex_state = 70}, [3230] = {.lex_state = 70}, [3231] = {.lex_state = 70}, [3232] = {.lex_state = 70}, - [3233] = {.lex_state = 70}, + [3233] = {.lex_state = 14}, [3234] = {.lex_state = 70}, [3235] = {.lex_state = 70}, [3236] = {.lex_state = 70}, - [3237] = {.lex_state = 70}, - [3238] = {.lex_state = 70}, - [3239] = {.lex_state = 70}, + [3237] = {.lex_state = 14}, + [3238] = {.lex_state = 10}, + [3239] = {.lex_state = 14}, [3240] = {.lex_state = 70}, - [3241] = {.lex_state = 70}, + [3241] = {.lex_state = 14}, [3242] = {.lex_state = 70}, - [3243] = {.lex_state = 14}, + [3243] = {.lex_state = 70}, [3244] = {.lex_state = 70}, - [3245] = {.lex_state = 14}, - [3246] = {.lex_state = 70}, + [3245] = {.lex_state = 70}, + [3246] = {.lex_state = 6}, [3247] = {.lex_state = 70}, [3248] = {.lex_state = 70}, [3249] = {.lex_state = 70}, - [3250] = {.lex_state = 14}, + [3250] = {.lex_state = 27}, [3251] = {.lex_state = 70}, [3252] = {.lex_state = 70}, [3253] = {.lex_state = 70}, [3254] = {.lex_state = 70}, [3255] = {.lex_state = 70}, - [3256] = {.lex_state = 70}, - [3257] = {.lex_state = 14}, + [3256] = {.lex_state = 14}, + [3257] = {.lex_state = 70}, [3258] = {.lex_state = 70}, [3259] = {.lex_state = 70}, [3260] = {.lex_state = 70}, - [3261] = {.lex_state = 14}, + [3261] = {.lex_state = 70}, [3262] = {.lex_state = 70}, - [3263] = {.lex_state = 14}, - [3264] = {.lex_state = 70}, + [3263] = {.lex_state = 70}, + [3264] = {.lex_state = 27}, [3265] = {.lex_state = 70}, - [3266] = {.lex_state = 70, .external_lex_state = 5}, - [3267] = {.lex_state = 70}, - [3268] = {.lex_state = 27}, - [3269] = {.lex_state = 27}, + [3266] = {.lex_state = 27}, + [3267] = {.lex_state = 14}, + [3268] = {.lex_state = 14}, + [3269] = {.lex_state = 70}, [3270] = {.lex_state = 14}, - [3271] = {.lex_state = 14}, - [3272] = {.lex_state = 14}, + [3271] = {.lex_state = 70}, + [3272] = {.lex_state = 70}, [3273] = {.lex_state = 70}, - [3274] = {.lex_state = 70}, - [3275] = {.lex_state = 14}, + [3274] = {.lex_state = 14}, + [3275] = {.lex_state = 70}, [3276] = {.lex_state = 70}, [3277] = {.lex_state = 70}, - [3278] = {.lex_state = 14}, - [3279] = {.lex_state = 70}, - [3280] = {.lex_state = 27}, + [3278] = {.lex_state = 70}, + [3279] = {.lex_state = 14}, + [3280] = {.lex_state = 70}, [3281] = {.lex_state = 70}, [3282] = {.lex_state = 70}, [3283] = {.lex_state = 70}, [3284] = {.lex_state = 70}, [3285] = {.lex_state = 70}, - [3286] = {.lex_state = 70}, - [3287] = {.lex_state = 70}, + [3286] = {.lex_state = 14}, + [3287] = {.lex_state = 70, .external_lex_state = 6}, [3288] = {.lex_state = 70}, [3289] = {.lex_state = 70}, - [3290] = {.lex_state = 70}, - [3291] = {.lex_state = 14}, + [3290] = {.lex_state = 14}, + [3291] = {.lex_state = 70}, [3292] = {.lex_state = 70}, - [3293] = {.lex_state = 14}, + [3293] = {.lex_state = 70}, [3294] = {.lex_state = 70}, [3295] = {.lex_state = 70}, - [3296] = {.lex_state = 14}, - [3297] = {.lex_state = 70}, + [3296] = {.lex_state = 70}, + [3297] = {.lex_state = 14}, [3298] = {.lex_state = 70}, - [3299] = {.lex_state = 14}, + [3299] = {.lex_state = 70}, [3300] = {.lex_state = 70}, - [3301] = {.lex_state = 10}, - [3302] = {.lex_state = 6}, + [3301] = {.lex_state = 14}, + [3302] = {.lex_state = 70}, [3303] = {.lex_state = 14}, - [3304] = {.lex_state = 10}, - [3305] = {.lex_state = 14}, - [3306] = {.lex_state = 14}, - [3307] = {.lex_state = 14}, - [3308] = {.lex_state = 70}, + [3304] = {.lex_state = 14}, + [3305] = {.lex_state = 70}, + [3306] = {.lex_state = 70}, + [3307] = {.lex_state = 70}, + [3308] = {.lex_state = 14}, [3309] = {.lex_state = 70}, [3310] = {.lex_state = 14}, - [3311] = {.lex_state = 27}, - [3312] = {.lex_state = 27}, + [3311] = {.lex_state = 70}, + [3312] = {.lex_state = 14}, [3313] = {.lex_state = 14}, [3314] = {.lex_state = 14}, [3315] = {.lex_state = 70}, [3316] = {.lex_state = 14}, [3317] = {.lex_state = 14}, [3318] = {.lex_state = 14}, - [3319] = {.lex_state = 14}, - [3320] = {.lex_state = 70}, - [3321] = {.lex_state = 14}, + [3319] = {.lex_state = 70}, + [3320] = {.lex_state = 14}, + [3321] = {.lex_state = 70}, [3322] = {.lex_state = 70}, - [3323] = {.lex_state = 70}, - [3324] = {.lex_state = 70}, + [3323] = {.lex_state = 14}, + [3324] = {.lex_state = 14}, [3325] = {.lex_state = 14}, - [3326] = {.lex_state = 70}, + [3326] = {.lex_state = 14}, [3327] = {.lex_state = 70}, [3328] = {.lex_state = 14}, - [3329] = {.lex_state = 70}, - [3330] = {.lex_state = 14}, + [3329] = {.lex_state = 14}, + [3330] = {.lex_state = 70}, [3331] = {.lex_state = 14}, - [3332] = {.lex_state = 14}, + [3332] = {.lex_state = 70}, [3333] = {.lex_state = 14}, - [3334] = {.lex_state = 165}, + [3334] = {.lex_state = 14}, [3335] = {.lex_state = 70}, [3336] = {.lex_state = 14}, [3337] = {.lex_state = 70}, - [3338] = {.lex_state = 70}, + [3338] = {.lex_state = 14}, [3339] = {.lex_state = 70}, - [3340] = {.lex_state = 70}, + [3340] = {.lex_state = 14}, [3341] = {.lex_state = 14}, - [3342] = {.lex_state = 70}, - [3343] = {.lex_state = 70}, - [3344] = {.lex_state = 70}, + [3342] = {.lex_state = 14}, + [3343] = {.lex_state = 14}, + [3344] = {.lex_state = 14}, [3345] = {.lex_state = 70}, - [3346] = {.lex_state = 70, .external_lex_state = 7}, - [3347] = {.lex_state = 70}, + [3346] = {.lex_state = 70}, + [3347] = {.lex_state = 19}, [3348] = {.lex_state = 70}, - [3349] = {.lex_state = 70}, + [3349] = {.lex_state = 14}, [3350] = {.lex_state = 70}, [3351] = {.lex_state = 70}, - [3352] = {.lex_state = 70}, - [3353] = {.lex_state = 70}, + [3352] = {.lex_state = 14}, + [3353] = {.lex_state = 71}, [3354] = {.lex_state = 14}, [3355] = {.lex_state = 14}, - [3356] = {.lex_state = 70}, - [3357] = {.lex_state = 14}, - [3358] = {.lex_state = 14}, + [3356] = {.lex_state = 71}, + [3357] = {.lex_state = 19}, + [3358] = {.lex_state = 70}, [3359] = {.lex_state = 70}, [3360] = {.lex_state = 14}, [3361] = {.lex_state = 70}, - [3362] = {.lex_state = 14}, - [3363] = {.lex_state = 70}, - [3364] = {.lex_state = 14}, - [3365] = {.lex_state = 14}, + [3362] = {.lex_state = 70}, + [3363] = {.lex_state = 14}, + [3364] = {.lex_state = 70}, + [3365] = {.lex_state = 70}, [3366] = {.lex_state = 70}, - [3367] = {.lex_state = 14}, - [3368] = {.lex_state = 14}, - [3369] = {.lex_state = 14}, - [3370] = {.lex_state = 14}, + [3367] = {.lex_state = 70}, + [3368] = {.lex_state = 70}, + [3369] = {.lex_state = 70}, + [3370] = {.lex_state = 70}, [3371] = {.lex_state = 14}, [3372] = {.lex_state = 70}, - [3373] = {.lex_state = 70}, - [3374] = {.lex_state = 19}, + [3373] = {.lex_state = 70, .external_lex_state = 7}, + [3374] = {.lex_state = 14}, [3375] = {.lex_state = 70}, - [3376] = {.lex_state = 70}, - [3377] = {.lex_state = 70}, - [3378] = {.lex_state = 70}, + [3376] = {.lex_state = 14}, + [3377] = {.lex_state = 14}, + [3378] = {.lex_state = 14}, [3379] = {.lex_state = 14}, - [3380] = {.lex_state = 70}, - [3381] = {.lex_state = 19}, - [3382] = {.lex_state = 14}, + [3380] = {.lex_state = 14}, + [3381] = {.lex_state = 14}, + [3382] = {.lex_state = 70}, [3383] = {.lex_state = 70}, - [3384] = {.lex_state = 70}, - [3385] = {.lex_state = 70}, + [3384] = {.lex_state = 14}, + [3385] = {.lex_state = 14}, [3386] = {.lex_state = 70}, - [3387] = {.lex_state = 14}, + [3387] = {.lex_state = 70}, [3388] = {.lex_state = 70}, [3389] = {.lex_state = 70}, [3390] = {.lex_state = 70}, - [3391] = {.lex_state = 70}, - [3392] = {.lex_state = 70}, + [3391] = {.lex_state = 19}, + [3392] = {.lex_state = 71}, [3393] = {.lex_state = 70}, - [3394] = {.lex_state = 70}, - [3395] = {.lex_state = 14}, - [3396] = {.lex_state = 70}, + [3394] = {.lex_state = 14}, + [3395] = {.lex_state = 70}, + [3396] = {.lex_state = 14}, [3397] = {.lex_state = 70}, [3398] = {.lex_state = 70}, [3399] = {.lex_state = 70}, - [3400] = {.lex_state = 70}, - [3401] = {.lex_state = 70, .external_lex_state = 7}, - [3402] = {.lex_state = 71}, - [3403] = {.lex_state = 70}, + [3400] = {.lex_state = 14}, + [3401] = {.lex_state = 70}, + [3402] = {.lex_state = 14}, + [3403] = {.lex_state = 14}, [3404] = {.lex_state = 70}, - [3405] = {.lex_state = 14}, - [3406] = {.lex_state = 14}, - [3407] = {.lex_state = 14}, - [3408] = {.lex_state = 70}, - [3409] = {.lex_state = 70}, + [3405] = {.lex_state = 70}, + [3406] = {.lex_state = 70}, + [3407] = {.lex_state = 70}, + [3408] = {.lex_state = 14}, + [3409] = {.lex_state = 14}, [3410] = {.lex_state = 70}, [3411] = {.lex_state = 70}, - [3412] = {.lex_state = 70, .external_lex_state = 8}, + [3412] = {.lex_state = 14}, [3413] = {.lex_state = 70}, - [3414] = {.lex_state = 70, .external_lex_state = 7}, + [3414] = {.lex_state = 70}, [3415] = {.lex_state = 14}, - [3416] = {.lex_state = 70}, - [3417] = {.lex_state = 14}, - [3418] = {.lex_state = 70}, + [3416] = {.lex_state = 14}, + [3417] = {.lex_state = 71}, + [3418] = {.lex_state = 165}, [3419] = {.lex_state = 70}, - [3420] = {.lex_state = 70}, - [3421] = {.lex_state = 70}, + [3420] = {.lex_state = 19}, + [3421] = {.lex_state = 70, .external_lex_state = 8}, [3422] = {.lex_state = 70}, [3423] = {.lex_state = 70}, [3424] = {.lex_state = 70}, - [3425] = {.lex_state = 70}, - [3426] = {.lex_state = 70}, + [3425] = {.lex_state = 19}, + [3426] = {.lex_state = 14}, [3427] = {.lex_state = 70}, - [3428] = {.lex_state = 14}, - [3429] = {.lex_state = 19}, - [3430] = {.lex_state = 70}, - [3431] = {.lex_state = 70, .external_lex_state = 8}, - [3432] = {.lex_state = 10}, + [3428] = {.lex_state = 70}, + [3429] = {.lex_state = 70}, + [3430] = {.lex_state = 19}, + [3431] = {.lex_state = 14}, + [3432] = {.lex_state = 70}, [3433] = {.lex_state = 70}, - [3434] = {.lex_state = 10}, - [3435] = {.lex_state = 70}, - [3436] = {.lex_state = 14}, - [3437] = {.lex_state = 70}, + [3434] = {.lex_state = 70, .external_lex_state = 8}, + [3435] = {.lex_state = 70, .external_lex_state = 9}, + [3436] = {.lex_state = 70}, + [3437] = {.lex_state = 70, .external_lex_state = 8}, [3438] = {.lex_state = 70}, [3439] = {.lex_state = 70}, - [3440] = {.lex_state = 71}, - [3441] = {.lex_state = 19}, + [3440] = {.lex_state = 19}, + [3441] = {.lex_state = 70}, [3442] = {.lex_state = 70}, [3443] = {.lex_state = 70}, - [3444] = {.lex_state = 14}, + [3444] = {.lex_state = 70}, [3445] = {.lex_state = 70}, [3446] = {.lex_state = 14}, [3447] = {.lex_state = 70}, - [3448] = {.lex_state = 14}, - [3449] = {.lex_state = 70}, - [3450] = {.lex_state = 71}, - [3451] = {.lex_state = 70}, - [3452] = {.lex_state = 71}, - [3453] = {.lex_state = 14}, - [3454] = {.lex_state = 70, .external_lex_state = 7}, + [3448] = {.lex_state = 70}, + [3449] = {.lex_state = 70, .external_lex_state = 9}, + [3450] = {.lex_state = 70}, + [3451] = {.lex_state = 14}, + [3452] = {.lex_state = 70}, + [3453] = {.lex_state = 70}, + [3454] = {.lex_state = 70}, [3455] = {.lex_state = 70}, [3456] = {.lex_state = 70}, - [3457] = {.lex_state = 70, .external_lex_state = 8}, + [3457] = {.lex_state = 70}, [3458] = {.lex_state = 70}, - [3459] = {.lex_state = 14}, + [3459] = {.lex_state = 70}, [3460] = {.lex_state = 70}, [3461] = {.lex_state = 70}, [3462] = {.lex_state = 70}, - [3463] = {.lex_state = 70, .external_lex_state = 7}, - [3464] = {.lex_state = 14}, - [3465] = {.lex_state = 14}, - [3466] = {.lex_state = 70}, + [3463] = {.lex_state = 70}, + [3464] = {.lex_state = 70}, + [3465] = {.lex_state = 70}, + [3466] = {.lex_state = 14}, [3467] = {.lex_state = 70}, - [3468] = {.lex_state = 70, .external_lex_state = 9}, - [3469] = {.lex_state = 71}, + [3468] = {.lex_state = 70}, + [3469] = {.lex_state = 70}, [3470] = {.lex_state = 70}, - [3471] = {.lex_state = 70}, - [3472] = {.lex_state = 70}, + [3471] = {.lex_state = 14}, + [3472] = {.lex_state = 70, .external_lex_state = 8}, [3473] = {.lex_state = 70}, [3474] = {.lex_state = 70}, - [3475] = {.lex_state = 19}, - [3476] = {.lex_state = 70}, - [3477] = {.lex_state = 70}, - [3478] = {.lex_state = 70, .external_lex_state = 9}, + [3475] = {.lex_state = 14}, + [3476] = {.lex_state = 14}, + [3477] = {.lex_state = 14}, + [3478] = {.lex_state = 14}, [3479] = {.lex_state = 70}, - [3480] = {.lex_state = 70}, + [3480] = {.lex_state = 14}, [3481] = {.lex_state = 70}, - [3482] = {.lex_state = 70}, + [3482] = {.lex_state = 70, .external_lex_state = 9}, [3483] = {.lex_state = 70}, - [3484] = {.lex_state = 14}, - [3485] = {.lex_state = 14}, + [3484] = {.lex_state = 70}, + [3485] = {.lex_state = 70}, [3486] = {.lex_state = 70}, - [3487] = {.lex_state = 70}, + [3487] = {.lex_state = 14}, [3488] = {.lex_state = 70}, - [3489] = {.lex_state = 70}, - [3490] = {.lex_state = 14}, - [3491] = {.lex_state = 70}, + [3489] = {.lex_state = 70, .external_lex_state = 7}, + [3490] = {.lex_state = 70, .external_lex_state = 9}, + [3491] = {.lex_state = 14}, [3492] = {.lex_state = 70}, [3493] = {.lex_state = 70}, [3494] = {.lex_state = 70}, @@ -13577,142 +13604,152 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3497] = {.lex_state = 70}, [3498] = {.lex_state = 70}, [3499] = {.lex_state = 70}, - [3500] = {.lex_state = 14}, - [3501] = {.lex_state = 71}, - [3502] = {.lex_state = 70}, - [3503] = {.lex_state = 70}, + [3500] = {.lex_state = 19}, + [3501] = {.lex_state = 70}, + [3502] = {.lex_state = 14}, + [3503] = {.lex_state = 14}, [3504] = {.lex_state = 70}, [3505] = {.lex_state = 70}, [3506] = {.lex_state = 14}, - [3507] = {.lex_state = 14}, - [3508] = {.lex_state = 19}, - [3509] = {.lex_state = 14}, + [3507] = {.lex_state = 70}, + [3508] = {.lex_state = 71}, + [3509] = {.lex_state = 70}, [3510] = {.lex_state = 70}, - [3511] = {.lex_state = 70, .external_lex_state = 9}, - [3512] = {.lex_state = 14}, + [3511] = {.lex_state = 10}, + [3512] = {.lex_state = 70}, [3513] = {.lex_state = 14}, - [3514] = {.lex_state = 70}, + [3514] = {.lex_state = 14}, [3515] = {.lex_state = 70}, - [3516] = {.lex_state = 19}, + [3516] = {.lex_state = 70, .external_lex_state = 8}, [3517] = {.lex_state = 70}, [3518] = {.lex_state = 70}, - [3519] = {.lex_state = 14}, + [3519] = {.lex_state = 71}, [3520] = {.lex_state = 70}, [3521] = {.lex_state = 70}, [3522] = {.lex_state = 70}, - [3523] = {.lex_state = 14}, + [3523] = {.lex_state = 70, .external_lex_state = 7}, [3524] = {.lex_state = 70}, [3525] = {.lex_state = 70}, - [3526] = {.lex_state = 70}, + [3526] = {.lex_state = 19}, [3527] = {.lex_state = 70}, - [3528] = {.lex_state = 14}, + [3528] = {.lex_state = 70}, [3529] = {.lex_state = 70}, - [3530] = {.lex_state = 70, .external_lex_state = 9}, + [3530] = {.lex_state = 70}, [3531] = {.lex_state = 70}, - [3532] = {.lex_state = 70, .external_lex_state = 8}, + [3532] = {.lex_state = 70}, [3533] = {.lex_state = 70}, [3534] = {.lex_state = 70}, [3535] = {.lex_state = 70}, - [3536] = {.lex_state = 70, .external_lex_state = 9}, + [3536] = {.lex_state = 70}, [3537] = {.lex_state = 70}, [3538] = {.lex_state = 70}, [3539] = {.lex_state = 70}, [3540] = {.lex_state = 70}, - [3541] = {.lex_state = 70}, + [3541] = {.lex_state = 70, .external_lex_state = 7}, [3542] = {.lex_state = 70}, - [3543] = {.lex_state = 70}, + [3543] = {.lex_state = 10}, [3544] = {.lex_state = 70}, [3545] = {.lex_state = 70}, [3546] = {.lex_state = 70}, - [3547] = {.lex_state = 70}, + [3547] = {.lex_state = 70, .external_lex_state = 7}, [3548] = {.lex_state = 70}, [3549] = {.lex_state = 70}, [3550] = {.lex_state = 70}, - [3551] = {.lex_state = 19}, - [3552] = {.lex_state = 19}, + [3551] = {.lex_state = 70}, + [3552] = {.lex_state = 70}, [3553] = {.lex_state = 70}, - [3554] = {.lex_state = 14}, + [3554] = {.lex_state = 70}, [3555] = {.lex_state = 70}, - [3556] = {.lex_state = 19}, - [3557] = {.lex_state = 19}, - [3558] = {.lex_state = 14}, + [3556] = {.lex_state = 70}, + [3557] = {.lex_state = 70}, + [3558] = {.lex_state = 70}, [3559] = {.lex_state = 70}, [3560] = {.lex_state = 70}, [3561] = {.lex_state = 70}, - [3562] = {.lex_state = 19}, - [3563] = {.lex_state = 14}, - [3564] = {.lex_state = 14}, - [3565] = {.lex_state = 70}, - [3566] = {.lex_state = 14}, - [3567] = {.lex_state = 70}, - [3568] = {.lex_state = 70}, - [3569] = {.lex_state = 19}, - [3570] = {.lex_state = 14}, + [3562] = {.lex_state = 70}, + [3563] = {.lex_state = 19}, + [3564] = {.lex_state = 70}, + [3565] = {.lex_state = 71}, + [3566] = {.lex_state = 70}, + [3567] = {.lex_state = 19}, + [3568] = {.lex_state = 19}, + [3569] = {.lex_state = 70}, + [3570] = {.lex_state = 70}, [3571] = {.lex_state = 70}, - [3572] = {.lex_state = 19}, + [3572] = {.lex_state = 70}, [3573] = {.lex_state = 19}, - [3574] = {.lex_state = 71}, - [3575] = {.lex_state = 14}, - [3576] = {.lex_state = 19}, - [3577] = {.lex_state = 19}, - [3578] = {.lex_state = 70}, + [3574] = {.lex_state = 14}, + [3575] = {.lex_state = 70}, + [3576] = {.lex_state = 14}, + [3577] = {.lex_state = 70}, + [3578] = {.lex_state = 14}, [3579] = {.lex_state = 70}, [3580] = {.lex_state = 70}, - [3581] = {.lex_state = 70, .external_lex_state = 7}, - [3582] = {.lex_state = 19}, - [3583] = {.lex_state = 70}, - [3584] = {.lex_state = 70}, + [3581] = {.lex_state = 71}, + [3582] = {.lex_state = 14}, + [3583] = {.lex_state = 19}, + [3584] = {.lex_state = 14}, [3585] = {.lex_state = 70}, [3586] = {.lex_state = 70}, - [3587] = {.lex_state = 70}, + [3587] = {.lex_state = 19}, [3588] = {.lex_state = 70}, - [3589] = {.lex_state = 70}, - [3590] = {.lex_state = 71}, - [3591] = {.lex_state = 14}, - [3592] = {.lex_state = 70}, - [3593] = {.lex_state = 19}, + [3589] = {.lex_state = 19}, + [3590] = {.lex_state = 70, .external_lex_state = 9}, + [3591] = {.lex_state = 70}, + [3592] = {.lex_state = 19}, + [3593] = {.lex_state = 70}, [3594] = {.lex_state = 70}, - [3595] = {.lex_state = 19}, + [3595] = {.lex_state = 70, .external_lex_state = 8}, [3596] = {.lex_state = 70}, - [3597] = {.lex_state = 70}, - [3598] = {.lex_state = 19}, + [3597] = {.lex_state = 14}, + [3598] = {.lex_state = 70}, [3599] = {.lex_state = 14}, - [3600] = {.lex_state = 14}, - [3601] = {.lex_state = 19}, - [3602] = {.lex_state = 19}, - [3603] = {.lex_state = 70, .external_lex_state = 8}, + [3600] = {.lex_state = 70}, + [3601] = {.lex_state = 70}, + [3602] = {.lex_state = 14}, + [3603] = {.lex_state = 19}, [3604] = {.lex_state = 70}, [3605] = {.lex_state = 19}, - [3606] = {.lex_state = 19}, - [3607] = {.lex_state = 19}, - [3608] = {.lex_state = 70}, - [3609] = {.lex_state = 14}, + [3606] = {.lex_state = 70}, + [3607] = {.lex_state = 70}, + [3608] = {.lex_state = 19}, + [3609] = {.lex_state = 70}, [3610] = {.lex_state = 70}, - [3611] = {.lex_state = 70}, - [3612] = {.lex_state = 14}, - [3613] = {.lex_state = 19}, - [3614] = {.lex_state = 70, .external_lex_state = 9}, - [3615] = {.lex_state = 14}, - [3616] = {.lex_state = 14}, - [3617] = {.lex_state = 70}, - [3618] = {.lex_state = 14}, + [3611] = {.lex_state = 19}, + [3612] = {.lex_state = 19}, + [3613] = {.lex_state = 70}, + [3614] = {.lex_state = 14}, + [3615] = {.lex_state = 19}, + [3616] = {.lex_state = 19}, + [3617] = {.lex_state = 19}, + [3618] = {.lex_state = 19}, [3619] = {.lex_state = 14}, - [3620] = {.lex_state = 14}, - [3621] = {.lex_state = 70}, - [3622] = {.lex_state = 70}, - [3623] = {.lex_state = 14}, - [3624] = {.lex_state = 14}, - [3625] = {.lex_state = 70}, - [3626] = {.lex_state = 70}, - [3627] = {.lex_state = 70}, - [3628] = {.lex_state = 19}, - [3629] = {(TSStateId)(-1)}, - [3630] = {(TSStateId)(-1)}, - [3631] = {(TSStateId)(-1)}, - [3632] = {(TSStateId)(-1)}, - [3633] = {(TSStateId)(-1)}, - [3634] = {(TSStateId)(-1)}, - [3635] = {(TSStateId)(-1)}, + [3620] = {.lex_state = 70}, + [3621] = {.lex_state = 19}, + [3622] = {.lex_state = 14}, + [3623] = {.lex_state = 19}, + [3624] = {.lex_state = 70}, + [3625] = {.lex_state = 14}, + [3626] = {.lex_state = 14}, + [3627] = {.lex_state = 14}, + [3628] = {.lex_state = 14}, + [3629] = {.lex_state = 70, .external_lex_state = 7}, + [3630] = {.lex_state = 70}, + [3631] = {.lex_state = 14}, + [3632] = {.lex_state = 14}, + [3633] = {.lex_state = 14}, + [3634] = {.lex_state = 70}, + [3635] = {.lex_state = 70}, + [3636] = {.lex_state = 70}, + [3637] = {.lex_state = 70}, + [3638] = {.lex_state = 14}, + [3639] = {(TSStateId)(-1)}, + [3640] = {(TSStateId)(-1)}, + [3641] = {(TSStateId)(-1)}, + [3642] = {(TSStateId)(-1)}, + [3643] = {(TSStateId)(-1)}, + [3644] = {(TSStateId)(-1)}, + [3645] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -13839,6 +13876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT2] = ACTIONS(1), [anon_sym_dyn] = ACTIONS(1), [sym_mutable_specifier] = ACTIONS(1), + [anon_sym_raw] = ACTIONS(1), [anon_sym_yield] = ACTIONS(1), [anon_sym_move] = ACTIONS(1), [anon_sym_try] = ACTIONS(1), @@ -13870,83 +13908,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(3505), - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1876), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_source_file] = STATE(3604), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1882), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -14026,89 +14064,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [2] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1876), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1814), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [ts_builtin_sym_end] = ACTIONS(119), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(119), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14180,82 +14218,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [3] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1820), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1813), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14334,89 +14372,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [4] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1821), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1882), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), - [aux_sym_source_file_repeat1] = STATE(34), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [ts_builtin_sym_end] = ACTIONS(125), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(125), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14488,83 +14526,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [5] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1876), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1882), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [ts_builtin_sym_end] = ACTIONS(119), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [ts_builtin_sym_end] = ACTIONS(125), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14642,89 +14680,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [6] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1876), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1783), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [ts_builtin_sym_end] = ACTIONS(127), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(127), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14796,243 +14834,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [7] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1876), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1882), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(7), [sym_block_comment] = STATE(7), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [ts_builtin_sym_end] = ACTIONS(129), - [sym_identifier] = ACTIONS(131), - [anon_sym_SEMI] = ACTIONS(134), - [anon_sym_macro_rules_BANG] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(146), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_u8] = ACTIONS(152), - [anon_sym_i8] = ACTIONS(152), - [anon_sym_u16] = ACTIONS(152), - [anon_sym_i16] = ACTIONS(152), - [anon_sym_u32] = ACTIONS(152), - [anon_sym_i32] = ACTIONS(152), - [anon_sym_u64] = ACTIONS(152), - [anon_sym_i64] = ACTIONS(152), - [anon_sym_u128] = ACTIONS(152), - [anon_sym_i128] = ACTIONS(152), - [anon_sym_isize] = ACTIONS(152), - [anon_sym_usize] = ACTIONS(152), - [anon_sym_f32] = ACTIONS(152), - [anon_sym_f64] = ACTIONS(152), - [anon_sym_bool] = ACTIONS(152), - [anon_sym_str] = ACTIONS(152), - [anon_sym_char] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_AMP] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(158), - [anon_sym_LT] = ACTIONS(161), - [anon_sym_DOT_DOT] = ACTIONS(164), - [anon_sym_COLON_COLON] = ACTIONS(167), - [anon_sym_POUND] = ACTIONS(170), - [anon_sym_SQUOTE] = ACTIONS(173), - [anon_sym_async] = ACTIONS(176), - [anon_sym_break] = ACTIONS(179), - [anon_sym_const] = ACTIONS(182), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_default] = ACTIONS(188), - [anon_sym_enum] = ACTIONS(191), - [anon_sym_fn] = ACTIONS(194), - [anon_sym_for] = ACTIONS(197), - [anon_sym_gen] = ACTIONS(200), - [anon_sym_if] = ACTIONS(203), - [anon_sym_impl] = ACTIONS(206), - [anon_sym_let] = ACTIONS(209), - [anon_sym_loop] = ACTIONS(212), - [anon_sym_match] = ACTIONS(215), - [anon_sym_mod] = ACTIONS(218), - [anon_sym_pub] = ACTIONS(221), - [anon_sym_return] = ACTIONS(224), - [anon_sym_static] = ACTIONS(227), - [anon_sym_struct] = ACTIONS(230), - [anon_sym_trait] = ACTIONS(233), - [anon_sym_type] = ACTIONS(236), - [anon_sym_union] = ACTIONS(239), - [anon_sym_unsafe] = ACTIONS(242), - [anon_sym_use] = ACTIONS(245), - [anon_sym_while] = ACTIONS(248), - [anon_sym_extern] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(254), - [anon_sym_move] = ACTIONS(257), - [anon_sym_try] = ACTIONS(260), - [sym_integer_literal] = ACTIONS(263), - [aux_sym_string_literal_token1] = ACTIONS(266), - [sym_char_literal] = ACTIONS(263), - [anon_sym_true] = ACTIONS(269), - [anon_sym_false] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(272), - [sym_super] = ACTIONS(275), - [sym_crate] = ACTIONS(278), - [sym_metavariable] = ACTIONS(281), - [sym__raw_string_literal_start] = ACTIONS(284), - [sym_float_literal] = ACTIONS(263), - }, - [8] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1846), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(8), - [sym_block_comment] = STATE(8), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(287), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15103,83 +14987,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [8] = { + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1882), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(8), + [sym_block_comment] = STATE(8), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [ts_builtin_sym_end] = ACTIONS(131), + [sym_identifier] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(136), + [anon_sym_macro_rules_BANG] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(148), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_u8] = ACTIONS(154), + [anon_sym_i8] = ACTIONS(154), + [anon_sym_u16] = ACTIONS(154), + [anon_sym_i16] = ACTIONS(154), + [anon_sym_u32] = ACTIONS(154), + [anon_sym_i32] = ACTIONS(154), + [anon_sym_u64] = ACTIONS(154), + [anon_sym_i64] = ACTIONS(154), + [anon_sym_u128] = ACTIONS(154), + [anon_sym_i128] = ACTIONS(154), + [anon_sym_isize] = ACTIONS(154), + [anon_sym_usize] = ACTIONS(154), + [anon_sym_f32] = ACTIONS(154), + [anon_sym_f64] = ACTIONS(154), + [anon_sym_bool] = ACTIONS(154), + [anon_sym_str] = ACTIONS(154), + [anon_sym_char] = ACTIONS(154), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_POUND] = ACTIONS(172), + [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_async] = ACTIONS(178), + [anon_sym_break] = ACTIONS(181), + [anon_sym_const] = ACTIONS(184), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_default] = ACTIONS(190), + [anon_sym_enum] = ACTIONS(193), + [anon_sym_fn] = ACTIONS(196), + [anon_sym_for] = ACTIONS(199), + [anon_sym_gen] = ACTIONS(202), + [anon_sym_if] = ACTIONS(205), + [anon_sym_impl] = ACTIONS(208), + [anon_sym_let] = ACTIONS(211), + [anon_sym_loop] = ACTIONS(214), + [anon_sym_match] = ACTIONS(217), + [anon_sym_mod] = ACTIONS(220), + [anon_sym_pub] = ACTIONS(223), + [anon_sym_return] = ACTIONS(226), + [anon_sym_static] = ACTIONS(229), + [anon_sym_struct] = ACTIONS(232), + [anon_sym_trait] = ACTIONS(235), + [anon_sym_type] = ACTIONS(238), + [anon_sym_union] = ACTIONS(241), + [anon_sym_unsafe] = ACTIONS(244), + [anon_sym_use] = ACTIONS(247), + [anon_sym_while] = ACTIONS(250), + [anon_sym_extern] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(256), + [anon_sym_move] = ACTIONS(259), + [anon_sym_try] = ACTIONS(262), + [sym_integer_literal] = ACTIONS(265), + [aux_sym_string_literal_token1] = ACTIONS(268), + [sym_char_literal] = ACTIONS(265), + [anon_sym_true] = ACTIONS(271), + [anon_sym_false] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(274), + [sym_super] = ACTIONS(277), + [sym_crate] = ACTIONS(280), + [sym_metavariable] = ACTIONS(283), + [sym__raw_string_literal_start] = ACTIONS(286), + [sym_float_literal] = ACTIONS(265), + }, [9] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1663), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1705), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(9), [sym_block_comment] = STATE(9), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15258,82 +15296,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [10] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1738), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1752), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(10), [sym_block_comment] = STATE(10), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15412,82 +15450,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [11] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1745), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1800), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15566,236 +15604,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [12] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1876), - [sym_macro_invocation] = STATE(402), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1716), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(12), [sym_block_comment] = STATE(12), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(131), - [anon_sym_SEMI] = ACTIONS(134), - [anon_sym_macro_rules_BANG] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(143), - [anon_sym_LBRACE] = ACTIONS(146), - [anon_sym_RBRACE] = ACTIONS(129), - [anon_sym_STAR] = ACTIONS(149), - [anon_sym_u8] = ACTIONS(152), - [anon_sym_i8] = ACTIONS(152), - [anon_sym_u16] = ACTIONS(152), - [anon_sym_i16] = ACTIONS(152), - [anon_sym_u32] = ACTIONS(152), - [anon_sym_i32] = ACTIONS(152), - [anon_sym_u64] = ACTIONS(152), - [anon_sym_i64] = ACTIONS(152), - [anon_sym_u128] = ACTIONS(152), - [anon_sym_i128] = ACTIONS(152), - [anon_sym_isize] = ACTIONS(152), - [anon_sym_usize] = ACTIONS(152), - [anon_sym_f32] = ACTIONS(152), - [anon_sym_f64] = ACTIONS(152), - [anon_sym_bool] = ACTIONS(152), - [anon_sym_str] = ACTIONS(152), - [anon_sym_char] = ACTIONS(152), - [anon_sym_DASH] = ACTIONS(149), - [anon_sym_BANG] = ACTIONS(149), - [anon_sym_AMP] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(158), - [anon_sym_LT] = ACTIONS(161), - [anon_sym_DOT_DOT] = ACTIONS(164), - [anon_sym_COLON_COLON] = ACTIONS(167), - [anon_sym_POUND] = ACTIONS(170), - [anon_sym_SQUOTE] = ACTIONS(173), - [anon_sym_async] = ACTIONS(176), - [anon_sym_break] = ACTIONS(179), - [anon_sym_const] = ACTIONS(182), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_default] = ACTIONS(188), - [anon_sym_enum] = ACTIONS(191), - [anon_sym_fn] = ACTIONS(194), - [anon_sym_for] = ACTIONS(197), - [anon_sym_gen] = ACTIONS(200), - [anon_sym_if] = ACTIONS(203), - [anon_sym_impl] = ACTIONS(206), - [anon_sym_let] = ACTIONS(209), - [anon_sym_loop] = ACTIONS(212), - [anon_sym_match] = ACTIONS(215), - [anon_sym_mod] = ACTIONS(218), - [anon_sym_pub] = ACTIONS(221), - [anon_sym_return] = ACTIONS(224), - [anon_sym_static] = ACTIONS(227), - [anon_sym_struct] = ACTIONS(230), - [anon_sym_trait] = ACTIONS(233), - [anon_sym_type] = ACTIONS(236), - [anon_sym_union] = ACTIONS(239), - [anon_sym_unsafe] = ACTIONS(242), - [anon_sym_use] = ACTIONS(245), - [anon_sym_while] = ACTIONS(248), - [anon_sym_extern] = ACTIONS(251), - [anon_sym_yield] = ACTIONS(254), - [anon_sym_move] = ACTIONS(257), - [anon_sym_try] = ACTIONS(260), - [sym_integer_literal] = ACTIONS(263), - [aux_sym_string_literal_token1] = ACTIONS(266), - [sym_char_literal] = ACTIONS(263), - [anon_sym_true] = ACTIONS(269), - [anon_sym_false] = ACTIONS(269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(272), - [sym_super] = ACTIONS(275), - [sym_crate] = ACTIONS(278), - [sym_metavariable] = ACTIONS(281), - [sym__raw_string_literal_start] = ACTIONS(284), - [sym_float_literal] = ACTIONS(263), - }, - [13] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1755), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(13), - [sym_block_comment] = STATE(13), - [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15873,83 +15757,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [14] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1759), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(14), - [sym_block_comment] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [13] = { + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(13), + [sym_block_comment] = STATE(13), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16027,83 +15911,237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [14] = { + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1882), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(14), + [sym_block_comment] = STATE(14), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(136), + [anon_sym_macro_rules_BANG] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(148), + [anon_sym_RBRACE] = ACTIONS(131), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_u8] = ACTIONS(154), + [anon_sym_i8] = ACTIONS(154), + [anon_sym_u16] = ACTIONS(154), + [anon_sym_i16] = ACTIONS(154), + [anon_sym_u32] = ACTIONS(154), + [anon_sym_i32] = ACTIONS(154), + [anon_sym_u64] = ACTIONS(154), + [anon_sym_i64] = ACTIONS(154), + [anon_sym_u128] = ACTIONS(154), + [anon_sym_i128] = ACTIONS(154), + [anon_sym_isize] = ACTIONS(154), + [anon_sym_usize] = ACTIONS(154), + [anon_sym_f32] = ACTIONS(154), + [anon_sym_f64] = ACTIONS(154), + [anon_sym_bool] = ACTIONS(154), + [anon_sym_str] = ACTIONS(154), + [anon_sym_char] = ACTIONS(154), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_POUND] = ACTIONS(172), + [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_async] = ACTIONS(178), + [anon_sym_break] = ACTIONS(181), + [anon_sym_const] = ACTIONS(184), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_default] = ACTIONS(190), + [anon_sym_enum] = ACTIONS(193), + [anon_sym_fn] = ACTIONS(196), + [anon_sym_for] = ACTIONS(199), + [anon_sym_gen] = ACTIONS(202), + [anon_sym_if] = ACTIONS(205), + [anon_sym_impl] = ACTIONS(208), + [anon_sym_let] = ACTIONS(211), + [anon_sym_loop] = ACTIONS(214), + [anon_sym_match] = ACTIONS(217), + [anon_sym_mod] = ACTIONS(220), + [anon_sym_pub] = ACTIONS(223), + [anon_sym_return] = ACTIONS(226), + [anon_sym_static] = ACTIONS(229), + [anon_sym_struct] = ACTIONS(232), + [anon_sym_trait] = ACTIONS(235), + [anon_sym_type] = ACTIONS(238), + [anon_sym_union] = ACTIONS(241), + [anon_sym_unsafe] = ACTIONS(244), + [anon_sym_use] = ACTIONS(247), + [anon_sym_while] = ACTIONS(250), + [anon_sym_extern] = ACTIONS(253), + [anon_sym_yield] = ACTIONS(256), + [anon_sym_move] = ACTIONS(259), + [anon_sym_try] = ACTIONS(262), + [sym_integer_literal] = ACTIONS(265), + [aux_sym_string_literal_token1] = ACTIONS(268), + [sym_char_literal] = ACTIONS(265), + [anon_sym_true] = ACTIONS(271), + [anon_sym_false] = ACTIONS(271), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(274), + [sym_super] = ACTIONS(277), + [sym_crate] = ACTIONS(280), + [sym_metavariable] = ACTIONS(283), + [sym__raw_string_literal_start] = ACTIONS(286), + [sym_float_literal] = ACTIONS(265), + }, [15] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1772), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1748), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(15), [sym_block_comment] = STATE(15), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16182,82 +16220,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [16] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1780), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1766), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(17), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16336,82 +16374,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [17] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1784), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16490,82 +16528,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [18] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1786), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1782), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(19), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16644,82 +16682,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [19] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1789), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1784), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), - [aux_sym_source_file_repeat1] = STATE(20), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16798,82 +16836,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [20] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1792), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1790), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(21), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16952,82 +16990,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [21] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1797), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1792), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), - [aux_sym_source_file_repeat1] = STATE(22), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17106,82 +17144,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [22] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1798), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1796), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17260,82 +17298,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [23] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1800), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1797), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17414,82 +17452,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [24] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1801), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1798), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(24), [sym_block_comment] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(25), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17568,82 +17606,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [25] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1803), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1799), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(25), [sym_block_comment] = STATE(25), - [aux_sym_source_file_repeat1] = STATE(26), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17722,82 +17760,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [26] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1805), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1802), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(26), [sym_block_comment] = STATE(26), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(27), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17876,82 +17914,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [27] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1807), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1803), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(27), [sym_block_comment] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(28), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18030,82 +18068,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [28] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1808), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1804), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(28), [sym_block_comment] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(29), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18184,82 +18222,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [29] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1813), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1805), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(29), [sym_block_comment] = STATE(29), - [aux_sym_source_file_repeat1] = STATE(30), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18338,82 +18376,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [30] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1814), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1808), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(30), [sym_block_comment] = STATE(30), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(31), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18492,82 +18530,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [31] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1815), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1809), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(31), [sym_block_comment] = STATE(31), - [aux_sym_source_file_repeat1] = STATE(32), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18646,82 +18684,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [32] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1817), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1810), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(32), [sym_block_comment] = STATE(32), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(33), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18800,82 +18838,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [33] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1818), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1811), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(33), [sym_block_comment] = STATE(33), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18954,82 +18992,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [34] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(660), - [sym_expression_statement] = STATE(660), - [sym_macro_definition] = STATE(660), - [sym_attribute_item] = STATE(660), - [sym_inner_attribute_item] = STATE(660), - [sym_mod_item] = STATE(660), - [sym_foreign_mod_item] = STATE(660), - [sym_struct_item] = STATE(660), - [sym_union_item] = STATE(660), - [sym_enum_item] = STATE(660), - [sym_extern_crate_declaration] = STATE(660), - [sym_const_item] = STATE(660), - [sym_static_item] = STATE(660), - [sym_type_item] = STATE(660), - [sym_function_item] = STATE(660), - [sym_function_signature_item] = STATE(660), - [sym_function_modifiers] = STATE(3528), - [sym_impl_item] = STATE(660), - [sym_trait_item] = STATE(660), - [sym_associated_type] = STATE(660), - [sym_let_declaration] = STATE(660), - [sym_use_declaration] = STATE(660), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1941), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1767), - [sym_macro_invocation] = STATE(387), - [sym_scoped_identifier] = STATE(1536), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3441), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym__statement] = STATE(486), + [sym_empty_statement] = STATE(586), + [sym_expression_statement] = STATE(586), + [sym_macro_definition] = STATE(586), + [sym_attribute_item] = STATE(586), + [sym_inner_attribute_item] = STATE(586), + [sym_mod_item] = STATE(586), + [sym_foreign_mod_item] = STATE(586), + [sym_struct_item] = STATE(586), + [sym_union_item] = STATE(586), + [sym_enum_item] = STATE(586), + [sym_extern_crate_declaration] = STATE(586), + [sym_const_item] = STATE(586), + [sym_static_item] = STATE(586), + [sym_type_item] = STATE(586), + [sym_function_item] = STATE(586), + [sym_function_signature_item] = STATE(586), + [sym_function_modifiers] = STATE(3503), + [sym_impl_item] = STATE(586), + [sym_trait_item] = STATE(586), + [sym_associated_type] = STATE(586), + [sym_let_declaration] = STATE(586), + [sym_use_declaration] = STATE(586), + [sym_extern_modifier] = STATE(2179), + [sym_visibility_modifier] = STATE(1950), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1741), + [sym_macro_invocation] = STATE(393), + [sym_scoped_identifier] = STATE(1539), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(387), + [sym_match_expression] = STATE(387), + [sym_while_expression] = STATE(387), + [sym_loop_expression] = STATE(387), + [sym_for_expression] = STATE(387), + [sym_const_block] = STATE(387), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3440), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(387), + [sym_async_block] = STATE(387), + [sym_gen_block] = STATE(387), + [sym_try_block] = STATE(387), + [sym_block] = STATE(387), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(34), [sym_block_comment] = STATE(34), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2222), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(2233), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19108,53 +19146,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [35] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1510), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1497), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), [sym_identifier] = ACTIONS(339), @@ -19256,65 +19294,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [36] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1506), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(35), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1495), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(36), [sym_block_comment] = STATE(36), [sym_identifier] = ACTIONS(339), [anon_sym_SEMI] = ACTIONS(375), - [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_RBRACK] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_RBRACE] = ACTIONS(375), [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(349), [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -19333,13 +19371,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(377), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_SLASH] = ACTIONS(377), [anon_sym_PERCENT] = ACTIONS(377), [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_AMP] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(381), [anon_sym_AMP_AMP] = ACTIONS(375), [anon_sym_PIPE_PIPE] = ACTIONS(375), [anon_sym_LT_LT] = ACTIONS(377), @@ -19358,16 +19396,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(375), [anon_sym_BANG_EQ] = ACTIONS(375), [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(383), [anon_sym_GT_EQ] = ACTIONS(375), [anon_sym_LT_EQ] = ACTIONS(375), [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(385), [anon_sym_DOT_DOT_DOT] = ACTIONS(375), [anon_sym_DOT_DOT_EQ] = ACTIONS(375), [anon_sym_COMMA] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(379), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -19403,66 +19441,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [37] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1504), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1496), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(37), [sym_block_comment] = STATE(37), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(381), - [anon_sym_RPAREN] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_RBRACK] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_RBRACK] = ACTIONS(387), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(387), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19480,42 +19518,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS_EQ] = ACTIONS(381), - [anon_sym_DASH_EQ] = ACTIONS(381), - [anon_sym_STAR_EQ] = ACTIONS(381), - [anon_sym_SLASH_EQ] = ACTIONS(381), - [anon_sym_PERCENT_EQ] = ACTIONS(381), - [anon_sym_CARET_EQ] = ACTIONS(381), - [anon_sym_AMP_EQ] = ACTIONS(381), - [anon_sym_PIPE_EQ] = ACTIONS(381), - [anon_sym_LT_LT_EQ] = ACTIONS(381), - [anon_sym_GT_GT_EQ] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(381), - [anon_sym_BANG_EQ] = ACTIONS(381), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(381), - [anon_sym_LT_EQ] = ACTIONS(381), - [anon_sym_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_EQ] = ACTIONS(381), - [anon_sym_COMMA] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_COMMA] = ACTIONS(387), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(383), + [anon_sym_as] = ACTIONS(389), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -19531,7 +19569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(383), + [anon_sym_else] = ACTIONS(389), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -19550,66 +19588,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [38] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1496), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1512), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(38), [sym_block_comment] = STATE(38), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(385), - [anon_sym_RPAREN] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_RBRACK] = ACTIONS(385), + [anon_sym_SEMI] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_RPAREN] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_RBRACK] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_RBRACE] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19627,42 +19665,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_SLASH] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(385), - [anon_sym_PIPE_PIPE] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [anon_sym_PLUS_EQ] = ACTIONS(385), - [anon_sym_DASH_EQ] = ACTIONS(385), - [anon_sym_STAR_EQ] = ACTIONS(385), - [anon_sym_SLASH_EQ] = ACTIONS(385), - [anon_sym_PERCENT_EQ] = ACTIONS(385), - [anon_sym_CARET_EQ] = ACTIONS(385), - [anon_sym_AMP_EQ] = ACTIONS(385), - [anon_sym_PIPE_EQ] = ACTIONS(385), - [anon_sym_LT_LT_EQ] = ACTIONS(385), - [anon_sym_GT_GT_EQ] = ACTIONS(385), - [anon_sym_EQ] = ACTIONS(387), - [anon_sym_EQ_EQ] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_GT_EQ] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(385), - [anon_sym_COMMA] = ACTIONS(385), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(391), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(387), + [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -19678,7 +19716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(387), + [anon_sym_else] = ACTIONS(393), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -19697,66 +19735,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [39] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1504), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1511), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_SEMI] = ACTIONS(395), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_RBRACK] = ACTIONS(381), + [anon_sym_RPAREN] = ACTIONS(395), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(395), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_RBRACE] = ACTIONS(395), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(349), + [anon_sym_QMARK] = ACTIONS(395), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19774,42 +19812,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS_EQ] = ACTIONS(381), - [anon_sym_DASH_EQ] = ACTIONS(381), - [anon_sym_STAR_EQ] = ACTIONS(381), - [anon_sym_SLASH_EQ] = ACTIONS(381), - [anon_sym_PERCENT_EQ] = ACTIONS(381), - [anon_sym_CARET_EQ] = ACTIONS(381), - [anon_sym_AMP_EQ] = ACTIONS(381), - [anon_sym_PIPE_EQ] = ACTIONS(381), - [anon_sym_LT_LT_EQ] = ACTIONS(381), - [anon_sym_GT_GT_EQ] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(381), - [anon_sym_BANG_EQ] = ACTIONS(381), - [anon_sym_GT] = ACTIONS(383), + [anon_sym_AMP] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(395), + [anon_sym_DASH_EQ] = ACTIONS(395), + [anon_sym_STAR_EQ] = ACTIONS(395), + [anon_sym_SLASH_EQ] = ACTIONS(395), + [anon_sym_PERCENT_EQ] = ACTIONS(395), + [anon_sym_CARET_EQ] = ACTIONS(395), + [anon_sym_AMP_EQ] = ACTIONS(395), + [anon_sym_PIPE_EQ] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(395), + [anon_sym_GT_GT_EQ] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(397), [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(381), - [anon_sym_LT_EQ] = ACTIONS(381), - [anon_sym_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_EQ] = ACTIONS(381), - [anon_sym_COMMA] = ACTIONS(381), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(395), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(395), + [anon_sym_COMMA] = ACTIONS(395), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(383), + [anon_sym_as] = ACTIONS(397), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -19825,7 +19863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(383), + [anon_sym_else] = ACTIONS(397), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -19844,66 +19882,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [40] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1497), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1496), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(40), [sym_block_comment] = STATE(40), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(389), + [anon_sym_SEMI] = ACTIONS(387), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(389), + [anon_sym_RPAREN] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_RBRACK] = ACTIONS(387), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_STAR] = ACTIONS(349), - [anon_sym_QMARK] = ACTIONS(389), + [anon_sym_RBRACE] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(387), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19921,42 +19959,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), - [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_PERCENT] = ACTIONS(391), - [anon_sym_CARET] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(389), - [anon_sym_PIPE_PIPE] = ACTIONS(389), - [anon_sym_LT_LT] = ACTIONS(391), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_PLUS_EQ] = ACTIONS(389), - [anon_sym_DASH_EQ] = ACTIONS(389), - [anon_sym_STAR_EQ] = ACTIONS(389), - [anon_sym_SLASH_EQ] = ACTIONS(389), - [anon_sym_PERCENT_EQ] = ACTIONS(389), - [anon_sym_CARET_EQ] = ACTIONS(389), - [anon_sym_AMP_EQ] = ACTIONS(389), - [anon_sym_PIPE_EQ] = ACTIONS(389), - [anon_sym_LT_LT_EQ] = ACTIONS(389), - [anon_sym_GT_GT_EQ] = ACTIONS(389), - [anon_sym_EQ] = ACTIONS(391), - [anon_sym_EQ_EQ] = ACTIONS(389), - [anon_sym_BANG_EQ] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(389), - [anon_sym_LT_EQ] = ACTIONS(389), - [anon_sym_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_EQ] = ACTIONS(389), - [anon_sym_COMMA] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_COMMA] = ACTIONS(387), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(391), + [anon_sym_as] = ACTIONS(389), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -19972,7 +20010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(391), + [anon_sym_else] = ACTIONS(389), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -19991,66 +20029,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [41] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1496), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1513), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(35), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(41), [sym_block_comment] = STATE(41), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_RBRACK] = ACTIONS(385), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_RPAREN] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_RBRACK] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(399), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20068,42 +20106,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_SLASH] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(385), - [anon_sym_PIPE_PIPE] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [anon_sym_PLUS_EQ] = ACTIONS(385), - [anon_sym_DASH_EQ] = ACTIONS(385), - [anon_sym_STAR_EQ] = ACTIONS(385), - [anon_sym_SLASH_EQ] = ACTIONS(385), - [anon_sym_PERCENT_EQ] = ACTIONS(385), - [anon_sym_CARET_EQ] = ACTIONS(385), - [anon_sym_AMP_EQ] = ACTIONS(385), - [anon_sym_PIPE_EQ] = ACTIONS(385), - [anon_sym_LT_LT_EQ] = ACTIONS(385), - [anon_sym_GT_GT_EQ] = ACTIONS(385), - [anon_sym_EQ] = ACTIONS(387), - [anon_sym_EQ_EQ] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_GT_EQ] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(385), - [anon_sym_COMMA] = ACTIONS(385), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(399), + [anon_sym_COMMA] = ACTIONS(399), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(403), + [anon_sym_as] = ACTIONS(401), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -20119,7 +20157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(387), + [anon_sym_else] = ACTIONS(401), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20138,66 +20176,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [42] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1499), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1512), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(401), + [anon_sym_SEMI] = ACTIONS(391), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(401), + [anon_sym_RPAREN] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_RBRACK] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(349), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_RBRACE] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20215,42 +20253,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), [anon_sym_BANG] = ACTIONS(349), [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(399), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COMMA] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_COMMA] = ACTIONS(391), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), + [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -20266,7 +20304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(403), + [anon_sym_else] = ACTIONS(393), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20285,53 +20323,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [43] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1683), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1659), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), [sym_identifier] = ACTIONS(405), @@ -20428,195 +20466,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [44] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1613), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1676), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(341), - [anon_sym_COLON] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_SLASH] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(347), - [anon_sym_PIPE] = ACTIONS(347), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_LT_LT] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_CARET_EQ] = ACTIONS(341), - [anon_sym_AMP_EQ] = ACTIONS(341), - [anon_sym_PIPE_EQ] = ACTIONS(341), - [anon_sym_LT_LT_EQ] = ACTIONS(341), - [anon_sym_GT_GT_EQ] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_DOT] = ACTIONS(347), - [anon_sym_DOT_DOT] = ACTIONS(347), - [anon_sym_DOT_DOT_DOT] = ACTIONS(341), - [anon_sym_DOT_DOT_EQ] = ACTIONS(341), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_as] = ACTIONS(347), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_EQ_GT] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(413), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(393), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [45] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1769), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1738), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(45), [sym_block_comment] = STATE(45), [sym_identifier] = ACTIONS(465), @@ -20648,7 +20686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(347), [anon_sym_PERCENT] = ACTIONS(347), [anon_sym_CARET] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(493), + [anon_sym_BANG] = ACTIONS(469), [anon_sym_AMP] = ACTIONS(347), [anon_sym_PIPE] = ACTIONS(347), [anon_sym_AMP_AMP] = ACTIONS(341), @@ -20680,22 +20718,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(347), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -20704,71 +20742,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [46] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1788), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1833), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), [sym_label] = STATE(43), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), [sym_line_comment] = STATE(46), [sym_block_comment] = STATE(46), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(399), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_EQ_GT] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(399), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -20786,41 +20824,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(399), [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(505), - [anon_sym_as] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(491), + [anon_sym_as] = ACTIONS(401), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -20854,63 +20892,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [47] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1662), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1839), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), [sym_line_comment] = STATE(47), [sym_block_comment] = STATE(47), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_EQ_GT] = ACTIONS(395), + [anon_sym_PLUS] = ACTIONS(397), [anon_sym_STAR] = ACTIONS(413), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(395), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -20929,40 +20967,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), [anon_sym_DASH] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(395), + [anon_sym_DASH_EQ] = ACTIONS(395), + [anon_sym_STAR_EQ] = ACTIONS(395), + [anon_sym_SLASH_EQ] = ACTIONS(395), + [anon_sym_PERCENT_EQ] = ACTIONS(395), + [anon_sym_CARET_EQ] = ACTIONS(395), + [anon_sym_AMP_EQ] = ACTIONS(395), + [anon_sym_PIPE_EQ] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(395), + [anon_sym_GT_GT_EQ] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(395), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(395), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), + [anon_sym_as] = ACTIONS(397), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -20996,63 +21034,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [48] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1762), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1841), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), [sym_line_comment] = STATE(48), [sym_block_comment] = STATE(48), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_EQ_GT] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -21070,41 +21108,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS_EQ] = ACTIONS(381), - [anon_sym_DASH_EQ] = ACTIONS(381), - [anon_sym_STAR_EQ] = ACTIONS(381), - [anon_sym_SLASH_EQ] = ACTIONS(381), - [anon_sym_PERCENT_EQ] = ACTIONS(381), - [anon_sym_CARET_EQ] = ACTIONS(381), - [anon_sym_AMP_EQ] = ACTIONS(381), - [anon_sym_PIPE_EQ] = ACTIONS(381), - [anon_sym_LT_LT_EQ] = ACTIONS(381), - [anon_sym_GT_GT_EQ] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(381), - [anon_sym_BANG_EQ] = ACTIONS(381), - [anon_sym_GT] = ACTIONS(383), + [anon_sym_AMP] = ACTIONS(497), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(381), - [anon_sym_LT_EQ] = ACTIONS(381), - [anon_sym_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(383), + [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21138,63 +21176,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [49] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1676), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), [sym_line_comment] = STATE(49), [sym_block_comment] = STATE(49), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_EQ_GT] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -21212,41 +21250,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_SLASH] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(385), - [anon_sym_PIPE_PIPE] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [anon_sym_PLUS_EQ] = ACTIONS(385), - [anon_sym_DASH_EQ] = ACTIONS(385), - [anon_sym_STAR_EQ] = ACTIONS(385), - [anon_sym_SLASH_EQ] = ACTIONS(385), - [anon_sym_PERCENT_EQ] = ACTIONS(385), - [anon_sym_CARET_EQ] = ACTIONS(385), - [anon_sym_AMP_EQ] = ACTIONS(385), - [anon_sym_PIPE_EQ] = ACTIONS(385), - [anon_sym_LT_LT_EQ] = ACTIONS(385), - [anon_sym_GT_GT_EQ] = ACTIONS(385), - [anon_sym_EQ] = ACTIONS(387), - [anon_sym_EQ_EQ] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_GT_EQ] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(387), + [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21280,63 +21318,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [50] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1762), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1831), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), [sym_line_comment] = STATE(50), [sym_block_comment] = STATE(50), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(387), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -21354,41 +21392,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS_EQ] = ACTIONS(381), - [anon_sym_DASH_EQ] = ACTIONS(381), - [anon_sym_STAR_EQ] = ACTIONS(381), - [anon_sym_SLASH_EQ] = ACTIONS(381), - [anon_sym_PERCENT_EQ] = ACTIONS(381), - [anon_sym_CARET_EQ] = ACTIONS(381), - [anon_sym_AMP_EQ] = ACTIONS(381), - [anon_sym_PIPE_EQ] = ACTIONS(381), - [anon_sym_LT_LT_EQ] = ACTIONS(381), - [anon_sym_GT_GT_EQ] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(381), - [anon_sym_BANG_EQ] = ACTIONS(381), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(381), - [anon_sym_LT_EQ] = ACTIONS(381), - [anon_sym_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(387), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(383), + [anon_sym_as] = ACTIONS(389), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21422,63 +21460,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [51] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1666), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1831), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), [sym_line_comment] = STATE(51), [sym_block_comment] = STATE(51), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(389), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_STAR] = ACTIONS(413), - [anon_sym_QMARK] = ACTIONS(389), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(387), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -21496,41 +21534,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_PERCENT] = ACTIONS(391), - [anon_sym_CARET] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(389), - [anon_sym_PIPE_PIPE] = ACTIONS(389), - [anon_sym_LT_LT] = ACTIONS(391), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_PLUS_EQ] = ACTIONS(389), - [anon_sym_DASH_EQ] = ACTIONS(389), - [anon_sym_STAR_EQ] = ACTIONS(389), - [anon_sym_SLASH_EQ] = ACTIONS(389), - [anon_sym_PERCENT_EQ] = ACTIONS(389), - [anon_sym_CARET_EQ] = ACTIONS(389), - [anon_sym_AMP_EQ] = ACTIONS(389), - [anon_sym_PIPE_EQ] = ACTIONS(389), - [anon_sym_LT_LT_EQ] = ACTIONS(389), - [anon_sym_GT_GT_EQ] = ACTIONS(389), - [anon_sym_EQ] = ACTIONS(391), - [anon_sym_EQ_EQ] = ACTIONS(389), - [anon_sym_BANG_EQ] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(389), - [anon_sym_LT_EQ] = ACTIONS(389), - [anon_sym_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT] = ACTIONS(513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_EQ] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(387), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(391), + [anon_sym_as] = ACTIONS(389), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21564,204 +21602,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [52] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1643), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(52), [sym_block_comment] = STATE(52), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_QMARK] = ACTIONS(385), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_SLASH] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(385), - [anon_sym_PIPE_PIPE] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [anon_sym_PLUS_EQ] = ACTIONS(385), - [anon_sym_DASH_EQ] = ACTIONS(385), - [anon_sym_STAR_EQ] = ACTIONS(385), - [anon_sym_SLASH_EQ] = ACTIONS(385), - [anon_sym_PERCENT_EQ] = ACTIONS(385), - [anon_sym_CARET_EQ] = ACTIONS(385), - [anon_sym_AMP_EQ] = ACTIONS(385), - [anon_sym_PIPE_EQ] = ACTIONS(385), - [anon_sym_LT_LT_EQ] = ACTIONS(385), - [anon_sym_GT_GT_EQ] = ACTIONS(385), - [anon_sym_EQ] = ACTIONS(387), - [anon_sym_EQ_EQ] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_GT_EQ] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(385), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(387), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_COLON] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(347), + [anon_sym_QMARK] = ACTIONS(341), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_PLUS_EQ] = ACTIONS(341), + [anon_sym_DASH_EQ] = ACTIONS(341), + [anon_sym_STAR_EQ] = ACTIONS(341), + [anon_sym_SLASH_EQ] = ACTIONS(341), + [anon_sym_PERCENT_EQ] = ACTIONS(341), + [anon_sym_CARET_EQ] = ACTIONS(341), + [anon_sym_AMP_EQ] = ACTIONS(341), + [anon_sym_PIPE_EQ] = ACTIONS(341), + [anon_sym_LT_LT_EQ] = ACTIONS(341), + [anon_sym_GT_GT_EQ] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(341), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_as] = ACTIONS(347), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(503), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [53] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1583), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(44), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1586), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(53), [sym_block_comment] = STATE(53), [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(387), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -21779,58 +21817,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(387), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(377), - [anon_sym_as] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_as] = ACTIONS(389), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -21839,70 +21877,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [54] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1584), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1773), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(54), [sym_block_comment] = STATE(54), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_PLUS] = ACTIONS(397), [anon_sym_STAR] = ACTIONS(469), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(395), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -21921,57 +21959,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), [anon_sym_DASH] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), [anon_sym_BANG] = ACTIONS(469), [anon_sym_AMP] = ACTIONS(515), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(395), + [anon_sym_DASH_EQ] = ACTIONS(395), + [anon_sym_STAR_EQ] = ACTIONS(395), + [anon_sym_SLASH_EQ] = ACTIONS(395), + [anon_sym_PERCENT_EQ] = ACTIONS(395), + [anon_sym_CARET_EQ] = ACTIONS(395), + [anon_sym_AMP_EQ] = ACTIONS(395), + [anon_sym_PIPE_EQ] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(395), + [anon_sym_GT_GT_EQ] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(395), + [anon_sym_DOT] = ACTIONS(397), [anon_sym_DOT_DOT] = ACTIONS(517), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(395), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), + [anon_sym_as] = ACTIONS(397), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -21980,70 +22018,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [55] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1582), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1641), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(55), [sym_block_comment] = STATE(55), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -22061,58 +22099,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS_EQ] = ACTIONS(381), - [anon_sym_DASH_EQ] = ACTIONS(381), - [anon_sym_STAR_EQ] = ACTIONS(381), - [anon_sym_SLASH_EQ] = ACTIONS(381), - [anon_sym_PERCENT_EQ] = ACTIONS(381), - [anon_sym_CARET_EQ] = ACTIONS(381), - [anon_sym_AMP_EQ] = ACTIONS(381), - [anon_sym_PIPE_EQ] = ACTIONS(381), - [anon_sym_LT_LT_EQ] = ACTIONS(381), - [anon_sym_GT_GT_EQ] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(381), - [anon_sym_BANG_EQ] = ACTIONS(381), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(381), - [anon_sym_LT_EQ] = ACTIONS(381), - [anon_sym_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(383), - [anon_sym_as] = ACTIONS(383), + [anon_sym_SQUOTE] = ACTIONS(393), + [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22121,70 +22159,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [56] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1776), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1770), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(45), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(56), [sym_block_comment] = STATE(56), [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(375), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LBRACE] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(387), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -22202,58 +22240,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(377), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(377), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(387), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(379), - [anon_sym_as] = ACTIONS(377), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(389), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22262,70 +22300,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [57] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1778), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1771), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_label] = STATE(45), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(57), [sym_block_comment] = STATE(57), [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(493), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(399), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -22343,58 +22381,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(399), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), + [anon_sym_SQUOTE] = ACTIONS(403), + [anon_sym_as] = ACTIONS(401), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22403,70 +22441,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [58] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1779), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1774), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(58), [sym_block_comment] = STATE(58), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_STAR] = ACTIONS(493), - [anon_sym_QMARK] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -22484,58 +22522,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_PERCENT] = ACTIONS(391), - [anon_sym_CARET] = ACTIONS(391), - [anon_sym_BANG] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(389), - [anon_sym_PIPE_PIPE] = ACTIONS(389), - [anon_sym_LT_LT] = ACTIONS(391), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_PLUS_EQ] = ACTIONS(389), - [anon_sym_DASH_EQ] = ACTIONS(389), - [anon_sym_STAR_EQ] = ACTIONS(389), - [anon_sym_SLASH_EQ] = ACTIONS(389), - [anon_sym_PERCENT_EQ] = ACTIONS(389), - [anon_sym_CARET_EQ] = ACTIONS(389), - [anon_sym_AMP_EQ] = ACTIONS(389), - [anon_sym_PIPE_EQ] = ACTIONS(389), - [anon_sym_LT_LT_EQ] = ACTIONS(389), - [anon_sym_GT_GT_EQ] = ACTIONS(389), - [anon_sym_EQ] = ACTIONS(391), - [anon_sym_EQ_EQ] = ACTIONS(389), - [anon_sym_BANG_EQ] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(389), - [anon_sym_LT_EQ] = ACTIONS(389), - [anon_sym_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT] = ACTIONS(521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_EQ] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(391), + [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22544,70 +22582,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [59] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1585), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1768), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(59), [sym_block_comment] = STATE(59), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_QMARK] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -22625,58 +22663,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_PERCENT] = ACTIONS(391), - [anon_sym_CARET] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(515), - [anon_sym_PIPE] = ACTIONS(395), - [anon_sym_AMP_AMP] = ACTIONS(389), - [anon_sym_PIPE_PIPE] = ACTIONS(389), - [anon_sym_LT_LT] = ACTIONS(391), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_PLUS_EQ] = ACTIONS(389), - [anon_sym_DASH_EQ] = ACTIONS(389), - [anon_sym_STAR_EQ] = ACTIONS(389), - [anon_sym_SLASH_EQ] = ACTIONS(389), - [anon_sym_PERCENT_EQ] = ACTIONS(389), - [anon_sym_CARET_EQ] = ACTIONS(389), - [anon_sym_AMP_EQ] = ACTIONS(389), - [anon_sym_PIPE_EQ] = ACTIONS(389), - [anon_sym_LT_LT_EQ] = ACTIONS(389), - [anon_sym_GT_GT_EQ] = ACTIONS(389), - [anon_sym_EQ] = ACTIONS(391), - [anon_sym_EQ_EQ] = ACTIONS(389), - [anon_sym_BANG_EQ] = ACTIONS(389), - [anon_sym_GT] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(389), - [anon_sym_LT_EQ] = ACTIONS(389), - [anon_sym_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT] = ACTIONS(517), - [anon_sym_DOT_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_EQ] = ACTIONS(389), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(391), + [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22685,70 +22723,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [60] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1631), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1586), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(60), [sym_block_comment] = STATE(60), [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(387), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -22766,58 +22804,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_SLASH] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(385), - [anon_sym_PIPE_PIPE] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [anon_sym_PLUS_EQ] = ACTIONS(385), - [anon_sym_DASH_EQ] = ACTIONS(385), - [anon_sym_STAR_EQ] = ACTIONS(385), - [anon_sym_SLASH_EQ] = ACTIONS(385), - [anon_sym_PERCENT_EQ] = ACTIONS(385), - [anon_sym_CARET_EQ] = ACTIONS(385), - [anon_sym_AMP_EQ] = ACTIONS(385), - [anon_sym_PIPE_EQ] = ACTIONS(385), - [anon_sym_LT_LT_EQ] = ACTIONS(385), - [anon_sym_GT_GT_EQ] = ACTIONS(385), - [anon_sym_EQ] = ACTIONS(387), - [anon_sym_EQ_EQ] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_GT_EQ] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(387), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(387), - [anon_sym_as] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_as] = ACTIONS(389), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22826,70 +22864,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [61] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1775), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1641), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(61), [sym_block_comment] = STATE(61), [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -22907,58 +22945,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_BANG] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS_EQ] = ACTIONS(381), - [anon_sym_DASH_EQ] = ACTIONS(381), - [anon_sym_STAR_EQ] = ACTIONS(381), - [anon_sym_SLASH_EQ] = ACTIONS(381), - [anon_sym_PERCENT_EQ] = ACTIONS(381), - [anon_sym_CARET_EQ] = ACTIONS(381), - [anon_sym_AMP_EQ] = ACTIONS(381), - [anon_sym_PIPE_EQ] = ACTIONS(381), - [anon_sym_LT_LT_EQ] = ACTIONS(381), - [anon_sym_GT_GT_EQ] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(381), - [anon_sym_BANG_EQ] = ACTIONS(381), - [anon_sym_GT] = ACTIONS(383), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(381), - [anon_sym_LT_EQ] = ACTIONS(381), - [anon_sym_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(383), + [anon_sym_SQUOTE] = ACTIONS(393), + [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22967,70 +23005,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [62] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1631), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1768), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(62), [sym_block_comment] = STATE(62), [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -23048,58 +23086,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_SLASH] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(385), - [anon_sym_PIPE_PIPE] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [anon_sym_PLUS_EQ] = ACTIONS(385), - [anon_sym_DASH_EQ] = ACTIONS(385), - [anon_sym_STAR_EQ] = ACTIONS(385), - [anon_sym_SLASH_EQ] = ACTIONS(385), - [anon_sym_PERCENT_EQ] = ACTIONS(385), - [anon_sym_CARET_EQ] = ACTIONS(385), - [anon_sym_AMP_EQ] = ACTIONS(385), - [anon_sym_PIPE_EQ] = ACTIONS(385), - [anon_sym_LT_LT_EQ] = ACTIONS(385), - [anon_sym_GT_GT_EQ] = ACTIONS(385), - [anon_sym_EQ] = ACTIONS(387), - [anon_sym_EQ_EQ] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_GT_EQ] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(387), - [anon_sym_as] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23108,70 +23146,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [63] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1816), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1770), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(63), [sym_block_comment] = STATE(63), [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(387), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -23189,58 +23227,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_SLASH] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(385), - [anon_sym_PIPE_PIPE] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [anon_sym_PLUS_EQ] = ACTIONS(385), - [anon_sym_DASH_EQ] = ACTIONS(385), - [anon_sym_STAR_EQ] = ACTIONS(385), - [anon_sym_SLASH_EQ] = ACTIONS(385), - [anon_sym_PERCENT_EQ] = ACTIONS(385), - [anon_sym_CARET_EQ] = ACTIONS(385), - [anon_sym_AMP_EQ] = ACTIONS(385), - [anon_sym_PIPE_EQ] = ACTIONS(385), - [anon_sym_LT_LT_EQ] = ACTIONS(385), - [anon_sym_GT_GT_EQ] = ACTIONS(385), - [anon_sym_EQ] = ACTIONS(387), - [anon_sym_EQ_EQ] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_GT_EQ] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(387), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(387), + [anon_sym_as] = ACTIONS(389), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23249,70 +23287,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [64] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1816), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(52), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(64), [sym_block_comment] = STATE(64), [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(399), + [anon_sym_LBRACK] = ACTIONS(399), + [anon_sym_LBRACE] = ACTIONS(399), + [anon_sym_PLUS] = ACTIONS(401), + [anon_sym_STAR] = ACTIONS(401), + [anon_sym_QMARK] = ACTIONS(399), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -23330,58 +23368,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_SLASH] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_AMP_AMP] = ACTIONS(385), - [anon_sym_PIPE_PIPE] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [anon_sym_PLUS_EQ] = ACTIONS(385), - [anon_sym_DASH_EQ] = ACTIONS(385), - [anon_sym_STAR_EQ] = ACTIONS(385), - [anon_sym_SLASH_EQ] = ACTIONS(385), - [anon_sym_PERCENT_EQ] = ACTIONS(385), - [anon_sym_CARET_EQ] = ACTIONS(385), - [anon_sym_AMP_EQ] = ACTIONS(385), - [anon_sym_PIPE_EQ] = ACTIONS(385), - [anon_sym_LT_LT_EQ] = ACTIONS(385), - [anon_sym_GT_GT_EQ] = ACTIONS(385), - [anon_sym_EQ] = ACTIONS(387), - [anon_sym_EQ_EQ] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_GT_EQ] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(385), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(401), + [anon_sym_CARET] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(401), + [anon_sym_PIPE] = ACTIONS(401), + [anon_sym_AMP_AMP] = ACTIONS(399), + [anon_sym_PIPE_PIPE] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_PLUS_EQ] = ACTIONS(399), + [anon_sym_DASH_EQ] = ACTIONS(399), + [anon_sym_STAR_EQ] = ACTIONS(399), + [anon_sym_SLASH_EQ] = ACTIONS(399), + [anon_sym_PERCENT_EQ] = ACTIONS(399), + [anon_sym_CARET_EQ] = ACTIONS(399), + [anon_sym_AMP_EQ] = ACTIONS(399), + [anon_sym_PIPE_EQ] = ACTIONS(399), + [anon_sym_LT_LT_EQ] = ACTIONS(399), + [anon_sym_GT_GT_EQ] = ACTIONS(399), + [anon_sym_EQ] = ACTIONS(401), + [anon_sym_EQ_EQ] = ACTIONS(399), + [anon_sym_BANG_EQ] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT_EQ] = ACTIONS(399), + [anon_sym_LT_EQ] = ACTIONS(399), + [anon_sym_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(399), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(401), + [anon_sym_as] = ACTIONS(401), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23390,70 +23428,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [65] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1582), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1606), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(65), [sym_block_comment] = STATE(65), [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_STAR] = ACTIONS(501), + [anon_sym_QMARK] = ACTIONS(395), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -23471,58 +23509,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS_EQ] = ACTIONS(381), - [anon_sym_DASH_EQ] = ACTIONS(381), - [anon_sym_STAR_EQ] = ACTIONS(381), - [anon_sym_SLASH_EQ] = ACTIONS(381), - [anon_sym_PERCENT_EQ] = ACTIONS(381), - [anon_sym_CARET_EQ] = ACTIONS(381), - [anon_sym_AMP_EQ] = ACTIONS(381), - [anon_sym_PIPE_EQ] = ACTIONS(381), - [anon_sym_LT_LT_EQ] = ACTIONS(381), - [anon_sym_GT_GT_EQ] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(381), - [anon_sym_BANG_EQ] = ACTIONS(381), - [anon_sym_GT] = ACTIONS(383), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(397), + [anon_sym_PERCENT] = ACTIONS(397), + [anon_sym_CARET] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(519), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(395), + [anon_sym_PIPE_PIPE] = ACTIONS(395), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_PLUS_EQ] = ACTIONS(395), + [anon_sym_DASH_EQ] = ACTIONS(395), + [anon_sym_STAR_EQ] = ACTIONS(395), + [anon_sym_SLASH_EQ] = ACTIONS(395), + [anon_sym_PERCENT_EQ] = ACTIONS(395), + [anon_sym_CARET_EQ] = ACTIONS(395), + [anon_sym_AMP_EQ] = ACTIONS(395), + [anon_sym_PIPE_EQ] = ACTIONS(395), + [anon_sym_LT_LT_EQ] = ACTIONS(395), + [anon_sym_GT_GT_EQ] = ACTIONS(395), + [anon_sym_EQ] = ACTIONS(397), + [anon_sym_EQ_EQ] = ACTIONS(395), + [anon_sym_BANG_EQ] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(397), [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(381), - [anon_sym_LT_EQ] = ACTIONS(381), - [anon_sym_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_GT_EQ] = ACTIONS(395), + [anon_sym_LT_EQ] = ACTIONS(395), + [anon_sym_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(395), + [anon_sym_DOT_DOT_EQ] = ACTIONS(395), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(383), - [anon_sym_as] = ACTIONS(383), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(397), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23531,70 +23569,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [66] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1775), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1610), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(66), [sym_block_comment] = STATE(66), [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(381), - [anon_sym_LBRACK] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(381), - [anon_sym_PLUS] = ACTIONS(383), - [anon_sym_STAR] = ACTIONS(383), - [anon_sym_QMARK] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(501), + [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -23612,58 +23650,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(383), - [anon_sym_SLASH] = ACTIONS(383), - [anon_sym_PERCENT] = ACTIONS(383), - [anon_sym_CARET] = ACTIONS(383), - [anon_sym_BANG] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(383), - [anon_sym_PIPE] = ACTIONS(383), - [anon_sym_AMP_AMP] = ACTIONS(381), - [anon_sym_PIPE_PIPE] = ACTIONS(381), - [anon_sym_LT_LT] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(383), - [anon_sym_PLUS_EQ] = ACTIONS(381), - [anon_sym_DASH_EQ] = ACTIONS(381), - [anon_sym_STAR_EQ] = ACTIONS(381), - [anon_sym_SLASH_EQ] = ACTIONS(381), - [anon_sym_PERCENT_EQ] = ACTIONS(381), - [anon_sym_CARET_EQ] = ACTIONS(381), - [anon_sym_AMP_EQ] = ACTIONS(381), - [anon_sym_PIPE_EQ] = ACTIONS(381), - [anon_sym_LT_LT_EQ] = ACTIONS(381), - [anon_sym_GT_GT_EQ] = ACTIONS(381), - [anon_sym_EQ] = ACTIONS(383), - [anon_sym_EQ_EQ] = ACTIONS(381), - [anon_sym_BANG_EQ] = ACTIONS(381), - [anon_sym_GT] = ACTIONS(383), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(501), + [anon_sym_AMP] = ACTIONS(519), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(381), - [anon_sym_LT_EQ] = ACTIONS(381), - [anon_sym_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(381), - [anon_sym_DOT_DOT_EQ] = ACTIONS(381), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(383), + [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23672,26 +23710,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [67] = { - [sym__token_pattern] = STATE(181), - [sym_token_tree_pattern] = STATE(179), - [sym_token_binding_pattern] = STATE(179), - [sym_token_repetition_pattern] = STATE(179), - [sym__literal] = STATE(179), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), + [sym__token_pattern] = STATE(184), + [sym_token_tree_pattern] = STATE(178), + [sym_token_binding_pattern] = STATE(178), + [sym_token_repetition_pattern] = STATE(178), + [sym__literal] = STATE(178), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), [sym_line_comment] = STATE(67), [sym_block_comment] = STATE(67), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(140), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(523), [anon_sym_SEMI] = ACTIONS(526), [anon_sym_LPAREN] = ACTIONS(529), @@ -23806,24 +23844,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(546), }, [68] = { - [sym__token_pattern] = STATE(181), - [sym_token_tree_pattern] = STATE(179), - [sym_token_binding_pattern] = STATE(179), - [sym_token_repetition_pattern] = STATE(179), - [sym__literal] = STATE(179), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), + [sym__token_pattern] = STATE(184), + [sym_token_tree_pattern] = STATE(178), + [sym_token_binding_pattern] = STATE(178), + [sym_token_repetition_pattern] = STATE(178), + [sym__literal] = STATE(178), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(140), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(561), [anon_sym_SEMI] = ACTIONS(563), [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(567), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_RBRACE] = ACTIONS(571), [anon_sym_EQ_GT] = ACTIONS(563), [anon_sym_COLON] = ACTIONS(573), [anon_sym_DOLLAR] = ACTIONS(575), @@ -23930,23 +23968,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(577), }, [69] = { - [sym__token_pattern] = STATE(181), - [sym_token_tree_pattern] = STATE(179), - [sym_token_binding_pattern] = STATE(179), - [sym_token_repetition_pattern] = STATE(179), - [sym__literal] = STATE(179), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), + [sym__token_pattern] = STATE(184), + [sym_token_tree_pattern] = STATE(178), + [sym_token_binding_pattern] = STATE(178), + [sym_token_repetition_pattern] = STATE(178), + [sym__literal] = STATE(178), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), - [aux_sym_token_tree_pattern_repeat1] = STATE(72), - [aux_sym__non_special_token_repeat1] = STATE(140), + [aux_sym_token_tree_pattern_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(561), [anon_sym_SEMI] = ACTIONS(563), [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(569), [anon_sym_RBRACE] = ACTIONS(587), [anon_sym_EQ_GT] = ACTIONS(563), [anon_sym_COLON] = ACTIONS(573), @@ -24054,24 +24092,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(577), }, [70] = { - [sym__token_pattern] = STATE(181), - [sym_token_tree_pattern] = STATE(179), - [sym_token_binding_pattern] = STATE(179), - [sym_token_repetition_pattern] = STATE(179), - [sym__literal] = STATE(179), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), + [sym__token_pattern] = STATE(184), + [sym_token_tree_pattern] = STATE(178), + [sym_token_binding_pattern] = STATE(178), + [sym_token_repetition_pattern] = STATE(178), + [sym__literal] = STATE(178), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), [sym_line_comment] = STATE(70), [sym_block_comment] = STATE(70), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(140), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(561), [anon_sym_SEMI] = ACTIONS(563), [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_RBRACK] = ACTIONS(589), + [anon_sym_LBRACE] = ACTIONS(569), [anon_sym_EQ_GT] = ACTIONS(563), [anon_sym_COLON] = ACTIONS(573), [anon_sym_DOLLAR] = ACTIONS(575), @@ -24178,24 +24216,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(577), }, [71] = { - [sym__token_pattern] = STATE(181), - [sym_token_tree_pattern] = STATE(179), - [sym_token_binding_pattern] = STATE(179), - [sym_token_repetition_pattern] = STATE(179), - [sym__literal] = STATE(179), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), + [sym__token_pattern] = STATE(184), + [sym_token_tree_pattern] = STATE(178), + [sym_token_binding_pattern] = STATE(178), + [sym_token_repetition_pattern] = STATE(178), + [sym__literal] = STATE(178), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), [sym_line_comment] = STATE(71), [sym_block_comment] = STATE(71), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(140), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(561), [anon_sym_SEMI] = ACTIONS(563), [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_RBRACK] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(569), [anon_sym_EQ_GT] = ACTIONS(563), [anon_sym_COLON] = ACTIONS(573), [anon_sym_DOLLAR] = ACTIONS(575), @@ -24302,24 +24340,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(577), }, [72] = { - [sym__token_pattern] = STATE(181), - [sym_token_tree_pattern] = STATE(179), - [sym_token_binding_pattern] = STATE(179), - [sym_token_repetition_pattern] = STATE(179), - [sym__literal] = STATE(179), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), + [sym__token_pattern] = STATE(184), + [sym_token_tree_pattern] = STATE(178), + [sym_token_binding_pattern] = STATE(178), + [sym_token_repetition_pattern] = STATE(178), + [sym__literal] = STATE(178), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), [sym_line_comment] = STATE(72), [sym_block_comment] = STATE(72), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(140), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(561), [anon_sym_SEMI] = ACTIONS(563), [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(571), - [anon_sym_RBRACE] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_RBRACK] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(569), [anon_sym_EQ_GT] = ACTIONS(563), [anon_sym_COLON] = ACTIONS(573), [anon_sym_DOLLAR] = ACTIONS(575), @@ -24426,148 +24464,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(577), }, [73] = { - [sym_token_tree] = STATE(197), - [sym_token_repetition] = STATE(197), - [sym__literal] = STATE(197), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), + [sym__token_pattern] = STATE(184), + [sym_token_tree_pattern] = STATE(178), + [sym_token_binding_pattern] = STATE(178), + [sym_token_repetition_pattern] = STATE(178), + [sym__literal] = STATE(178), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), [sym_line_comment] = STATE(73), [sym_block_comment] = STATE(73), - [aux_sym_token_tree_repeat1] = STATE(73), - [aux_sym__non_special_token_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(591), - [anon_sym_SEMI] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(597), - [anon_sym_RPAREN] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(602), - [anon_sym_RBRACK] = ACTIONS(600), - [anon_sym_LBRACE] = ACTIONS(605), - [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_EQ_GT] = ACTIONS(594), - [anon_sym_COLON] = ACTIONS(608), - [anon_sym_DOLLAR] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(608), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_QMARK] = ACTIONS(594), - [anon_sym_u8] = ACTIONS(591), - [anon_sym_i8] = ACTIONS(591), - [anon_sym_u16] = ACTIONS(591), - [anon_sym_i16] = ACTIONS(591), - [anon_sym_u32] = ACTIONS(591), - [anon_sym_i32] = ACTIONS(591), - [anon_sym_u64] = ACTIONS(591), - [anon_sym_i64] = ACTIONS(591), - [anon_sym_u128] = ACTIONS(591), - [anon_sym_i128] = ACTIONS(591), - [anon_sym_isize] = ACTIONS(591), - [anon_sym_usize] = ACTIONS(591), - [anon_sym_f32] = ACTIONS(591), - [anon_sym_f64] = ACTIONS(591), - [anon_sym_bool] = ACTIONS(591), - [anon_sym_str] = ACTIONS(591), - [anon_sym_char] = ACTIONS(591), - [anon_sym_DASH] = ACTIONS(608), - [anon_sym_SLASH] = ACTIONS(608), - [anon_sym_PERCENT] = ACTIONS(608), - [anon_sym_CARET] = ACTIONS(608), - [anon_sym_BANG] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_AMP_AMP] = ACTIONS(594), - [anon_sym_PIPE_PIPE] = ACTIONS(594), - [anon_sym_LT_LT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(608), - [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_CARET_EQ] = ACTIONS(594), - [anon_sym_AMP_EQ] = ACTIONS(594), - [anon_sym_PIPE_EQ] = ACTIONS(594), - [anon_sym_LT_LT_EQ] = ACTIONS(594), - [anon_sym_GT_GT_EQ] = ACTIONS(594), - [anon_sym_EQ] = ACTIONS(608), - [anon_sym_EQ_EQ] = ACTIONS(594), - [anon_sym_BANG_EQ] = ACTIONS(594), - [anon_sym_GT] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(608), - [anon_sym_GT_EQ] = ACTIONS(594), - [anon_sym_LT_EQ] = ACTIONS(594), - [anon_sym_AT] = ACTIONS(594), - [anon_sym__] = ACTIONS(608), - [anon_sym_DOT] = ACTIONS(608), - [anon_sym_DOT_DOT] = ACTIONS(608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(594), - [anon_sym_DOT_DOT_EQ] = ACTIONS(594), - [anon_sym_COMMA] = ACTIONS(594), - [anon_sym_COLON_COLON] = ACTIONS(594), - [anon_sym_DASH_GT] = ACTIONS(594), - [anon_sym_POUND] = ACTIONS(594), - [anon_sym_SQUOTE] = ACTIONS(591), - [anon_sym_as] = ACTIONS(591), - [anon_sym_async] = ACTIONS(591), - [anon_sym_await] = ACTIONS(591), - [anon_sym_break] = ACTIONS(591), - [anon_sym_const] = ACTIONS(591), - [anon_sym_continue] = ACTIONS(591), - [anon_sym_default] = ACTIONS(591), - [anon_sym_enum] = ACTIONS(591), - [anon_sym_fn] = ACTIONS(591), - [anon_sym_for] = ACTIONS(591), - [anon_sym_gen] = ACTIONS(591), - [anon_sym_if] = ACTIONS(591), - [anon_sym_impl] = ACTIONS(591), - [anon_sym_let] = ACTIONS(591), - [anon_sym_loop] = ACTIONS(591), - [anon_sym_match] = ACTIONS(591), - [anon_sym_mod] = ACTIONS(591), - [anon_sym_pub] = ACTIONS(591), - [anon_sym_return] = ACTIONS(591), - [anon_sym_static] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(591), - [anon_sym_trait] = ACTIONS(591), - [anon_sym_type] = ACTIONS(591), - [anon_sym_union] = ACTIONS(591), - [anon_sym_unsafe] = ACTIONS(591), - [anon_sym_use] = ACTIONS(591), - [anon_sym_where] = ACTIONS(591), - [anon_sym_while] = ACTIONS(591), - [sym_mutable_specifier] = ACTIONS(591), - [sym_integer_literal] = ACTIONS(614), - [aux_sym_string_literal_token1] = ACTIONS(617), - [sym_char_literal] = ACTIONS(614), - [anon_sym_true] = ACTIONS(620), - [anon_sym_false] = ACTIONS(620), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(591), - [sym_super] = ACTIONS(591), - [sym_crate] = ACTIONS(591), - [sym_metavariable] = ACTIONS(623), - [sym__raw_string_literal_start] = ACTIONS(626), - [sym_float_literal] = ACTIONS(614), + [aux_sym_token_tree_pattern_repeat1] = STATE(81), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(561), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(565), + [anon_sym_RPAREN] = ACTIONS(591), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(575), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(561), + [anon_sym_i8] = ACTIONS(561), + [anon_sym_u16] = ACTIONS(561), + [anon_sym_i16] = ACTIONS(561), + [anon_sym_u32] = ACTIONS(561), + [anon_sym_i32] = ACTIONS(561), + [anon_sym_u64] = ACTIONS(561), + [anon_sym_i64] = ACTIONS(561), + [anon_sym_u128] = ACTIONS(561), + [anon_sym_i128] = ACTIONS(561), + [anon_sym_isize] = ACTIONS(561), + [anon_sym_usize] = ACTIONS(561), + [anon_sym_f32] = ACTIONS(561), + [anon_sym_f64] = ACTIONS(561), + [anon_sym_bool] = ACTIONS(561), + [anon_sym_str] = ACTIONS(561), + [anon_sym_char] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(561), + [anon_sym_as] = ACTIONS(561), + [anon_sym_async] = ACTIONS(561), + [anon_sym_await] = ACTIONS(561), + [anon_sym_break] = ACTIONS(561), + [anon_sym_const] = ACTIONS(561), + [anon_sym_continue] = ACTIONS(561), + [anon_sym_default] = ACTIONS(561), + [anon_sym_enum] = ACTIONS(561), + [anon_sym_fn] = ACTIONS(561), + [anon_sym_for] = ACTIONS(561), + [anon_sym_gen] = ACTIONS(561), + [anon_sym_if] = ACTIONS(561), + [anon_sym_impl] = ACTIONS(561), + [anon_sym_let] = ACTIONS(561), + [anon_sym_loop] = ACTIONS(561), + [anon_sym_match] = ACTIONS(561), + [anon_sym_mod] = ACTIONS(561), + [anon_sym_pub] = ACTIONS(561), + [anon_sym_return] = ACTIONS(561), + [anon_sym_static] = ACTIONS(561), + [anon_sym_struct] = ACTIONS(561), + [anon_sym_trait] = ACTIONS(561), + [anon_sym_type] = ACTIONS(561), + [anon_sym_union] = ACTIONS(561), + [anon_sym_unsafe] = ACTIONS(561), + [anon_sym_use] = ACTIONS(561), + [anon_sym_where] = ACTIONS(561), + [anon_sym_while] = ACTIONS(561), + [sym_mutable_specifier] = ACTIONS(561), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(561), + [sym_super] = ACTIONS(561), + [sym_crate] = ACTIONS(561), + [sym_metavariable] = ACTIONS(583), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, [74] = { - [sym__token_pattern] = STATE(181), - [sym_token_tree_pattern] = STATE(179), - [sym_token_binding_pattern] = STATE(179), - [sym_token_repetition_pattern] = STATE(179), - [sym__literal] = STATE(179), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), + [sym__token_pattern] = STATE(184), + [sym_token_tree_pattern] = STATE(178), + [sym_token_binding_pattern] = STATE(178), + [sym_token_repetition_pattern] = STATE(178), + [sym__literal] = STATE(178), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), [sym_line_comment] = STATE(74), [sym_block_comment] = STATE(74), - [aux_sym_token_tree_pattern_repeat1] = STATE(70), - [aux_sym__non_special_token_repeat1] = STATE(140), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(561), [anon_sym_SEMI] = ACTIONS(563), [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_RBRACE] = ACTIONS(589), [anon_sym_EQ_GT] = ACTIONS(563), [anon_sym_COLON] = ACTIONS(573), [anon_sym_DOLLAR] = ACTIONS(575), @@ -24674,148 +24712,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(577), }, [75] = { - [sym__token_pattern] = STATE(181), - [sym_token_tree_pattern] = STATE(179), - [sym_token_binding_pattern] = STATE(179), - [sym_token_repetition_pattern] = STATE(179), - [sym__literal] = STATE(179), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), [sym_line_comment] = STATE(75), [sym_block_comment] = STATE(75), - [aux_sym_token_tree_pattern_repeat1] = STATE(79), - [aux_sym__non_special_token_repeat1] = STATE(140), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(75), + [sym_identifier] = ACTIONS(593), + [anon_sym_SEMI] = ACTIONS(596), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_RPAREN] = ACTIONS(602), + [anon_sym_LBRACK] = ACTIONS(604), + [anon_sym_RBRACK] = ACTIONS(602), + [anon_sym_LBRACE] = ACTIONS(607), + [anon_sym_RBRACE] = ACTIONS(602), + [anon_sym_EQ_GT] = ACTIONS(596), + [anon_sym_COLON] = ACTIONS(610), + [anon_sym_DOLLAR] = ACTIONS(613), + [anon_sym_PLUS] = ACTIONS(610), + [anon_sym_STAR] = ACTIONS(610), + [anon_sym_QMARK] = ACTIONS(596), + [anon_sym_u8] = ACTIONS(593), + [anon_sym_i8] = ACTIONS(593), + [anon_sym_u16] = ACTIONS(593), + [anon_sym_i16] = ACTIONS(593), + [anon_sym_u32] = ACTIONS(593), + [anon_sym_i32] = ACTIONS(593), + [anon_sym_u64] = ACTIONS(593), + [anon_sym_i64] = ACTIONS(593), + [anon_sym_u128] = ACTIONS(593), + [anon_sym_i128] = ACTIONS(593), + [anon_sym_isize] = ACTIONS(593), + [anon_sym_usize] = ACTIONS(593), + [anon_sym_f32] = ACTIONS(593), + [anon_sym_f64] = ACTIONS(593), + [anon_sym_bool] = ACTIONS(593), + [anon_sym_str] = ACTIONS(593), + [anon_sym_char] = ACTIONS(593), + [anon_sym_DASH] = ACTIONS(610), + [anon_sym_SLASH] = ACTIONS(610), + [anon_sym_PERCENT] = ACTIONS(610), + [anon_sym_CARET] = ACTIONS(610), + [anon_sym_BANG] = ACTIONS(610), + [anon_sym_AMP] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_AMP_AMP] = ACTIONS(596), + [anon_sym_PIPE_PIPE] = ACTIONS(596), + [anon_sym_LT_LT] = ACTIONS(610), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_PLUS_EQ] = ACTIONS(596), + [anon_sym_DASH_EQ] = ACTIONS(596), + [anon_sym_STAR_EQ] = ACTIONS(596), + [anon_sym_SLASH_EQ] = ACTIONS(596), + [anon_sym_PERCENT_EQ] = ACTIONS(596), + [anon_sym_CARET_EQ] = ACTIONS(596), + [anon_sym_AMP_EQ] = ACTIONS(596), + [anon_sym_PIPE_EQ] = ACTIONS(596), + [anon_sym_LT_LT_EQ] = ACTIONS(596), + [anon_sym_GT_GT_EQ] = ACTIONS(596), + [anon_sym_EQ] = ACTIONS(610), + [anon_sym_EQ_EQ] = ACTIONS(596), + [anon_sym_BANG_EQ] = ACTIONS(596), + [anon_sym_GT] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT_EQ] = ACTIONS(596), + [anon_sym_LT_EQ] = ACTIONS(596), + [anon_sym_AT] = ACTIONS(596), + [anon_sym__] = ACTIONS(610), + [anon_sym_DOT] = ACTIONS(610), + [anon_sym_DOT_DOT] = ACTIONS(610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(596), + [anon_sym_COMMA] = ACTIONS(596), + [anon_sym_COLON_COLON] = ACTIONS(596), + [anon_sym_DASH_GT] = ACTIONS(596), + [anon_sym_POUND] = ACTIONS(596), + [anon_sym_SQUOTE] = ACTIONS(593), + [anon_sym_as] = ACTIONS(593), + [anon_sym_async] = ACTIONS(593), + [anon_sym_await] = ACTIONS(593), + [anon_sym_break] = ACTIONS(593), + [anon_sym_const] = ACTIONS(593), + [anon_sym_continue] = ACTIONS(593), + [anon_sym_default] = ACTIONS(593), + [anon_sym_enum] = ACTIONS(593), + [anon_sym_fn] = ACTIONS(593), + [anon_sym_for] = ACTIONS(593), + [anon_sym_gen] = ACTIONS(593), + [anon_sym_if] = ACTIONS(593), + [anon_sym_impl] = ACTIONS(593), + [anon_sym_let] = ACTIONS(593), + [anon_sym_loop] = ACTIONS(593), + [anon_sym_match] = ACTIONS(593), + [anon_sym_mod] = ACTIONS(593), + [anon_sym_pub] = ACTIONS(593), + [anon_sym_return] = ACTIONS(593), + [anon_sym_static] = ACTIONS(593), + [anon_sym_struct] = ACTIONS(593), + [anon_sym_trait] = ACTIONS(593), + [anon_sym_type] = ACTIONS(593), + [anon_sym_union] = ACTIONS(593), + [anon_sym_unsafe] = ACTIONS(593), + [anon_sym_use] = ACTIONS(593), + [anon_sym_where] = ACTIONS(593), + [anon_sym_while] = ACTIONS(593), + [sym_mutable_specifier] = ACTIONS(593), + [sym_integer_literal] = ACTIONS(616), + [aux_sym_string_literal_token1] = ACTIONS(619), + [sym_char_literal] = ACTIONS(616), + [anon_sym_true] = ACTIONS(622), + [anon_sym_false] = ACTIONS(622), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(593), + [sym_super] = ACTIONS(593), + [sym_crate] = ACTIONS(593), + [sym__raw_string_literal_start] = ACTIONS(625), + [sym_float_literal] = ACTIONS(616), + }, + [76] = { + [sym__token_pattern] = STATE(184), + [sym_token_tree_pattern] = STATE(178), + [sym_token_binding_pattern] = STATE(178), + [sym_token_repetition_pattern] = STATE(178), + [sym__literal] = STATE(178), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), + [sym_line_comment] = STATE(76), + [sym_block_comment] = STATE(76), + [aux_sym_token_tree_pattern_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(561), [anon_sym_SEMI] = ACTIONS(563), [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(629), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(571), - [anon_sym_EQ_GT] = ACTIONS(563), - [anon_sym_COLON] = ACTIONS(573), - [anon_sym_DOLLAR] = ACTIONS(575), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(563), - [anon_sym_u8] = ACTIONS(561), - [anon_sym_i8] = ACTIONS(561), - [anon_sym_u16] = ACTIONS(561), - [anon_sym_i16] = ACTIONS(561), - [anon_sym_u32] = ACTIONS(561), - [anon_sym_i32] = ACTIONS(561), - [anon_sym_u64] = ACTIONS(561), - [anon_sym_i64] = ACTIONS(561), - [anon_sym_u128] = ACTIONS(561), - [anon_sym_i128] = ACTIONS(561), - [anon_sym_isize] = ACTIONS(561), - [anon_sym_usize] = ACTIONS(561), - [anon_sym_f32] = ACTIONS(561), - [anon_sym_f64] = ACTIONS(561), - [anon_sym_bool] = ACTIONS(561), - [anon_sym_str] = ACTIONS(561), - [anon_sym_char] = ACTIONS(561), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(573), - [anon_sym_PERCENT] = ACTIONS(573), - [anon_sym_CARET] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_AMP_EQ] = ACTIONS(563), - [anon_sym_PIPE_EQ] = ACTIONS(563), - [anon_sym_LT_LT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_EQ] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(563), - [anon_sym__] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_COLON_COLON] = ACTIONS(563), - [anon_sym_DASH_GT] = ACTIONS(563), - [anon_sym_POUND] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(561), - [anon_sym_as] = ACTIONS(561), - [anon_sym_async] = ACTIONS(561), - [anon_sym_await] = ACTIONS(561), - [anon_sym_break] = ACTIONS(561), - [anon_sym_const] = ACTIONS(561), - [anon_sym_continue] = ACTIONS(561), - [anon_sym_default] = ACTIONS(561), - [anon_sym_enum] = ACTIONS(561), - [anon_sym_fn] = ACTIONS(561), - [anon_sym_for] = ACTIONS(561), - [anon_sym_gen] = ACTIONS(561), - [anon_sym_if] = ACTIONS(561), - [anon_sym_impl] = ACTIONS(561), - [anon_sym_let] = ACTIONS(561), - [anon_sym_loop] = ACTIONS(561), - [anon_sym_match] = ACTIONS(561), - [anon_sym_mod] = ACTIONS(561), - [anon_sym_pub] = ACTIONS(561), - [anon_sym_return] = ACTIONS(561), - [anon_sym_static] = ACTIONS(561), - [anon_sym_struct] = ACTIONS(561), - [anon_sym_trait] = ACTIONS(561), - [anon_sym_type] = ACTIONS(561), - [anon_sym_union] = ACTIONS(561), - [anon_sym_unsafe] = ACTIONS(561), - [anon_sym_use] = ACTIONS(561), - [anon_sym_where] = ACTIONS(561), - [anon_sym_while] = ACTIONS(561), - [sym_mutable_specifier] = ACTIONS(561), - [sym_integer_literal] = ACTIONS(577), - [aux_sym_string_literal_token1] = ACTIONS(579), - [sym_char_literal] = ACTIONS(577), - [anon_sym_true] = ACTIONS(581), - [anon_sym_false] = ACTIONS(581), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(561), - [sym_super] = ACTIONS(561), - [sym_crate] = ACTIONS(561), - [sym_metavariable] = ACTIONS(583), - [sym__raw_string_literal_start] = ACTIONS(585), - [sym_float_literal] = ACTIONS(577), - }, - [76] = { - [sym__token_pattern] = STATE(181), - [sym_token_tree_pattern] = STATE(179), - [sym_token_binding_pattern] = STATE(179), - [sym_token_repetition_pattern] = STATE(179), - [sym__literal] = STATE(179), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), - [sym_line_comment] = STATE(76), - [sym_block_comment] = STATE(76), - [aux_sym_token_tree_pattern_repeat1] = STATE(80), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(561), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_RBRACK] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(628), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(569), [anon_sym_EQ_GT] = ACTIONS(563), [anon_sym_COLON] = ACTIONS(573), [anon_sym_DOLLAR] = ACTIONS(575), @@ -24922,24 +24960,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(577), }, [77] = { - [sym__token_pattern] = STATE(181), - [sym_token_tree_pattern] = STATE(179), - [sym_token_binding_pattern] = STATE(179), - [sym_token_repetition_pattern] = STATE(179), - [sym__literal] = STATE(179), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), + [sym__token_pattern] = STATE(184), + [sym_token_tree_pattern] = STATE(178), + [sym_token_binding_pattern] = STATE(178), + [sym_token_repetition_pattern] = STATE(178), + [sym__literal] = STATE(178), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), [sym_line_comment] = STATE(77), [sym_block_comment] = STATE(77), - [aux_sym_token_tree_pattern_repeat1] = STATE(81), - [aux_sym__non_special_token_repeat1] = STATE(140), + [aux_sym_token_tree_pattern_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(561), [anon_sym_SEMI] = ACTIONS(563), [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(571), - [anon_sym_RBRACE] = ACTIONS(629), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_RBRACK] = ACTIONS(591), + [anon_sym_LBRACE] = ACTIONS(569), [anon_sym_EQ_GT] = ACTIONS(563), [anon_sym_COLON] = ACTIONS(573), [anon_sym_DOLLAR] = ACTIONS(575), @@ -25046,24 +25084,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(577), }, [78] = { - [sym__token_pattern] = STATE(181), - [sym_token_tree_pattern] = STATE(179), - [sym_token_binding_pattern] = STATE(179), - [sym_token_repetition_pattern] = STATE(179), - [sym__literal] = STATE(179), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), + [sym__token_pattern] = STATE(184), + [sym_token_tree_pattern] = STATE(178), + [sym_token_binding_pattern] = STATE(178), + [sym_token_repetition_pattern] = STATE(178), + [sym__literal] = STATE(178), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), [sym_line_comment] = STATE(78), [sym_block_comment] = STATE(78), - [aux_sym_token_tree_pattern_repeat1] = STATE(71), - [aux_sym__non_special_token_repeat1] = STATE(140), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(561), [anon_sym_SEMI] = ACTIONS(563), [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_RBRACK] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(630), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(569), [anon_sym_EQ_GT] = ACTIONS(563), [anon_sym_COLON] = ACTIONS(573), [anon_sym_DOLLAR] = ACTIONS(575), @@ -25170,24 +25208,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(577), }, [79] = { - [sym__token_pattern] = STATE(181), - [sym_token_tree_pattern] = STATE(179), - [sym_token_binding_pattern] = STATE(179), - [sym_token_repetition_pattern] = STATE(179), - [sym__literal] = STATE(179), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), + [sym_token_tree] = STATE(175), + [sym_token_repetition] = STATE(175), + [sym__literal] = STATE(175), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), [sym_line_comment] = STATE(79), [sym_block_comment] = STATE(79), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym_token_tree_repeat1] = STATE(79), [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(632), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(638), + [anon_sym_RPAREN] = ACTIONS(641), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_RBRACK] = ACTIONS(641), + [anon_sym_LBRACE] = ACTIONS(646), + [anon_sym_RBRACE] = ACTIONS(641), + [anon_sym_EQ_GT] = ACTIONS(635), + [anon_sym_COLON] = ACTIONS(649), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_QMARK] = ACTIONS(635), + [anon_sym_u8] = ACTIONS(632), + [anon_sym_i8] = ACTIONS(632), + [anon_sym_u16] = ACTIONS(632), + [anon_sym_i16] = ACTIONS(632), + [anon_sym_u32] = ACTIONS(632), + [anon_sym_i32] = ACTIONS(632), + [anon_sym_u64] = ACTIONS(632), + [anon_sym_i64] = ACTIONS(632), + [anon_sym_u128] = ACTIONS(632), + [anon_sym_i128] = ACTIONS(632), + [anon_sym_isize] = ACTIONS(632), + [anon_sym_usize] = ACTIONS(632), + [anon_sym_f32] = ACTIONS(632), + [anon_sym_f64] = ACTIONS(632), + [anon_sym_bool] = ACTIONS(632), + [anon_sym_str] = ACTIONS(632), + [anon_sym_char] = ACTIONS(632), + [anon_sym_DASH] = ACTIONS(649), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_AMP] = ACTIONS(649), + [anon_sym_PIPE] = ACTIONS(649), + [anon_sym_AMP_AMP] = ACTIONS(635), + [anon_sym_PIPE_PIPE] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_GT_GT] = ACTIONS(649), + [anon_sym_PLUS_EQ] = ACTIONS(635), + [anon_sym_DASH_EQ] = ACTIONS(635), + [anon_sym_STAR_EQ] = ACTIONS(635), + [anon_sym_SLASH_EQ] = ACTIONS(635), + [anon_sym_PERCENT_EQ] = ACTIONS(635), + [anon_sym_CARET_EQ] = ACTIONS(635), + [anon_sym_AMP_EQ] = ACTIONS(635), + [anon_sym_PIPE_EQ] = ACTIONS(635), + [anon_sym_LT_LT_EQ] = ACTIONS(635), + [anon_sym_GT_GT_EQ] = ACTIONS(635), + [anon_sym_EQ] = ACTIONS(649), + [anon_sym_EQ_EQ] = ACTIONS(635), + [anon_sym_BANG_EQ] = ACTIONS(635), + [anon_sym_GT] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(649), + [anon_sym_GT_EQ] = ACTIONS(635), + [anon_sym_LT_EQ] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(635), + [anon_sym__] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(649), + [anon_sym_DOT_DOT] = ACTIONS(649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(635), + [anon_sym_DOT_DOT_EQ] = ACTIONS(635), + [anon_sym_COMMA] = ACTIONS(635), + [anon_sym_COLON_COLON] = ACTIONS(635), + [anon_sym_DASH_GT] = ACTIONS(635), + [anon_sym_POUND] = ACTIONS(635), + [anon_sym_SQUOTE] = ACTIONS(632), + [anon_sym_as] = ACTIONS(632), + [anon_sym_async] = ACTIONS(632), + [anon_sym_await] = ACTIONS(632), + [anon_sym_break] = ACTIONS(632), + [anon_sym_const] = ACTIONS(632), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_default] = ACTIONS(632), + [anon_sym_enum] = ACTIONS(632), + [anon_sym_fn] = ACTIONS(632), + [anon_sym_for] = ACTIONS(632), + [anon_sym_gen] = ACTIONS(632), + [anon_sym_if] = ACTIONS(632), + [anon_sym_impl] = ACTIONS(632), + [anon_sym_let] = ACTIONS(632), + [anon_sym_loop] = ACTIONS(632), + [anon_sym_match] = ACTIONS(632), + [anon_sym_mod] = ACTIONS(632), + [anon_sym_pub] = ACTIONS(632), + [anon_sym_return] = ACTIONS(632), + [anon_sym_static] = ACTIONS(632), + [anon_sym_struct] = ACTIONS(632), + [anon_sym_trait] = ACTIONS(632), + [anon_sym_type] = ACTIONS(632), + [anon_sym_union] = ACTIONS(632), + [anon_sym_unsafe] = ACTIONS(632), + [anon_sym_use] = ACTIONS(632), + [anon_sym_where] = ACTIONS(632), + [anon_sym_while] = ACTIONS(632), + [sym_mutable_specifier] = ACTIONS(632), + [sym_integer_literal] = ACTIONS(655), + [aux_sym_string_literal_token1] = ACTIONS(658), + [sym_char_literal] = ACTIONS(655), + [anon_sym_true] = ACTIONS(661), + [anon_sym_false] = ACTIONS(661), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(632), + [sym_super] = ACTIONS(632), + [sym_crate] = ACTIONS(632), + [sym_metavariable] = ACTIONS(664), + [sym__raw_string_literal_start] = ACTIONS(667), + [sym_float_literal] = ACTIONS(655), + }, + [80] = { + [sym__token_pattern] = STATE(184), + [sym_token_tree_pattern] = STATE(178), + [sym_token_binding_pattern] = STATE(178), + [sym_token_repetition_pattern] = STATE(178), + [sym__literal] = STATE(178), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), + [sym_line_comment] = STATE(80), + [sym_block_comment] = STATE(80), + [aux_sym_token_tree_pattern_repeat1] = STATE(74), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(561), [anon_sym_SEMI] = ACTIONS(563), [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_RBRACE] = ACTIONS(591), [anon_sym_EQ_GT] = ACTIONS(563), [anon_sym_COLON] = ACTIONS(573), [anon_sym_DOLLAR] = ACTIONS(575), @@ -25293,25 +25455,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(585), [sym_float_literal] = ACTIONS(577), }, - [80] = { - [sym__token_pattern] = STATE(181), - [sym_token_tree_pattern] = STATE(179), - [sym_token_binding_pattern] = STATE(179), - [sym_token_repetition_pattern] = STATE(179), - [sym__literal] = STATE(179), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), - [sym_line_comment] = STATE(80), - [sym_block_comment] = STATE(80), + [81] = { + [sym__token_pattern] = STATE(184), + [sym_token_tree_pattern] = STATE(178), + [sym_token_binding_pattern] = STATE(178), + [sym_token_repetition_pattern] = STATE(178), + [sym__literal] = STATE(178), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), + [sym_line_comment] = STATE(81), + [sym_block_comment] = STATE(81), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(140), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(561), [anon_sym_SEMI] = ACTIONS(563), [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_RBRACK] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(589), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(569), [anon_sym_EQ_GT] = ACTIONS(563), [anon_sym_COLON] = ACTIONS(573), [anon_sym_DOLLAR] = ACTIONS(575), @@ -25417,25 +25579,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(585), [sym_float_literal] = ACTIONS(577), }, - [81] = { - [sym__token_pattern] = STATE(181), - [sym_token_tree_pattern] = STATE(179), - [sym_token_binding_pattern] = STATE(179), - [sym_token_repetition_pattern] = STATE(179), - [sym__literal] = STATE(179), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), - [sym_line_comment] = STATE(81), - [sym_block_comment] = STATE(81), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(140), + [82] = { + [sym__token_pattern] = STATE(184), + [sym_token_tree_pattern] = STATE(178), + [sym_token_binding_pattern] = STATE(178), + [sym_token_repetition_pattern] = STATE(178), + [sym__literal] = STATE(178), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), + [sym_line_comment] = STATE(82), + [sym_block_comment] = STATE(82), + [aux_sym_token_tree_pattern_repeat1] = STATE(71), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(561), [anon_sym_SEMI] = ACTIONS(563), [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(571), - [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_RPAREN] = ACTIONS(587), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_LBRACE] = ACTIONS(569), [anon_sym_EQ_GT] = ACTIONS(563), [anon_sym_COLON] = ACTIONS(573), [anon_sym_DOLLAR] = ACTIONS(575), @@ -25541,149 +25703,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(585), [sym_float_literal] = ACTIONS(577), }, - [82] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(82), - [sym_block_comment] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(82), - [sym_identifier] = ACTIONS(633), - [anon_sym_SEMI] = ACTIONS(636), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_RPAREN] = ACTIONS(642), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_RBRACK] = ACTIONS(642), - [anon_sym_LBRACE] = ACTIONS(647), - [anon_sym_RBRACE] = ACTIONS(642), - [anon_sym_EQ_GT] = ACTIONS(636), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(636), - [anon_sym_u8] = ACTIONS(633), - [anon_sym_i8] = ACTIONS(633), - [anon_sym_u16] = ACTIONS(633), - [anon_sym_i16] = ACTIONS(633), - [anon_sym_u32] = ACTIONS(633), - [anon_sym_i32] = ACTIONS(633), - [anon_sym_u64] = ACTIONS(633), - [anon_sym_i64] = ACTIONS(633), - [anon_sym_u128] = ACTIONS(633), - [anon_sym_i128] = ACTIONS(633), - [anon_sym_isize] = ACTIONS(633), - [anon_sym_usize] = ACTIONS(633), - [anon_sym_f32] = ACTIONS(633), - [anon_sym_f64] = ACTIONS(633), - [anon_sym_bool] = ACTIONS(633), - [anon_sym_str] = ACTIONS(633), - [anon_sym_char] = ACTIONS(633), - [anon_sym_DASH] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(636), - [anon_sym_PIPE_PIPE] = ACTIONS(636), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [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_CARET_EQ] = ACTIONS(636), - [anon_sym_AMP_EQ] = ACTIONS(636), - [anon_sym_PIPE_EQ] = ACTIONS(636), - [anon_sym_LT_LT_EQ] = ACTIONS(636), - [anon_sym_GT_GT_EQ] = ACTIONS(636), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(636), - [anon_sym_BANG_EQ] = ACTIONS(636), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(636), - [anon_sym_LT_EQ] = ACTIONS(636), - [anon_sym_AT] = ACTIONS(636), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(636), - [anon_sym_DOT_DOT_EQ] = ACTIONS(636), - [anon_sym_COMMA] = ACTIONS(636), - [anon_sym_COLON_COLON] = ACTIONS(636), - [anon_sym_DASH_GT] = ACTIONS(636), - [anon_sym_POUND] = ACTIONS(636), - [anon_sym_SQUOTE] = ACTIONS(633), - [anon_sym_as] = ACTIONS(633), - [anon_sym_async] = ACTIONS(633), - [anon_sym_await] = ACTIONS(633), - [anon_sym_break] = ACTIONS(633), - [anon_sym_const] = ACTIONS(633), - [anon_sym_continue] = ACTIONS(633), - [anon_sym_default] = ACTIONS(633), - [anon_sym_enum] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(633), - [anon_sym_for] = ACTIONS(633), - [anon_sym_gen] = ACTIONS(633), - [anon_sym_if] = ACTIONS(633), - [anon_sym_impl] = ACTIONS(633), - [anon_sym_let] = ACTIONS(633), - [anon_sym_loop] = ACTIONS(633), - [anon_sym_match] = ACTIONS(633), - [anon_sym_mod] = ACTIONS(633), - [anon_sym_pub] = ACTIONS(633), - [anon_sym_return] = ACTIONS(633), - [anon_sym_static] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(633), - [anon_sym_trait] = ACTIONS(633), - [anon_sym_type] = ACTIONS(633), - [anon_sym_union] = ACTIONS(633), - [anon_sym_unsafe] = ACTIONS(633), - [anon_sym_use] = ACTIONS(633), - [anon_sym_where] = ACTIONS(633), - [anon_sym_while] = ACTIONS(633), - [sym_mutable_specifier] = ACTIONS(633), - [sym_integer_literal] = ACTIONS(656), - [aux_sym_string_literal_token1] = ACTIONS(659), - [sym_char_literal] = ACTIONS(656), - [anon_sym_true] = ACTIONS(662), - [anon_sym_false] = ACTIONS(662), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(633), - [sym_super] = ACTIONS(633), - [sym_crate] = ACTIONS(633), - [sym__raw_string_literal_start] = ACTIONS(665), - [sym_float_literal] = ACTIONS(656), - }, [83] = { - [sym__token_pattern] = STATE(181), - [sym_token_tree_pattern] = STATE(179), - [sym_token_binding_pattern] = STATE(179), - [sym_token_repetition_pattern] = STATE(179), - [sym__literal] = STATE(179), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), + [sym__token_pattern] = STATE(184), + [sym_token_tree_pattern] = STATE(178), + [sym_token_binding_pattern] = STATE(178), + [sym_token_repetition_pattern] = STATE(178), + [sym__literal] = STATE(178), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), - [aux_sym_token_tree_pattern_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(140), + [aux_sym_token_tree_pattern_repeat1] = STATE(72), + [aux_sym__non_special_token_repeat1] = STATE(136), [sym_identifier] = ACTIONS(561), [anon_sym_SEMI] = ACTIONS(563), [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_RPAREN] = ACTIONS(668), - [anon_sym_LBRACK] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(567), + [anon_sym_RBRACK] = ACTIONS(587), + [anon_sym_LBRACE] = ACTIONS(569), [anon_sym_EQ_GT] = ACTIONS(563), [anon_sym_COLON] = ACTIONS(573), [anon_sym_DOLLAR] = ACTIONS(575), @@ -25790,23 +25828,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(577), }, [84] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(91), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_RBRACK] = ACTIONS(678), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(680), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -25912,21 +25950,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(686), }, [85] = { - [sym_token_tree] = STATE(197), - [sym_token_repetition] = STATE(197), - [sym__literal] = STATE(197), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), + [sym_token_tree] = STATE(175), + [sym_token_repetition] = STATE(175), + [sym__literal] = STATE(175), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), - [aux_sym_token_tree_repeat1] = STATE(86), - [aux_sym__non_special_token_repeat1] = STATE(142), + [aux_sym_token_tree_repeat1] = STATE(88), + [aux_sym__non_special_token_repeat1] = STATE(140), [sym_identifier] = ACTIONS(694), [anon_sym_SEMI] = ACTIONS(563), [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(698), - [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_RBRACK] = ACTIONS(700), [anon_sym_LBRACE] = ACTIONS(702), [anon_sym_EQ_GT] = ACTIONS(563), [anon_sym_COLON] = ACTIONS(573), @@ -26034,21 +26072,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(577), }, [86] = { - [sym_token_tree] = STATE(197), - [sym_token_repetition] = STATE(197), - [sym__literal] = STATE(197), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), + [sym_token_tree] = STATE(175), + [sym_token_repetition] = STATE(175), + [sym__literal] = STATE(175), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), - [aux_sym_token_tree_repeat1] = STATE(73), - [aux_sym__non_special_token_repeat1] = STATE(142), + [aux_sym_token_tree_repeat1] = STATE(89), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(700), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), + }, + [87] = { + [sym_token_tree] = STATE(175), + [sym_token_repetition] = STATE(175), + [sym__literal] = STATE(175), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), + [sym_line_comment] = STATE(87), + [sym_block_comment] = STATE(87), + [aux_sym_token_tree_repeat1] = STATE(79), + [aux_sym__non_special_token_repeat1] = STATE(140), [sym_identifier] = ACTIONS(694), [anon_sym_SEMI] = ACTIONS(563), [anon_sym_LPAREN] = ACTIONS(696), [anon_sym_RPAREN] = ACTIONS(708), - [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(698), [anon_sym_LBRACE] = ACTIONS(702), [anon_sym_EQ_GT] = ACTIONS(563), [anon_sym_COLON] = ACTIONS(573), @@ -26155,24 +26315,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(585), [sym_float_literal] = ACTIONS(577), }, - [87] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(87), - [sym_block_comment] = STATE(87), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(82), + [88] = { + [sym_token_tree] = STATE(175), + [sym_token_repetition] = STATE(175), + [sym__literal] = STATE(175), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), + [sym_line_comment] = STATE(88), + [sym_block_comment] = STATE(88), + [aux_sym_token_tree_repeat1] = STATE(79), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_RBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), + }, + [89] = { + [sym_token_tree] = STATE(175), + [sym_token_repetition] = STATE(175), + [sym__literal] = STATE(175), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), + [sym_line_comment] = STATE(89), + [sym_block_comment] = STATE(89), + [aux_sym_token_tree_repeat1] = STATE(79), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(708), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), + }, + [90] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(90), + [sym_block_comment] = STATE(90), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_RPAREN] = ACTIONS(710), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -26277,24 +26681,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [88] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(88), - [sym_block_comment] = STATE(88), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(82), + [91] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(91), + [sym_block_comment] = STATE(91), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_RBRACK] = ACTIONS(710), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(710), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -26399,24 +26803,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [89] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(89), - [sym_block_comment] = STATE(89), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(82), + [92] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(92), + [sym_block_comment] = STATE(92), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(96), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(712), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), - [anon_sym_RBRACE] = ACTIONS(710), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -26521,1000 +26925,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [90] = { - [sym_token_tree] = STATE(197), - [sym_token_repetition] = STATE(197), - [sym__literal] = STATE(197), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), - [sym_line_comment] = STATE(90), - [sym_block_comment] = STATE(90), - [aux_sym_token_tree_repeat1] = STATE(73), - [aux_sym__non_special_token_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_RBRACK] = ACTIONS(708), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(563), - [anon_sym_COLON] = ACTIONS(573), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(563), - [anon_sym_u8] = ACTIONS(694), - [anon_sym_i8] = ACTIONS(694), - [anon_sym_u16] = ACTIONS(694), - [anon_sym_i16] = ACTIONS(694), - [anon_sym_u32] = ACTIONS(694), - [anon_sym_i32] = ACTIONS(694), - [anon_sym_u64] = ACTIONS(694), - [anon_sym_i64] = ACTIONS(694), - [anon_sym_u128] = ACTIONS(694), - [anon_sym_i128] = ACTIONS(694), - [anon_sym_isize] = ACTIONS(694), - [anon_sym_usize] = ACTIONS(694), - [anon_sym_f32] = ACTIONS(694), - [anon_sym_f64] = ACTIONS(694), - [anon_sym_bool] = ACTIONS(694), - [anon_sym_str] = ACTIONS(694), - [anon_sym_char] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(573), - [anon_sym_PERCENT] = ACTIONS(573), - [anon_sym_CARET] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_AMP_EQ] = ACTIONS(563), - [anon_sym_PIPE_EQ] = ACTIONS(563), - [anon_sym_LT_LT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_EQ] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(563), - [anon_sym__] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_COLON_COLON] = ACTIONS(563), - [anon_sym_DASH_GT] = ACTIONS(563), - [anon_sym_POUND] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_as] = ACTIONS(694), - [anon_sym_async] = ACTIONS(694), - [anon_sym_await] = ACTIONS(694), - [anon_sym_break] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_continue] = ACTIONS(694), - [anon_sym_default] = ACTIONS(694), - [anon_sym_enum] = ACTIONS(694), - [anon_sym_fn] = ACTIONS(694), - [anon_sym_for] = ACTIONS(694), - [anon_sym_gen] = ACTIONS(694), - [anon_sym_if] = ACTIONS(694), - [anon_sym_impl] = ACTIONS(694), - [anon_sym_let] = ACTIONS(694), - [anon_sym_loop] = ACTIONS(694), - [anon_sym_match] = ACTIONS(694), - [anon_sym_mod] = ACTIONS(694), - [anon_sym_pub] = ACTIONS(694), - [anon_sym_return] = ACTIONS(694), - [anon_sym_static] = ACTIONS(694), - [anon_sym_struct] = ACTIONS(694), - [anon_sym_trait] = ACTIONS(694), - [anon_sym_type] = ACTIONS(694), - [anon_sym_union] = ACTIONS(694), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_use] = ACTIONS(694), - [anon_sym_where] = ACTIONS(694), - [anon_sym_while] = ACTIONS(694), - [sym_mutable_specifier] = ACTIONS(694), - [sym_integer_literal] = ACTIONS(577), - [aux_sym_string_literal_token1] = ACTIONS(579), - [sym_char_literal] = ACTIONS(577), - [anon_sym_true] = ACTIONS(581), - [anon_sym_false] = ACTIONS(581), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(694), - [sym_super] = ACTIONS(694), - [sym_crate] = ACTIONS(694), - [sym_metavariable] = ACTIONS(706), - [sym__raw_string_literal_start] = ACTIONS(585), - [sym_float_literal] = ACTIONS(577), - }, - [91] = { - [sym_token_tree] = STATE(197), - [sym_token_repetition] = STATE(197), - [sym__literal] = STATE(197), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), - [sym_line_comment] = STATE(91), - [sym_block_comment] = STATE(91), - [aux_sym_token_tree_repeat1] = STATE(73), - [aux_sym__non_special_token_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(563), - [anon_sym_COLON] = ACTIONS(573), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(563), - [anon_sym_u8] = ACTIONS(694), - [anon_sym_i8] = ACTIONS(694), - [anon_sym_u16] = ACTIONS(694), - [anon_sym_i16] = ACTIONS(694), - [anon_sym_u32] = ACTIONS(694), - [anon_sym_i32] = ACTIONS(694), - [anon_sym_u64] = ACTIONS(694), - [anon_sym_i64] = ACTIONS(694), - [anon_sym_u128] = ACTIONS(694), - [anon_sym_i128] = ACTIONS(694), - [anon_sym_isize] = ACTIONS(694), - [anon_sym_usize] = ACTIONS(694), - [anon_sym_f32] = ACTIONS(694), - [anon_sym_f64] = ACTIONS(694), - [anon_sym_bool] = ACTIONS(694), - [anon_sym_str] = ACTIONS(694), - [anon_sym_char] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(573), - [anon_sym_PERCENT] = ACTIONS(573), - [anon_sym_CARET] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_AMP_EQ] = ACTIONS(563), - [anon_sym_PIPE_EQ] = ACTIONS(563), - [anon_sym_LT_LT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_EQ] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(563), - [anon_sym__] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_COLON_COLON] = ACTIONS(563), - [anon_sym_DASH_GT] = ACTIONS(563), - [anon_sym_POUND] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_as] = ACTIONS(694), - [anon_sym_async] = ACTIONS(694), - [anon_sym_await] = ACTIONS(694), - [anon_sym_break] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_continue] = ACTIONS(694), - [anon_sym_default] = ACTIONS(694), - [anon_sym_enum] = ACTIONS(694), - [anon_sym_fn] = ACTIONS(694), - [anon_sym_for] = ACTIONS(694), - [anon_sym_gen] = ACTIONS(694), - [anon_sym_if] = ACTIONS(694), - [anon_sym_impl] = ACTIONS(694), - [anon_sym_let] = ACTIONS(694), - [anon_sym_loop] = ACTIONS(694), - [anon_sym_match] = ACTIONS(694), - [anon_sym_mod] = ACTIONS(694), - [anon_sym_pub] = ACTIONS(694), - [anon_sym_return] = ACTIONS(694), - [anon_sym_static] = ACTIONS(694), - [anon_sym_struct] = ACTIONS(694), - [anon_sym_trait] = ACTIONS(694), - [anon_sym_type] = ACTIONS(694), - [anon_sym_union] = ACTIONS(694), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_use] = ACTIONS(694), - [anon_sym_where] = ACTIONS(694), - [anon_sym_while] = ACTIONS(694), - [sym_mutable_specifier] = ACTIONS(694), - [sym_integer_literal] = ACTIONS(577), - [aux_sym_string_literal_token1] = ACTIONS(579), - [sym_char_literal] = ACTIONS(577), - [anon_sym_true] = ACTIONS(581), - [anon_sym_false] = ACTIONS(581), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(694), - [sym_super] = ACTIONS(694), - [sym_crate] = ACTIONS(694), - [sym_metavariable] = ACTIONS(706), - [sym__raw_string_literal_start] = ACTIONS(585), - [sym_float_literal] = ACTIONS(577), - }, - [92] = { - [sym_token_tree] = STATE(197), - [sym_token_repetition] = STATE(197), - [sym__literal] = STATE(197), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), - [sym_line_comment] = STATE(92), - [sym_block_comment] = STATE(92), - [aux_sym_token_tree_repeat1] = STATE(95), - [aux_sym__non_special_token_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(712), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(563), - [anon_sym_COLON] = ACTIONS(573), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(563), - [anon_sym_u8] = ACTIONS(694), - [anon_sym_i8] = ACTIONS(694), - [anon_sym_u16] = ACTIONS(694), - [anon_sym_i16] = ACTIONS(694), - [anon_sym_u32] = ACTIONS(694), - [anon_sym_i32] = ACTIONS(694), - [anon_sym_u64] = ACTIONS(694), - [anon_sym_i64] = ACTIONS(694), - [anon_sym_u128] = ACTIONS(694), - [anon_sym_i128] = ACTIONS(694), - [anon_sym_isize] = ACTIONS(694), - [anon_sym_usize] = ACTIONS(694), - [anon_sym_f32] = ACTIONS(694), - [anon_sym_f64] = ACTIONS(694), - [anon_sym_bool] = ACTIONS(694), - [anon_sym_str] = ACTIONS(694), - [anon_sym_char] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(573), - [anon_sym_PERCENT] = ACTIONS(573), - [anon_sym_CARET] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_AMP_EQ] = ACTIONS(563), - [anon_sym_PIPE_EQ] = ACTIONS(563), - [anon_sym_LT_LT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_EQ] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(563), - [anon_sym__] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_COLON_COLON] = ACTIONS(563), - [anon_sym_DASH_GT] = ACTIONS(563), - [anon_sym_POUND] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_as] = ACTIONS(694), - [anon_sym_async] = ACTIONS(694), - [anon_sym_await] = ACTIONS(694), - [anon_sym_break] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_continue] = ACTIONS(694), - [anon_sym_default] = ACTIONS(694), - [anon_sym_enum] = ACTIONS(694), - [anon_sym_fn] = ACTIONS(694), - [anon_sym_for] = ACTIONS(694), - [anon_sym_gen] = ACTIONS(694), - [anon_sym_if] = ACTIONS(694), - [anon_sym_impl] = ACTIONS(694), - [anon_sym_let] = ACTIONS(694), - [anon_sym_loop] = ACTIONS(694), - [anon_sym_match] = ACTIONS(694), - [anon_sym_mod] = ACTIONS(694), - [anon_sym_pub] = ACTIONS(694), - [anon_sym_return] = ACTIONS(694), - [anon_sym_static] = ACTIONS(694), - [anon_sym_struct] = ACTIONS(694), - [anon_sym_trait] = ACTIONS(694), - [anon_sym_type] = ACTIONS(694), - [anon_sym_union] = ACTIONS(694), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_use] = ACTIONS(694), - [anon_sym_where] = ACTIONS(694), - [anon_sym_while] = ACTIONS(694), - [sym_mutable_specifier] = ACTIONS(694), - [sym_integer_literal] = ACTIONS(577), - [aux_sym_string_literal_token1] = ACTIONS(579), - [sym_char_literal] = ACTIONS(577), - [anon_sym_true] = ACTIONS(581), - [anon_sym_false] = ACTIONS(581), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(694), - [sym_super] = ACTIONS(694), - [sym_crate] = ACTIONS(694), - [sym_metavariable] = ACTIONS(706), - [sym__raw_string_literal_start] = ACTIONS(585), - [sym_float_literal] = ACTIONS(577), - }, [93] = { - [sym_token_tree] = STATE(197), - [sym_token_repetition] = STATE(197), - [sym__literal] = STATE(197), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), [sym_line_comment] = STATE(93), [sym_block_comment] = STATE(93), - [aux_sym_token_tree_repeat1] = STATE(96), - [aux_sym__non_special_token_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(97), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), [anon_sym_RBRACK] = ACTIONS(712), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(563), - [anon_sym_COLON] = ACTIONS(573), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(563), - [anon_sym_u8] = ACTIONS(694), - [anon_sym_i8] = ACTIONS(694), - [anon_sym_u16] = ACTIONS(694), - [anon_sym_i16] = ACTIONS(694), - [anon_sym_u32] = ACTIONS(694), - [anon_sym_i32] = ACTIONS(694), - [anon_sym_u64] = ACTIONS(694), - [anon_sym_i64] = ACTIONS(694), - [anon_sym_u128] = ACTIONS(694), - [anon_sym_i128] = ACTIONS(694), - [anon_sym_isize] = ACTIONS(694), - [anon_sym_usize] = ACTIONS(694), - [anon_sym_f32] = ACTIONS(694), - [anon_sym_f64] = ACTIONS(694), - [anon_sym_bool] = ACTIONS(694), - [anon_sym_str] = ACTIONS(694), - [anon_sym_char] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(573), - [anon_sym_PERCENT] = ACTIONS(573), - [anon_sym_CARET] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_AMP_EQ] = ACTIONS(563), - [anon_sym_PIPE_EQ] = ACTIONS(563), - [anon_sym_LT_LT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_EQ] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(563), - [anon_sym__] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_COLON_COLON] = ACTIONS(563), - [anon_sym_DASH_GT] = ACTIONS(563), - [anon_sym_POUND] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_as] = ACTIONS(694), - [anon_sym_async] = ACTIONS(694), - [anon_sym_await] = ACTIONS(694), - [anon_sym_break] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_continue] = ACTIONS(694), - [anon_sym_default] = ACTIONS(694), - [anon_sym_enum] = ACTIONS(694), - [anon_sym_fn] = ACTIONS(694), - [anon_sym_for] = ACTIONS(694), - [anon_sym_gen] = ACTIONS(694), - [anon_sym_if] = ACTIONS(694), - [anon_sym_impl] = ACTIONS(694), - [anon_sym_let] = ACTIONS(694), - [anon_sym_loop] = ACTIONS(694), - [anon_sym_match] = ACTIONS(694), - [anon_sym_mod] = ACTIONS(694), - [anon_sym_pub] = ACTIONS(694), - [anon_sym_return] = ACTIONS(694), - [anon_sym_static] = ACTIONS(694), - [anon_sym_struct] = ACTIONS(694), - [anon_sym_trait] = ACTIONS(694), - [anon_sym_type] = ACTIONS(694), - [anon_sym_union] = ACTIONS(694), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_use] = ACTIONS(694), - [anon_sym_where] = ACTIONS(694), - [anon_sym_while] = ACTIONS(694), - [sym_mutable_specifier] = ACTIONS(694), - [sym_integer_literal] = ACTIONS(577), - [aux_sym_string_literal_token1] = ACTIONS(579), - [sym_char_literal] = ACTIONS(577), - [anon_sym_true] = ACTIONS(581), - [anon_sym_false] = ACTIONS(581), + [anon_sym_LBRACE] = ACTIONS(678), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [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_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [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_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(694), - [sym_super] = ACTIONS(694), - [sym_crate] = ACTIONS(694), - [sym_metavariable] = ACTIONS(706), - [sym__raw_string_literal_start] = ACTIONS(585), - [sym_float_literal] = ACTIONS(577), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [94] = { - [sym_token_tree] = STATE(197), - [sym_token_repetition] = STATE(197), - [sym__literal] = STATE(197), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), [sym_line_comment] = STATE(94), [sym_block_comment] = STATE(94), - [aux_sym_token_tree_repeat1] = STATE(97), - [aux_sym__non_special_token_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(98), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_RBRACE] = ACTIONS(712), - [anon_sym_EQ_GT] = ACTIONS(563), - [anon_sym_COLON] = ACTIONS(573), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(563), - [anon_sym_u8] = ACTIONS(694), - [anon_sym_i8] = ACTIONS(694), - [anon_sym_u16] = ACTIONS(694), - [anon_sym_i16] = ACTIONS(694), - [anon_sym_u32] = ACTIONS(694), - [anon_sym_i32] = ACTIONS(694), - [anon_sym_u64] = ACTIONS(694), - [anon_sym_i64] = ACTIONS(694), - [anon_sym_u128] = ACTIONS(694), - [anon_sym_i128] = ACTIONS(694), - [anon_sym_isize] = ACTIONS(694), - [anon_sym_usize] = ACTIONS(694), - [anon_sym_f32] = ACTIONS(694), - [anon_sym_f64] = ACTIONS(694), - [anon_sym_bool] = ACTIONS(694), - [anon_sym_str] = ACTIONS(694), - [anon_sym_char] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(573), - [anon_sym_PERCENT] = ACTIONS(573), - [anon_sym_CARET] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_AMP_EQ] = ACTIONS(563), - [anon_sym_PIPE_EQ] = ACTIONS(563), - [anon_sym_LT_LT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_EQ] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(563), - [anon_sym__] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_COLON_COLON] = ACTIONS(563), - [anon_sym_DASH_GT] = ACTIONS(563), - [anon_sym_POUND] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_as] = ACTIONS(694), - [anon_sym_async] = ACTIONS(694), - [anon_sym_await] = ACTIONS(694), - [anon_sym_break] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_continue] = ACTIONS(694), - [anon_sym_default] = ACTIONS(694), - [anon_sym_enum] = ACTIONS(694), - [anon_sym_fn] = ACTIONS(694), - [anon_sym_for] = ACTIONS(694), - [anon_sym_gen] = ACTIONS(694), - [anon_sym_if] = ACTIONS(694), - [anon_sym_impl] = ACTIONS(694), - [anon_sym_let] = ACTIONS(694), - [anon_sym_loop] = ACTIONS(694), - [anon_sym_match] = ACTIONS(694), - [anon_sym_mod] = ACTIONS(694), - [anon_sym_pub] = ACTIONS(694), - [anon_sym_return] = ACTIONS(694), - [anon_sym_static] = ACTIONS(694), - [anon_sym_struct] = ACTIONS(694), - [anon_sym_trait] = ACTIONS(694), - [anon_sym_type] = ACTIONS(694), - [anon_sym_union] = ACTIONS(694), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_use] = ACTIONS(694), - [anon_sym_where] = ACTIONS(694), - [anon_sym_while] = ACTIONS(694), - [sym_mutable_specifier] = ACTIONS(694), - [sym_integer_literal] = ACTIONS(577), - [aux_sym_string_literal_token1] = ACTIONS(579), - [sym_char_literal] = ACTIONS(577), - [anon_sym_true] = ACTIONS(581), - [anon_sym_false] = ACTIONS(581), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [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_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [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_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(694), - [sym_super] = ACTIONS(694), - [sym_crate] = ACTIONS(694), - [sym_metavariable] = ACTIONS(706), - [sym__raw_string_literal_start] = ACTIONS(585), - [sym_float_literal] = ACTIONS(577), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, [95] = { - [sym_token_tree] = STATE(197), - [sym_token_repetition] = STATE(197), - [sym__literal] = STATE(197), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), [sym_line_comment] = STATE(95), [sym_block_comment] = STATE(95), - [aux_sym_token_tree_repeat1] = STATE(73), - [aux_sym__non_special_token_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(714), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(563), - [anon_sym_COLON] = ACTIONS(573), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(563), - [anon_sym_u8] = ACTIONS(694), - [anon_sym_i8] = ACTIONS(694), - [anon_sym_u16] = ACTIONS(694), - [anon_sym_i16] = ACTIONS(694), - [anon_sym_u32] = ACTIONS(694), - [anon_sym_i32] = ACTIONS(694), - [anon_sym_u64] = ACTIONS(694), - [anon_sym_i64] = ACTIONS(694), - [anon_sym_u128] = ACTIONS(694), - [anon_sym_i128] = ACTIONS(694), - [anon_sym_isize] = ACTIONS(694), - [anon_sym_usize] = ACTIONS(694), - [anon_sym_f32] = ACTIONS(694), - [anon_sym_f64] = ACTIONS(694), - [anon_sym_bool] = ACTIONS(694), - [anon_sym_str] = ACTIONS(694), - [anon_sym_char] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(573), - [anon_sym_PERCENT] = ACTIONS(573), - [anon_sym_CARET] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_AMP_EQ] = ACTIONS(563), - [anon_sym_PIPE_EQ] = ACTIONS(563), - [anon_sym_LT_LT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_EQ] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(563), - [anon_sym__] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_COLON_COLON] = ACTIONS(563), - [anon_sym_DASH_GT] = ACTIONS(563), - [anon_sym_POUND] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_as] = ACTIONS(694), - [anon_sym_async] = ACTIONS(694), - [anon_sym_await] = ACTIONS(694), - [anon_sym_break] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_continue] = ACTIONS(694), - [anon_sym_default] = ACTIONS(694), - [anon_sym_enum] = ACTIONS(694), - [anon_sym_fn] = ACTIONS(694), - [anon_sym_for] = ACTIONS(694), - [anon_sym_gen] = ACTIONS(694), - [anon_sym_if] = ACTIONS(694), - [anon_sym_impl] = ACTIONS(694), - [anon_sym_let] = ACTIONS(694), - [anon_sym_loop] = ACTIONS(694), - [anon_sym_match] = ACTIONS(694), - [anon_sym_mod] = ACTIONS(694), - [anon_sym_pub] = ACTIONS(694), - [anon_sym_return] = ACTIONS(694), - [anon_sym_static] = ACTIONS(694), - [anon_sym_struct] = ACTIONS(694), - [anon_sym_trait] = ACTIONS(694), - [anon_sym_type] = ACTIONS(694), - [anon_sym_union] = ACTIONS(694), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_use] = ACTIONS(694), - [anon_sym_where] = ACTIONS(694), - [anon_sym_while] = ACTIONS(694), - [sym_mutable_specifier] = ACTIONS(694), - [sym_integer_literal] = ACTIONS(577), - [aux_sym_string_literal_token1] = ACTIONS(579), - [sym_char_literal] = ACTIONS(577), - [anon_sym_true] = ACTIONS(581), - [anon_sym_false] = ACTIONS(581), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(694), - [sym_super] = ACTIONS(694), - [sym_crate] = ACTIONS(694), - [sym_metavariable] = ACTIONS(706), - [sym__raw_string_literal_start] = ACTIONS(585), - [sym_float_literal] = ACTIONS(577), - }, - [96] = { - [sym_token_tree] = STATE(197), - [sym_token_repetition] = STATE(197), - [sym__literal] = STATE(197), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), - [sym_line_comment] = STATE(96), - [sym_block_comment] = STATE(96), - [aux_sym_token_tree_repeat1] = STATE(73), - [aux_sym__non_special_token_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_RBRACK] = ACTIONS(714), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(563), - [anon_sym_COLON] = ACTIONS(573), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(563), - [anon_sym_u8] = ACTIONS(694), - [anon_sym_i8] = ACTIONS(694), - [anon_sym_u16] = ACTIONS(694), - [anon_sym_i16] = ACTIONS(694), - [anon_sym_u32] = ACTIONS(694), - [anon_sym_i32] = ACTIONS(694), - [anon_sym_u64] = ACTIONS(694), - [anon_sym_i64] = ACTIONS(694), - [anon_sym_u128] = ACTIONS(694), - [anon_sym_i128] = ACTIONS(694), - [anon_sym_isize] = ACTIONS(694), - [anon_sym_usize] = ACTIONS(694), - [anon_sym_f32] = ACTIONS(694), - [anon_sym_f64] = ACTIONS(694), - [anon_sym_bool] = ACTIONS(694), - [anon_sym_str] = ACTIONS(694), - [anon_sym_char] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(573), - [anon_sym_PERCENT] = ACTIONS(573), - [anon_sym_CARET] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_AMP_EQ] = ACTIONS(563), - [anon_sym_PIPE_EQ] = ACTIONS(563), - [anon_sym_LT_LT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_EQ] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(563), - [anon_sym__] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_COLON_COLON] = ACTIONS(563), - [anon_sym_DASH_GT] = ACTIONS(563), - [anon_sym_POUND] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_as] = ACTIONS(694), - [anon_sym_async] = ACTIONS(694), - [anon_sym_await] = ACTIONS(694), - [anon_sym_break] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_continue] = ACTIONS(694), - [anon_sym_default] = ACTIONS(694), - [anon_sym_enum] = ACTIONS(694), - [anon_sym_fn] = ACTIONS(694), - [anon_sym_for] = ACTIONS(694), - [anon_sym_gen] = ACTIONS(694), - [anon_sym_if] = ACTIONS(694), - [anon_sym_impl] = ACTIONS(694), - [anon_sym_let] = ACTIONS(694), - [anon_sym_loop] = ACTIONS(694), - [anon_sym_match] = ACTIONS(694), - [anon_sym_mod] = ACTIONS(694), - [anon_sym_pub] = ACTIONS(694), - [anon_sym_return] = ACTIONS(694), - [anon_sym_static] = ACTIONS(694), - [anon_sym_struct] = ACTIONS(694), - [anon_sym_trait] = ACTIONS(694), - [anon_sym_type] = ACTIONS(694), - [anon_sym_union] = ACTIONS(694), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_use] = ACTIONS(694), - [anon_sym_where] = ACTIONS(694), - [anon_sym_while] = ACTIONS(694), - [sym_mutable_specifier] = ACTIONS(694), - [sym_integer_literal] = ACTIONS(577), - [aux_sym_string_literal_token1] = ACTIONS(579), - [sym_char_literal] = ACTIONS(577), - [anon_sym_true] = ACTIONS(581), - [anon_sym_false] = ACTIONS(581), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(694), - [sym_super] = ACTIONS(694), - [sym_crate] = ACTIONS(694), - [sym_metavariable] = ACTIONS(706), - [sym__raw_string_literal_start] = ACTIONS(585), - [sym_float_literal] = ACTIONS(577), - }, - [97] = { - [sym_token_tree] = STATE(197), - [sym_token_repetition] = STATE(197), - [sym__literal] = STATE(197), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), - [sym_line_comment] = STATE(97), - [sym_block_comment] = STATE(97), - [aux_sym_token_tree_repeat1] = STATE(73), - [aux_sym__non_special_token_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(714), - [anon_sym_EQ_GT] = ACTIONS(563), - [anon_sym_COLON] = ACTIONS(573), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(563), - [anon_sym_u8] = ACTIONS(694), - [anon_sym_i8] = ACTIONS(694), - [anon_sym_u16] = ACTIONS(694), - [anon_sym_i16] = ACTIONS(694), - [anon_sym_u32] = ACTIONS(694), - [anon_sym_i32] = ACTIONS(694), - [anon_sym_u64] = ACTIONS(694), - [anon_sym_i64] = ACTIONS(694), - [anon_sym_u128] = ACTIONS(694), - [anon_sym_i128] = ACTIONS(694), - [anon_sym_isize] = ACTIONS(694), - [anon_sym_usize] = ACTIONS(694), - [anon_sym_f32] = ACTIONS(694), - [anon_sym_f64] = ACTIONS(694), - [anon_sym_bool] = ACTIONS(694), - [anon_sym_str] = ACTIONS(694), - [anon_sym_char] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(573), - [anon_sym_PERCENT] = ACTIONS(573), - [anon_sym_CARET] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_AMP_EQ] = ACTIONS(563), - [anon_sym_PIPE_EQ] = ACTIONS(563), - [anon_sym_LT_LT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_EQ] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(563), - [anon_sym__] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_COLON_COLON] = ACTIONS(563), - [anon_sym_DASH_GT] = ACTIONS(563), - [anon_sym_POUND] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_as] = ACTIONS(694), - [anon_sym_async] = ACTIONS(694), - [anon_sym_await] = ACTIONS(694), - [anon_sym_break] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_continue] = ACTIONS(694), - [anon_sym_default] = ACTIONS(694), - [anon_sym_enum] = ACTIONS(694), - [anon_sym_fn] = ACTIONS(694), - [anon_sym_for] = ACTIONS(694), - [anon_sym_gen] = ACTIONS(694), - [anon_sym_if] = ACTIONS(694), - [anon_sym_impl] = ACTIONS(694), - [anon_sym_let] = ACTIONS(694), - [anon_sym_loop] = ACTIONS(694), - [anon_sym_match] = ACTIONS(694), - [anon_sym_mod] = ACTIONS(694), - [anon_sym_pub] = ACTIONS(694), - [anon_sym_return] = ACTIONS(694), - [anon_sym_static] = ACTIONS(694), - [anon_sym_struct] = ACTIONS(694), - [anon_sym_trait] = ACTIONS(694), - [anon_sym_type] = ACTIONS(694), - [anon_sym_union] = ACTIONS(694), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_use] = ACTIONS(694), - [anon_sym_where] = ACTIONS(694), - [anon_sym_while] = ACTIONS(694), - [sym_mutable_specifier] = ACTIONS(694), - [sym_integer_literal] = ACTIONS(577), - [aux_sym_string_literal_token1] = ACTIONS(579), - [sym_char_literal] = ACTIONS(577), - [anon_sym_true] = ACTIONS(581), - [anon_sym_false] = ACTIONS(581), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(694), - [sym_super] = ACTIONS(694), - [sym_crate] = ACTIONS(694), - [sym_metavariable] = ACTIONS(706), - [sym__raw_string_literal_start] = ACTIONS(585), - [sym_float_literal] = ACTIONS(577), - }, - [98] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(98), - [sym_block_comment] = STATE(98), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(101), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(90), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_RPAREN] = ACTIONS(716), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -27619,24 +27291,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [99] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(99), - [sym_block_comment] = STATE(99), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(102), + [96] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(96), + [sym_block_comment] = STATE(96), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(714), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_RBRACK] = ACTIONS(716), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -27741,24 +27413,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [100] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(100), - [sym_block_comment] = STATE(100), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(103), + [97] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(97), + [sym_block_comment] = STATE(97), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), - [anon_sym_RBRACE] = ACTIONS(716), + [anon_sym_RBRACK] = ACTIONS(714), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -27863,24 +27535,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [101] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(101), - [sym_block_comment] = STATE(101), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(82), + [98] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(98), + [sym_block_comment] = STATE(98), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_RPAREN] = ACTIONS(718), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(714), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -27985,24 +27657,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [102] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(102), - [sym_block_comment] = STATE(102), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(82), + [99] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(99), + [sym_block_comment] = STATE(99), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(716), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_RBRACK] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -28107,146 +27779,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [103] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(103), - [sym_block_comment] = STATE(103), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(82), - [sym_identifier] = ACTIONS(670), - [anon_sym_SEMI] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), - [anon_sym_RBRACE] = ACTIONS(718), - [anon_sym_EQ_GT] = ACTIONS(672), - [anon_sym_COLON] = ACTIONS(682), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(682), - [anon_sym_QMARK] = ACTIONS(672), - [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_DASH] = ACTIONS(682), - [anon_sym_SLASH] = ACTIONS(682), - [anon_sym_PERCENT] = ACTIONS(682), - [anon_sym_CARET] = ACTIONS(682), - [anon_sym_BANG] = ACTIONS(682), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_PIPE] = ACTIONS(682), - [anon_sym_AMP_AMP] = ACTIONS(672), - [anon_sym_PIPE_PIPE] = ACTIONS(672), - [anon_sym_LT_LT] = ACTIONS(682), - [anon_sym_GT_GT] = ACTIONS(682), - [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_CARET_EQ] = ACTIONS(672), - [anon_sym_AMP_EQ] = ACTIONS(672), - [anon_sym_PIPE_EQ] = ACTIONS(672), - [anon_sym_LT_LT_EQ] = ACTIONS(672), - [anon_sym_GT_GT_EQ] = ACTIONS(672), - [anon_sym_EQ] = ACTIONS(682), - [anon_sym_EQ_EQ] = ACTIONS(672), - [anon_sym_BANG_EQ] = ACTIONS(672), - [anon_sym_GT] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_GT_EQ] = ACTIONS(672), - [anon_sym_LT_EQ] = ACTIONS(672), - [anon_sym_AT] = ACTIONS(672), - [anon_sym__] = ACTIONS(682), - [anon_sym_DOT] = ACTIONS(682), - [anon_sym_DOT_DOT] = ACTIONS(682), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [anon_sym_DOT_DOT_EQ] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(672), - [anon_sym_COLON_COLON] = ACTIONS(672), - [anon_sym_DASH_GT] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_as] = ACTIONS(670), - [anon_sym_async] = ACTIONS(670), - [anon_sym_await] = ACTIONS(670), - [anon_sym_break] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_enum] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(670), - [anon_sym_gen] = ACTIONS(670), - [anon_sym_if] = ACTIONS(670), - [anon_sym_impl] = ACTIONS(670), - [anon_sym_let] = ACTIONS(670), - [anon_sym_loop] = ACTIONS(670), - [anon_sym_match] = ACTIONS(670), - [anon_sym_mod] = ACTIONS(670), - [anon_sym_pub] = ACTIONS(670), - [anon_sym_return] = ACTIONS(670), - [anon_sym_static] = ACTIONS(670), - [anon_sym_struct] = ACTIONS(670), - [anon_sym_trait] = ACTIONS(670), - [anon_sym_type] = ACTIONS(670), - [anon_sym_union] = ACTIONS(670), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_use] = ACTIONS(670), - [anon_sym_where] = ACTIONS(670), - [anon_sym_while] = ACTIONS(670), - [sym_mutable_specifier] = ACTIONS(670), - [sym_integer_literal] = ACTIONS(686), - [aux_sym_string_literal_token1] = ACTIONS(688), - [sym_char_literal] = ACTIONS(686), - [anon_sym_true] = ACTIONS(690), - [anon_sym_false] = ACTIONS(690), + [100] = { + [sym_token_tree] = STATE(175), + [sym_token_repetition] = STATE(175), + [sym__literal] = STATE(175), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), + [sym_line_comment] = STATE(100), + [sym_block_comment] = STATE(100), + [aux_sym_token_tree_repeat1] = STATE(110), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_RPAREN] = ACTIONS(718), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(670), - [sym_super] = ACTIONS(670), - [sym_crate] = ACTIONS(670), - [sym__raw_string_literal_start] = ACTIONS(692), - [sym_float_literal] = ACTIONS(686), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), }, - [104] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(104), - [sym_block_comment] = STATE(104), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(117), + [101] = { + [sym_token_tree] = STATE(175), + [sym_token_repetition] = STATE(175), + [sym__literal] = STATE(175), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), + [sym_line_comment] = STATE(101), + [sym_block_comment] = STATE(101), + [aux_sym_token_tree_repeat1] = STATE(111), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_RBRACK] = ACTIONS(718), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), + }, + [102] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(102), + [sym_block_comment] = STATE(102), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(106), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), [anon_sym_RPAREN] = ACTIONS(720), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -28351,24 +28145,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [105] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(105), - [sym_block_comment] = STATE(105), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(84), + [103] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(103), + [sym_block_comment] = STATE(103), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(107), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(676), [anon_sym_RBRACK] = ACTIONS(720), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -28473,23 +28267,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [106] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(106), - [sym_block_comment] = STATE(106), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(121), + [104] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(104), + [sym_block_comment] = STATE(104), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(133), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_RBRACE] = ACTIONS(720), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), @@ -28595,23 +28389,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [107] = { - [sym_token_tree] = STATE(197), - [sym_token_repetition] = STATE(197), - [sym__literal] = STATE(197), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), - [sym_line_comment] = STATE(107), - [sym_block_comment] = STATE(107), - [aux_sym_token_tree_repeat1] = STATE(91), - [aux_sym__non_special_token_repeat1] = STATE(142), + [105] = { + [sym_token_tree] = STATE(175), + [sym_token_repetition] = STATE(175), + [sym__literal] = STATE(175), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), + [sym_line_comment] = STATE(105), + [sym_block_comment] = STATE(105), + [aux_sym_token_tree_repeat1] = STATE(115), + [aux_sym__non_special_token_repeat1] = STATE(140), [sym_identifier] = ACTIONS(694), [anon_sym_SEMI] = ACTIONS(563), [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(698), [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_RBRACE] = ACTIONS(698), + [anon_sym_RBRACE] = ACTIONS(718), [anon_sym_EQ_GT] = ACTIONS(563), [anon_sym_COLON] = ACTIONS(573), [anon_sym_DOLLAR] = ACTIONS(704), @@ -28717,24 +28511,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(585), [sym_float_literal] = ACTIONS(577), }, - [108] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(108), - [sym_block_comment] = STATE(108), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(111), + [106] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(106), + [sym_block_comment] = STATE(106), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(722), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_RBRACK] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -28839,24 +28633,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [109] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(109), - [sym_block_comment] = STATE(109), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(112), + [107] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(107), + [sym_block_comment] = STATE(107), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), - [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_RBRACK] = ACTIONS(722), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -28961,24 +28755,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [110] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(110), - [sym_block_comment] = STATE(110), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(82), + [108] = { + [sym_token_tree] = STATE(175), + [sym_token_repetition] = STATE(175), + [sym__literal] = STATE(175), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), + [sym_line_comment] = STATE(108), + [sym_block_comment] = STATE(108), + [aux_sym_token_tree_repeat1] = STATE(87), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_RPAREN] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), + }, + [109] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(109), + [sym_block_comment] = STATE(109), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_RPAREN] = ACTIONS(724), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -29083,67 +28999,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, + [110] = { + [sym_token_tree] = STATE(175), + [sym_token_repetition] = STATE(175), + [sym__literal] = STATE(175), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), + [sym_line_comment] = STATE(110), + [sym_block_comment] = STATE(110), + [aux_sym_token_tree_repeat1] = STATE(79), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_RPAREN] = ACTIONS(724), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), + }, [111] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_token_tree] = STATE(175), + [sym_token_repetition] = STATE(175), + [sym__literal] = STATE(175), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), [sym_line_comment] = STATE(111), [sym_block_comment] = STATE(111), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(82), - [sym_identifier] = ACTIONS(670), - [anon_sym_SEMI] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(676), + [aux_sym_token_tree_repeat1] = STATE(79), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_LBRACK] = ACTIONS(698), [anon_sym_RBRACK] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(680), - [anon_sym_EQ_GT] = ACTIONS(672), - [anon_sym_COLON] = ACTIONS(682), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(682), - [anon_sym_QMARK] = ACTIONS(672), - [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_DASH] = ACTIONS(682), - [anon_sym_SLASH] = ACTIONS(682), - [anon_sym_PERCENT] = ACTIONS(682), - [anon_sym_CARET] = ACTIONS(682), - [anon_sym_BANG] = ACTIONS(682), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_PIPE] = ACTIONS(682), - [anon_sym_AMP_AMP] = ACTIONS(672), - [anon_sym_PIPE_PIPE] = ACTIONS(672), - [anon_sym_LT_LT] = ACTIONS(682), - [anon_sym_GT_GT] = ACTIONS(682), - [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_CARET_EQ] = ACTIONS(672), - [anon_sym_AMP_EQ] = ACTIONS(672), - [anon_sym_PIPE_EQ] = ACTIONS(672), - [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), + }, + [112] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(112), + [sym_block_comment] = STATE(112), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(116), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(678), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [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_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [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_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), [anon_sym_GT_GT_EQ] = ACTIONS(672), [anon_sym_EQ] = ACTIONS(682), [anon_sym_EQ_EQ] = ACTIONS(672), @@ -29205,24 +29365,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [112] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(112), - [sym_block_comment] = STATE(112), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(82), + [113] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(113), + [sym_block_comment] = STATE(113), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(117), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), - [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_RBRACK] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -29327,23 +29487,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [113] = { - [sym_token_tree] = STATE(197), - [sym_token_repetition] = STATE(197), - [sym__literal] = STATE(197), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), - [sym_line_comment] = STATE(113), - [sym_block_comment] = STATE(113), - [aux_sym_token_tree_repeat1] = STATE(132), - [aux_sym__non_special_token_repeat1] = STATE(142), + [114] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(114), + [sym_block_comment] = STATE(114), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(118), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [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_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [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_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), + }, + [115] = { + [sym_token_tree] = STATE(175), + [sym_token_repetition] = STATE(175), + [sym__literal] = STATE(175), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), + [sym_line_comment] = STATE(115), + [sym_block_comment] = STATE(115), + [aux_sym_token_tree_repeat1] = STATE(79), + [aux_sym__non_special_token_repeat1] = STATE(140), [sym_identifier] = ACTIONS(694), [anon_sym_SEMI] = ACTIONS(563), [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(698), [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_EQ_GT] = ACTIONS(563), [anon_sym_COLON] = ACTIONS(573), [anon_sym_DOLLAR] = ACTIONS(704), @@ -29449,24 +29731,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(585), [sym_float_literal] = ACTIONS(577), }, - [114] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(114), - [sym_block_comment] = STATE(114), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(118), + [116] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(116), + [sym_block_comment] = STATE(116), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), [anon_sym_RPAREN] = ACTIONS(728), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -29571,24 +29853,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [115] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(115), - [sym_block_comment] = STATE(115), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(119), + [117] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(117), + [sym_block_comment] = STATE(117), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(676), [anon_sym_RBRACK] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -29693,23 +29975,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [116] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(116), - [sym_block_comment] = STATE(116), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(120), + [118] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(118), + [sym_block_comment] = STATE(118), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_RBRACE] = ACTIONS(728), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), @@ -29815,24 +30097,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [117] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(117), - [sym_block_comment] = STATE(117), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(82), + [119] = { + [sym_token_tree] = STATE(175), + [sym_token_repetition] = STATE(175), + [sym__literal] = STATE(175), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), + [sym_line_comment] = STATE(119), + [sym_block_comment] = STATE(119), + [aux_sym_token_tree_repeat1] = STATE(121), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), + }, + [120] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(120), + [sym_block_comment] = STATE(120), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_RPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(716), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -29937,24 +30341,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [118] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(118), - [sym_block_comment] = STATE(118), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(82), + [121] = { + [sym_token_tree] = STATE(175), + [sym_token_repetition] = STATE(175), + [sym__literal] = STATE(175), + [sym_string_literal] = STATE(163), + [sym_raw_string_literal] = STATE(163), + [sym_boolean_literal] = STATE(163), + [sym_line_comment] = STATE(121), + [sym_block_comment] = STATE(121), + [aux_sym_token_tree_repeat1] = STATE(79), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(696), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(702), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(704), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_await] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_gen] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_where] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [sym_mutable_specifier] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(577), + [aux_sym_string_literal_token1] = ACTIONS(579), + [sym_char_literal] = ACTIONS(577), + [anon_sym_true] = ACTIONS(581), + [anon_sym_false] = ACTIONS(581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(706), + [sym__raw_string_literal_start] = ACTIONS(585), + [sym_float_literal] = ACTIONS(577), + }, + [122] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(122), + [sym_block_comment] = STATE(122), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(126), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(734), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -30059,24 +30585,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [119] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(119), - [sym_block_comment] = STATE(119), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(82), + [123] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(123), + [sym_block_comment] = STATE(123), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(127), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_RBRACK] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(734), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -30181,24 +30707,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [120] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(120), - [sym_block_comment] = STATE(120), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(82), + [124] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(124), + [sym_block_comment] = STATE(124), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(128), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), - [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_LBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(734), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -30303,24 +30829,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [121] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(121), - [sym_block_comment] = STATE(121), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(82), + [125] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(125), + [sym_block_comment] = STATE(125), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(132), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(680), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), - [anon_sym_RBRACE] = ACTIONS(678), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -30425,24 +30951,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [122] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(122), - [sym_block_comment] = STATE(122), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(126), + [126] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(126), + [sym_block_comment] = STATE(126), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_RPAREN] = ACTIONS(736), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -30547,24 +31073,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [123] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(123), - [sym_block_comment] = STATE(123), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(127), + [127] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(127), + [sym_block_comment] = STATE(127), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_RBRACK] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -30669,24 +31195,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [124] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(124), - [sym_block_comment] = STATE(124), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(128), + [128] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(128), + [sym_block_comment] = STATE(128), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), - [anon_sym_RBRACE] = ACTIONS(732), + [anon_sym_LBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(736), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -30791,146 +31317,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [125] = { - [sym_token_tree] = STATE(197), - [sym_token_repetition] = STATE(197), - [sym__literal] = STATE(197), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), - [sym_line_comment] = STATE(125), - [sym_block_comment] = STATE(125), - [aux_sym_token_tree_repeat1] = STATE(90), - [aux_sym__non_special_token_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_RBRACK] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(563), - [anon_sym_COLON] = ACTIONS(573), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(563), - [anon_sym_u8] = ACTIONS(694), - [anon_sym_i8] = ACTIONS(694), - [anon_sym_u16] = ACTIONS(694), - [anon_sym_i16] = ACTIONS(694), - [anon_sym_u32] = ACTIONS(694), - [anon_sym_i32] = ACTIONS(694), - [anon_sym_u64] = ACTIONS(694), - [anon_sym_i64] = ACTIONS(694), - [anon_sym_u128] = ACTIONS(694), - [anon_sym_i128] = ACTIONS(694), - [anon_sym_isize] = ACTIONS(694), - [anon_sym_usize] = ACTIONS(694), - [anon_sym_f32] = ACTIONS(694), - [anon_sym_f64] = ACTIONS(694), - [anon_sym_bool] = ACTIONS(694), - [anon_sym_str] = ACTIONS(694), - [anon_sym_char] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(573), - [anon_sym_PERCENT] = ACTIONS(573), - [anon_sym_CARET] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_AMP_EQ] = ACTIONS(563), - [anon_sym_PIPE_EQ] = ACTIONS(563), - [anon_sym_LT_LT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_EQ] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(563), - [anon_sym__] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_COLON_COLON] = ACTIONS(563), - [anon_sym_DASH_GT] = ACTIONS(563), - [anon_sym_POUND] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_as] = ACTIONS(694), - [anon_sym_async] = ACTIONS(694), - [anon_sym_await] = ACTIONS(694), - [anon_sym_break] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_continue] = ACTIONS(694), - [anon_sym_default] = ACTIONS(694), - [anon_sym_enum] = ACTIONS(694), - [anon_sym_fn] = ACTIONS(694), - [anon_sym_for] = ACTIONS(694), - [anon_sym_gen] = ACTIONS(694), - [anon_sym_if] = ACTIONS(694), - [anon_sym_impl] = ACTIONS(694), - [anon_sym_let] = ACTIONS(694), - [anon_sym_loop] = ACTIONS(694), - [anon_sym_match] = ACTIONS(694), - [anon_sym_mod] = ACTIONS(694), - [anon_sym_pub] = ACTIONS(694), - [anon_sym_return] = ACTIONS(694), - [anon_sym_static] = ACTIONS(694), - [anon_sym_struct] = ACTIONS(694), - [anon_sym_trait] = ACTIONS(694), - [anon_sym_type] = ACTIONS(694), - [anon_sym_union] = ACTIONS(694), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_use] = ACTIONS(694), - [anon_sym_where] = ACTIONS(694), - [anon_sym_while] = ACTIONS(694), - [sym_mutable_specifier] = ACTIONS(694), - [sym_integer_literal] = ACTIONS(577), - [aux_sym_string_literal_token1] = ACTIONS(579), - [sym_char_literal] = ACTIONS(577), - [anon_sym_true] = ACTIONS(581), - [anon_sym_false] = ACTIONS(581), + [129] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(129), + [sym_block_comment] = STATE(129), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(99), + [sym_identifier] = ACTIONS(670), + [anon_sym_SEMI] = ACTIONS(672), + [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(676), + [anon_sym_LBRACE] = ACTIONS(678), + [anon_sym_EQ_GT] = ACTIONS(672), + [anon_sym_COLON] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(682), + [anon_sym_STAR] = ACTIONS(682), + [anon_sym_QMARK] = ACTIONS(672), + [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_DASH] = ACTIONS(682), + [anon_sym_SLASH] = ACTIONS(682), + [anon_sym_PERCENT] = ACTIONS(682), + [anon_sym_CARET] = ACTIONS(682), + [anon_sym_BANG] = ACTIONS(682), + [anon_sym_AMP] = ACTIONS(682), + [anon_sym_PIPE] = ACTIONS(682), + [anon_sym_AMP_AMP] = ACTIONS(672), + [anon_sym_PIPE_PIPE] = ACTIONS(672), + [anon_sym_LT_LT] = ACTIONS(682), + [anon_sym_GT_GT] = ACTIONS(682), + [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_CARET_EQ] = ACTIONS(672), + [anon_sym_AMP_EQ] = ACTIONS(672), + [anon_sym_PIPE_EQ] = ACTIONS(672), + [anon_sym_LT_LT_EQ] = ACTIONS(672), + [anon_sym_GT_GT_EQ] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(682), + [anon_sym_EQ_EQ] = ACTIONS(672), + [anon_sym_BANG_EQ] = ACTIONS(672), + [anon_sym_GT] = ACTIONS(682), + [anon_sym_LT] = ACTIONS(682), + [anon_sym_GT_EQ] = ACTIONS(672), + [anon_sym_LT_EQ] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(672), + [anon_sym__] = ACTIONS(682), + [anon_sym_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT] = ACTIONS(682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(672), + [anon_sym_DOT_DOT_EQ] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(672), + [anon_sym_COLON_COLON] = ACTIONS(672), + [anon_sym_DASH_GT] = ACTIONS(672), + [anon_sym_POUND] = ACTIONS(672), + [anon_sym_SQUOTE] = ACTIONS(670), + [anon_sym_as] = ACTIONS(670), + [anon_sym_async] = ACTIONS(670), + [anon_sym_await] = ACTIONS(670), + [anon_sym_break] = ACTIONS(670), + [anon_sym_const] = ACTIONS(670), + [anon_sym_continue] = ACTIONS(670), + [anon_sym_default] = ACTIONS(670), + [anon_sym_enum] = ACTIONS(670), + [anon_sym_fn] = ACTIONS(670), + [anon_sym_for] = ACTIONS(670), + [anon_sym_gen] = ACTIONS(670), + [anon_sym_if] = ACTIONS(670), + [anon_sym_impl] = ACTIONS(670), + [anon_sym_let] = ACTIONS(670), + [anon_sym_loop] = ACTIONS(670), + [anon_sym_match] = ACTIONS(670), + [anon_sym_mod] = ACTIONS(670), + [anon_sym_pub] = ACTIONS(670), + [anon_sym_return] = ACTIONS(670), + [anon_sym_static] = ACTIONS(670), + [anon_sym_struct] = ACTIONS(670), + [anon_sym_trait] = ACTIONS(670), + [anon_sym_type] = ACTIONS(670), + [anon_sym_union] = ACTIONS(670), + [anon_sym_unsafe] = ACTIONS(670), + [anon_sym_use] = ACTIONS(670), + [anon_sym_where] = ACTIONS(670), + [anon_sym_while] = ACTIONS(670), + [sym_mutable_specifier] = ACTIONS(670), + [sym_integer_literal] = ACTIONS(686), + [aux_sym_string_literal_token1] = ACTIONS(688), + [sym_char_literal] = ACTIONS(686), + [anon_sym_true] = ACTIONS(690), + [anon_sym_false] = ACTIONS(690), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(694), - [sym_super] = ACTIONS(694), - [sym_crate] = ACTIONS(694), - [sym_metavariable] = ACTIONS(706), - [sym__raw_string_literal_start] = ACTIONS(585), - [sym_float_literal] = ACTIONS(577), + [sym_self] = ACTIONS(670), + [sym_super] = ACTIONS(670), + [sym_crate] = ACTIONS(670), + [sym__raw_string_literal_start] = ACTIONS(692), + [sym_float_literal] = ACTIONS(686), }, - [126] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(126), - [sym_block_comment] = STATE(126), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(82), + [130] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(130), + [sym_block_comment] = STATE(130), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(109), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_RPAREN] = ACTIONS(734), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACK] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -31035,24 +31561,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [127] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(127), - [sym_block_comment] = STATE(127), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(82), + [131] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(131), + [sym_block_comment] = STATE(131), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(120), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_RBRACK] = ACTIONS(734), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(738), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -31157,390 +31683,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [128] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(128), - [sym_block_comment] = STATE(128), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(82), - [sym_identifier] = ACTIONS(670), - [anon_sym_SEMI] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), - [anon_sym_RBRACE] = ACTIONS(734), - [anon_sym_EQ_GT] = ACTIONS(672), - [anon_sym_COLON] = ACTIONS(682), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(682), - [anon_sym_QMARK] = ACTIONS(672), - [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_DASH] = ACTIONS(682), - [anon_sym_SLASH] = ACTIONS(682), - [anon_sym_PERCENT] = ACTIONS(682), - [anon_sym_CARET] = ACTIONS(682), - [anon_sym_BANG] = ACTIONS(682), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_PIPE] = ACTIONS(682), - [anon_sym_AMP_AMP] = ACTIONS(672), - [anon_sym_PIPE_PIPE] = ACTIONS(672), - [anon_sym_LT_LT] = ACTIONS(682), - [anon_sym_GT_GT] = ACTIONS(682), - [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_CARET_EQ] = ACTIONS(672), - [anon_sym_AMP_EQ] = ACTIONS(672), - [anon_sym_PIPE_EQ] = ACTIONS(672), - [anon_sym_LT_LT_EQ] = ACTIONS(672), - [anon_sym_GT_GT_EQ] = ACTIONS(672), - [anon_sym_EQ] = ACTIONS(682), - [anon_sym_EQ_EQ] = ACTIONS(672), - [anon_sym_BANG_EQ] = ACTIONS(672), - [anon_sym_GT] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_GT_EQ] = ACTIONS(672), - [anon_sym_LT_EQ] = ACTIONS(672), - [anon_sym_AT] = ACTIONS(672), - [anon_sym__] = ACTIONS(682), - [anon_sym_DOT] = ACTIONS(682), - [anon_sym_DOT_DOT] = ACTIONS(682), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [anon_sym_DOT_DOT_EQ] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(672), - [anon_sym_COLON_COLON] = ACTIONS(672), - [anon_sym_DASH_GT] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_as] = ACTIONS(670), - [anon_sym_async] = ACTIONS(670), - [anon_sym_await] = ACTIONS(670), - [anon_sym_break] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_enum] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(670), - [anon_sym_gen] = ACTIONS(670), - [anon_sym_if] = ACTIONS(670), - [anon_sym_impl] = ACTIONS(670), - [anon_sym_let] = ACTIONS(670), - [anon_sym_loop] = ACTIONS(670), - [anon_sym_match] = ACTIONS(670), - [anon_sym_mod] = ACTIONS(670), - [anon_sym_pub] = ACTIONS(670), - [anon_sym_return] = ACTIONS(670), - [anon_sym_static] = ACTIONS(670), - [anon_sym_struct] = ACTIONS(670), - [anon_sym_trait] = ACTIONS(670), - [anon_sym_type] = ACTIONS(670), - [anon_sym_union] = ACTIONS(670), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_use] = ACTIONS(670), - [anon_sym_where] = ACTIONS(670), - [anon_sym_while] = ACTIONS(670), - [sym_mutable_specifier] = ACTIONS(670), - [sym_integer_literal] = ACTIONS(686), - [aux_sym_string_literal_token1] = ACTIONS(688), - [sym_char_literal] = ACTIONS(686), - [anon_sym_true] = ACTIONS(690), - [anon_sym_false] = ACTIONS(690), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(670), - [sym_super] = ACTIONS(670), - [sym_crate] = ACTIONS(670), - [sym__raw_string_literal_start] = ACTIONS(692), - [sym_float_literal] = ACTIONS(686), - }, - [129] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(129), - [sym_block_comment] = STATE(129), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(87), - [sym_identifier] = ACTIONS(670), - [anon_sym_SEMI] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), - [anon_sym_EQ_GT] = ACTIONS(672), - [anon_sym_COLON] = ACTIONS(682), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(682), - [anon_sym_QMARK] = ACTIONS(672), - [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_DASH] = ACTIONS(682), - [anon_sym_SLASH] = ACTIONS(682), - [anon_sym_PERCENT] = ACTIONS(682), - [anon_sym_CARET] = ACTIONS(682), - [anon_sym_BANG] = ACTIONS(682), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_PIPE] = ACTIONS(682), - [anon_sym_AMP_AMP] = ACTIONS(672), - [anon_sym_PIPE_PIPE] = ACTIONS(672), - [anon_sym_LT_LT] = ACTIONS(682), - [anon_sym_GT_GT] = ACTIONS(682), - [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_CARET_EQ] = ACTIONS(672), - [anon_sym_AMP_EQ] = ACTIONS(672), - [anon_sym_PIPE_EQ] = ACTIONS(672), - [anon_sym_LT_LT_EQ] = ACTIONS(672), - [anon_sym_GT_GT_EQ] = ACTIONS(672), - [anon_sym_EQ] = ACTIONS(682), - [anon_sym_EQ_EQ] = ACTIONS(672), - [anon_sym_BANG_EQ] = ACTIONS(672), - [anon_sym_GT] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_GT_EQ] = ACTIONS(672), - [anon_sym_LT_EQ] = ACTIONS(672), - [anon_sym_AT] = ACTIONS(672), - [anon_sym__] = ACTIONS(682), - [anon_sym_DOT] = ACTIONS(682), - [anon_sym_DOT_DOT] = ACTIONS(682), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [anon_sym_DOT_DOT_EQ] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(672), - [anon_sym_COLON_COLON] = ACTIONS(672), - [anon_sym_DASH_GT] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_as] = ACTIONS(670), - [anon_sym_async] = ACTIONS(670), - [anon_sym_await] = ACTIONS(670), - [anon_sym_break] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_enum] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(670), - [anon_sym_gen] = ACTIONS(670), - [anon_sym_if] = ACTIONS(670), - [anon_sym_impl] = ACTIONS(670), - [anon_sym_let] = ACTIONS(670), - [anon_sym_loop] = ACTIONS(670), - [anon_sym_match] = ACTIONS(670), - [anon_sym_mod] = ACTIONS(670), - [anon_sym_pub] = ACTIONS(670), - [anon_sym_return] = ACTIONS(670), - [anon_sym_static] = ACTIONS(670), - [anon_sym_struct] = ACTIONS(670), - [anon_sym_trait] = ACTIONS(670), - [anon_sym_type] = ACTIONS(670), - [anon_sym_union] = ACTIONS(670), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_use] = ACTIONS(670), - [anon_sym_where] = ACTIONS(670), - [anon_sym_while] = ACTIONS(670), - [sym_mutable_specifier] = ACTIONS(670), - [sym_integer_literal] = ACTIONS(686), - [aux_sym_string_literal_token1] = ACTIONS(688), - [sym_char_literal] = ACTIONS(686), - [anon_sym_true] = ACTIONS(690), - [anon_sym_false] = ACTIONS(690), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(670), - [sym_super] = ACTIONS(670), - [sym_crate] = ACTIONS(670), - [sym__raw_string_literal_start] = ACTIONS(692), - [sym_float_literal] = ACTIONS(686), - }, - [130] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(130), - [sym_block_comment] = STATE(130), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(88), - [sym_identifier] = ACTIONS(670), - [anon_sym_SEMI] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_RBRACK] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(680), - [anon_sym_EQ_GT] = ACTIONS(672), - [anon_sym_COLON] = ACTIONS(682), - [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_PLUS] = ACTIONS(682), - [anon_sym_STAR] = ACTIONS(682), - [anon_sym_QMARK] = ACTIONS(672), - [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_DASH] = ACTIONS(682), - [anon_sym_SLASH] = ACTIONS(682), - [anon_sym_PERCENT] = ACTIONS(682), - [anon_sym_CARET] = ACTIONS(682), - [anon_sym_BANG] = ACTIONS(682), - [anon_sym_AMP] = ACTIONS(682), - [anon_sym_PIPE] = ACTIONS(682), - [anon_sym_AMP_AMP] = ACTIONS(672), - [anon_sym_PIPE_PIPE] = ACTIONS(672), - [anon_sym_LT_LT] = ACTIONS(682), - [anon_sym_GT_GT] = ACTIONS(682), - [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_CARET_EQ] = ACTIONS(672), - [anon_sym_AMP_EQ] = ACTIONS(672), - [anon_sym_PIPE_EQ] = ACTIONS(672), - [anon_sym_LT_LT_EQ] = ACTIONS(672), - [anon_sym_GT_GT_EQ] = ACTIONS(672), - [anon_sym_EQ] = ACTIONS(682), - [anon_sym_EQ_EQ] = ACTIONS(672), - [anon_sym_BANG_EQ] = ACTIONS(672), - [anon_sym_GT] = ACTIONS(682), - [anon_sym_LT] = ACTIONS(682), - [anon_sym_GT_EQ] = ACTIONS(672), - [anon_sym_LT_EQ] = ACTIONS(672), - [anon_sym_AT] = ACTIONS(672), - [anon_sym__] = ACTIONS(682), - [anon_sym_DOT] = ACTIONS(682), - [anon_sym_DOT_DOT] = ACTIONS(682), - [anon_sym_DOT_DOT_DOT] = ACTIONS(672), - [anon_sym_DOT_DOT_EQ] = ACTIONS(672), - [anon_sym_COMMA] = ACTIONS(672), - [anon_sym_COLON_COLON] = ACTIONS(672), - [anon_sym_DASH_GT] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(670), - [anon_sym_as] = ACTIONS(670), - [anon_sym_async] = ACTIONS(670), - [anon_sym_await] = ACTIONS(670), - [anon_sym_break] = ACTIONS(670), - [anon_sym_const] = ACTIONS(670), - [anon_sym_continue] = ACTIONS(670), - [anon_sym_default] = ACTIONS(670), - [anon_sym_enum] = ACTIONS(670), - [anon_sym_fn] = ACTIONS(670), - [anon_sym_for] = ACTIONS(670), - [anon_sym_gen] = ACTIONS(670), - [anon_sym_if] = ACTIONS(670), - [anon_sym_impl] = ACTIONS(670), - [anon_sym_let] = ACTIONS(670), - [anon_sym_loop] = ACTIONS(670), - [anon_sym_match] = ACTIONS(670), - [anon_sym_mod] = ACTIONS(670), - [anon_sym_pub] = ACTIONS(670), - [anon_sym_return] = ACTIONS(670), - [anon_sym_static] = ACTIONS(670), - [anon_sym_struct] = ACTIONS(670), - [anon_sym_trait] = ACTIONS(670), - [anon_sym_type] = ACTIONS(670), - [anon_sym_union] = ACTIONS(670), - [anon_sym_unsafe] = ACTIONS(670), - [anon_sym_use] = ACTIONS(670), - [anon_sym_where] = ACTIONS(670), - [anon_sym_while] = ACTIONS(670), - [sym_mutable_specifier] = ACTIONS(670), - [sym_integer_literal] = ACTIONS(686), - [aux_sym_string_literal_token1] = ACTIONS(688), - [sym_char_literal] = ACTIONS(686), - [anon_sym_true] = ACTIONS(690), - [anon_sym_false] = ACTIONS(690), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(670), - [sym_super] = ACTIONS(670), - [sym_crate] = ACTIONS(670), - [sym__raw_string_literal_start] = ACTIONS(692), - [sym_float_literal] = ACTIONS(686), - }, - [131] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), - [sym_line_comment] = STATE(131), - [sym_block_comment] = STATE(131), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(89), + [132] = { + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), + [sym_line_comment] = STATE(132), + [sym_block_comment] = STATE(132), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), + [anon_sym_RPAREN] = ACTIONS(710), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), - [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(678), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -31645,146 +31805,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(692), [sym_float_literal] = ACTIONS(686), }, - [132] = { - [sym_token_tree] = STATE(197), - [sym_token_repetition] = STATE(197), - [sym__literal] = STATE(197), - [sym_string_literal] = STATE(162), - [sym_raw_string_literal] = STATE(162), - [sym_boolean_literal] = STATE(162), - [sym_line_comment] = STATE(132), - [sym_block_comment] = STATE(132), - [aux_sym_token_tree_repeat1] = STATE(73), - [aux_sym__non_special_token_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(702), - [anon_sym_EQ_GT] = ACTIONS(563), - [anon_sym_COLON] = ACTIONS(573), - [anon_sym_DOLLAR] = ACTIONS(704), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(563), - [anon_sym_u8] = ACTIONS(694), - [anon_sym_i8] = ACTIONS(694), - [anon_sym_u16] = ACTIONS(694), - [anon_sym_i16] = ACTIONS(694), - [anon_sym_u32] = ACTIONS(694), - [anon_sym_i32] = ACTIONS(694), - [anon_sym_u64] = ACTIONS(694), - [anon_sym_i64] = ACTIONS(694), - [anon_sym_u128] = ACTIONS(694), - [anon_sym_i128] = ACTIONS(694), - [anon_sym_isize] = ACTIONS(694), - [anon_sym_usize] = ACTIONS(694), - [anon_sym_f32] = ACTIONS(694), - [anon_sym_f64] = ACTIONS(694), - [anon_sym_bool] = ACTIONS(694), - [anon_sym_str] = ACTIONS(694), - [anon_sym_char] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(573), - [anon_sym_PERCENT] = ACTIONS(573), - [anon_sym_CARET] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_AMP_EQ] = ACTIONS(563), - [anon_sym_PIPE_EQ] = ACTIONS(563), - [anon_sym_LT_LT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_EQ] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(563), - [anon_sym__] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_COLON_COLON] = ACTIONS(563), - [anon_sym_DASH_GT] = ACTIONS(563), - [anon_sym_POUND] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(694), - [anon_sym_as] = ACTIONS(694), - [anon_sym_async] = ACTIONS(694), - [anon_sym_await] = ACTIONS(694), - [anon_sym_break] = ACTIONS(694), - [anon_sym_const] = ACTIONS(694), - [anon_sym_continue] = ACTIONS(694), - [anon_sym_default] = ACTIONS(694), - [anon_sym_enum] = ACTIONS(694), - [anon_sym_fn] = ACTIONS(694), - [anon_sym_for] = ACTIONS(694), - [anon_sym_gen] = ACTIONS(694), - [anon_sym_if] = ACTIONS(694), - [anon_sym_impl] = ACTIONS(694), - [anon_sym_let] = ACTIONS(694), - [anon_sym_loop] = ACTIONS(694), - [anon_sym_match] = ACTIONS(694), - [anon_sym_mod] = ACTIONS(694), - [anon_sym_pub] = ACTIONS(694), - [anon_sym_return] = ACTIONS(694), - [anon_sym_static] = ACTIONS(694), - [anon_sym_struct] = ACTIONS(694), - [anon_sym_trait] = ACTIONS(694), - [anon_sym_type] = ACTIONS(694), - [anon_sym_union] = ACTIONS(694), - [anon_sym_unsafe] = ACTIONS(694), - [anon_sym_use] = ACTIONS(694), - [anon_sym_where] = ACTIONS(694), - [anon_sym_while] = ACTIONS(694), - [sym_mutable_specifier] = ACTIONS(694), - [sym_integer_literal] = ACTIONS(577), - [aux_sym_string_literal_token1] = ACTIONS(579), - [sym_char_literal] = ACTIONS(577), - [anon_sym_true] = ACTIONS(581), - [anon_sym_false] = ACTIONS(581), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(694), - [sym_super] = ACTIONS(694), - [sym_crate] = ACTIONS(694), - [sym_metavariable] = ACTIONS(706), - [sym__raw_string_literal_start] = ACTIONS(585), - [sym_float_literal] = ACTIONS(577), - }, [133] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(205), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(203), - [sym_string_literal] = STATE(202), - [sym_raw_string_literal] = STATE(202), - [sym_boolean_literal] = STATE(202), + [sym_delim_token_tree] = STATE(200), + [sym__delim_tokens] = STATE(204), + [sym__non_delim_token] = STATE(200), + [sym__literal] = STATE(207), + [sym_string_literal] = STATE(210), + [sym_raw_string_literal] = STATE(210), + [sym_boolean_literal] = STATE(210), [sym_line_comment] = STATE(133), [sym_block_comment] = STATE(133), - [aux_sym__non_special_token_repeat1] = STATE(173), - [aux_sym_delim_token_tree_repeat1] = STATE(110), + [aux_sym__non_special_token_repeat1] = STATE(176), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(670), [anon_sym_SEMI] = ACTIONS(672), [anon_sym_LPAREN] = ACTIONS(674), - [anon_sym_RPAREN] = ACTIONS(722), [anon_sym_LBRACK] = ACTIONS(676), - [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), @@ -31890,57 +31928,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(686), }, [134] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1556), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1554), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), - [aux_sym_enum_variant_list_repeat1] = STATE(139), + [aux_sym_enum_variant_list_repeat1] = STATE(138), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -32007,57 +32045,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [135] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1604), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1620), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(135), [sym_block_comment] = STATE(135), - [aux_sym_enum_variant_list_repeat1] = STATE(913), + [aux_sym_enum_variant_list_repeat1] = STATE(994), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(749), [anon_sym_LBRACK] = ACTIONS(752), @@ -32124,57 +32162,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(838), }, [136] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1588), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(136), [sym_block_comment] = STATE(136), - [aux_sym_enum_variant_list_repeat1] = STATE(913), + [aux_sym__non_special_token_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_RBRACK] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(859), + [anon_sym_i8] = ACTIONS(859), + [anon_sym_u16] = ACTIONS(859), + [anon_sym_i16] = ACTIONS(859), + [anon_sym_u32] = ACTIONS(859), + [anon_sym_i32] = ACTIONS(859), + [anon_sym_u64] = ACTIONS(859), + [anon_sym_i64] = ACTIONS(859), + [anon_sym_u128] = ACTIONS(859), + [anon_sym_i128] = ACTIONS(859), + [anon_sym_isize] = ACTIONS(859), + [anon_sym_usize] = ACTIONS(859), + [anon_sym_f32] = ACTIONS(859), + [anon_sym_f64] = ACTIONS(859), + [anon_sym_bool] = ACTIONS(859), + [anon_sym_str] = ACTIONS(859), + [anon_sym_char] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(859), + [anon_sym_as] = ACTIONS(859), + [anon_sym_async] = ACTIONS(859), + [anon_sym_await] = ACTIONS(859), + [anon_sym_break] = ACTIONS(859), + [anon_sym_const] = ACTIONS(859), + [anon_sym_continue] = ACTIONS(859), + [anon_sym_default] = ACTIONS(859), + [anon_sym_enum] = ACTIONS(859), + [anon_sym_fn] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_gen] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_impl] = ACTIONS(859), + [anon_sym_let] = ACTIONS(859), + [anon_sym_loop] = ACTIONS(859), + [anon_sym_match] = ACTIONS(859), + [anon_sym_mod] = ACTIONS(859), + [anon_sym_pub] = ACTIONS(859), + [anon_sym_return] = ACTIONS(859), + [anon_sym_static] = ACTIONS(859), + [anon_sym_struct] = ACTIONS(859), + [anon_sym_trait] = ACTIONS(859), + [anon_sym_type] = ACTIONS(859), + [anon_sym_union] = ACTIONS(859), + [anon_sym_unsafe] = ACTIONS(859), + [anon_sym_use] = ACTIONS(859), + [anon_sym_where] = ACTIONS(859), + [anon_sym_while] = ACTIONS(859), + [sym_mutable_specifier] = ACTIONS(859), + [sym_integer_literal] = ACTIONS(861), + [aux_sym_string_literal_token1] = ACTIONS(861), + [sym_char_literal] = ACTIONS(861), + [anon_sym_true] = ACTIONS(859), + [anon_sym_false] = ACTIONS(859), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(859), + [sym_super] = ACTIONS(859), + [sym_crate] = ACTIONS(859), + [sym_metavariable] = ACTIONS(861), + [sym__raw_string_literal_start] = ACTIONS(861), + [sym_float_literal] = ACTIONS(861), + }, + [137] = { + [sym_line_comment] = STATE(137), + [sym_block_comment] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(868), + [anon_sym_RBRACK] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(868), + [anon_sym_RBRACE] = ACTIONS(868), + [anon_sym_EQ_GT] = ACTIONS(865), + [anon_sym_COLON] = ACTIONS(870), + [anon_sym_DOLLAR] = ACTIONS(863), + [anon_sym_PLUS] = ACTIONS(870), + [anon_sym_STAR] = ACTIONS(870), + [anon_sym_QMARK] = ACTIONS(865), + [anon_sym_u8] = ACTIONS(863), + [anon_sym_i8] = ACTIONS(863), + [anon_sym_u16] = ACTIONS(863), + [anon_sym_i16] = ACTIONS(863), + [anon_sym_u32] = ACTIONS(863), + [anon_sym_i32] = ACTIONS(863), + [anon_sym_u64] = ACTIONS(863), + [anon_sym_i64] = ACTIONS(863), + [anon_sym_u128] = ACTIONS(863), + [anon_sym_i128] = ACTIONS(863), + [anon_sym_isize] = ACTIONS(863), + [anon_sym_usize] = ACTIONS(863), + [anon_sym_f32] = ACTIONS(863), + [anon_sym_f64] = ACTIONS(863), + [anon_sym_bool] = ACTIONS(863), + [anon_sym_str] = ACTIONS(863), + [anon_sym_char] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(870), + [anon_sym_SLASH] = ACTIONS(870), + [anon_sym_PERCENT] = ACTIONS(870), + [anon_sym_CARET] = ACTIONS(870), + [anon_sym_BANG] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(870), + [anon_sym_PIPE] = ACTIONS(870), + [anon_sym_AMP_AMP] = ACTIONS(865), + [anon_sym_PIPE_PIPE] = ACTIONS(865), + [anon_sym_LT_LT] = ACTIONS(870), + [anon_sym_GT_GT] = ACTIONS(870), + [anon_sym_PLUS_EQ] = ACTIONS(865), + [anon_sym_DASH_EQ] = ACTIONS(865), + [anon_sym_STAR_EQ] = ACTIONS(865), + [anon_sym_SLASH_EQ] = ACTIONS(865), + [anon_sym_PERCENT_EQ] = ACTIONS(865), + [anon_sym_CARET_EQ] = ACTIONS(865), + [anon_sym_AMP_EQ] = ACTIONS(865), + [anon_sym_PIPE_EQ] = ACTIONS(865), + [anon_sym_LT_LT_EQ] = ACTIONS(865), + [anon_sym_GT_GT_EQ] = ACTIONS(865), + [anon_sym_EQ] = ACTIONS(870), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(870), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_AT] = ACTIONS(865), + [anon_sym__] = ACTIONS(870), + [anon_sym_DOT] = ACTIONS(870), + [anon_sym_DOT_DOT] = ACTIONS(870), + [anon_sym_DOT_DOT_DOT] = ACTIONS(865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(865), + [anon_sym_COLON_COLON] = ACTIONS(865), + [anon_sym_DASH_GT] = ACTIONS(865), + [anon_sym_POUND] = ACTIONS(865), + [anon_sym_SQUOTE] = ACTIONS(863), + [anon_sym_as] = ACTIONS(863), + [anon_sym_async] = ACTIONS(863), + [anon_sym_await] = ACTIONS(863), + [anon_sym_break] = ACTIONS(863), + [anon_sym_const] = ACTIONS(863), + [anon_sym_continue] = ACTIONS(863), + [anon_sym_default] = ACTIONS(863), + [anon_sym_enum] = ACTIONS(863), + [anon_sym_fn] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_gen] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_impl] = ACTIONS(863), + [anon_sym_let] = ACTIONS(863), + [anon_sym_loop] = ACTIONS(863), + [anon_sym_match] = ACTIONS(863), + [anon_sym_mod] = ACTIONS(863), + [anon_sym_pub] = ACTIONS(863), + [anon_sym_return] = ACTIONS(863), + [anon_sym_static] = ACTIONS(863), + [anon_sym_struct] = ACTIONS(863), + [anon_sym_trait] = ACTIONS(863), + [anon_sym_type] = ACTIONS(863), + [anon_sym_union] = ACTIONS(863), + [anon_sym_unsafe] = ACTIONS(863), + [anon_sym_use] = ACTIONS(863), + [anon_sym_where] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [sym_mutable_specifier] = ACTIONS(863), + [sym_integer_literal] = ACTIONS(868), + [aux_sym_string_literal_token1] = ACTIONS(868), + [sym_char_literal] = ACTIONS(868), + [anon_sym_true] = ACTIONS(863), + [anon_sym_false] = ACTIONS(863), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(863), + [sym_super] = ACTIONS(863), + [sym_crate] = ACTIONS(863), + [sym_metavariable] = ACTIONS(868), + [sym__raw_string_literal_start] = ACTIONS(868), + [sym_float_literal] = ACTIONS(868), + }, + [138] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1597), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(138), + [sym_block_comment] = STATE(138), + [aux_sym_enum_variant_list_repeat1] = STATE(994), [sym_identifier] = ACTIONS(746), [anon_sym_LPAREN] = ACTIONS(749), [anon_sym_LBRACK] = ACTIONS(752), @@ -32240,62 +32512,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(856), [sym_float_literal] = ACTIONS(838), }, - [137] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1608), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(137), - [sym_block_comment] = STATE(137), - [aux_sym_enum_variant_list_repeat1] = STATE(208), + [139] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1572), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(139), + [sym_block_comment] = STATE(139), + [aux_sym_enum_variant_list_repeat1] = STATE(134), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(859), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(873), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -32321,7 +32593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(875), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), @@ -32357,62 +32629,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [138] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1578), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(138), - [sym_block_comment] = STATE(138), - [aux_sym_enum_variant_list_repeat1] = STATE(143), + [140] = { + [sym_line_comment] = STATE(140), + [sym_block_comment] = STATE(140), + [aux_sym__non_special_token_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_RPAREN] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_RBRACK] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_RBRACE] = ACTIONS(879), + [anon_sym_EQ_GT] = ACTIONS(563), + [anon_sym_COLON] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(573), + [anon_sym_STAR] = ACTIONS(573), + [anon_sym_QMARK] = ACTIONS(563), + [anon_sym_u8] = ACTIONS(877), + [anon_sym_i8] = ACTIONS(877), + [anon_sym_u16] = ACTIONS(877), + [anon_sym_i16] = ACTIONS(877), + [anon_sym_u32] = ACTIONS(877), + [anon_sym_i32] = ACTIONS(877), + [anon_sym_u64] = ACTIONS(877), + [anon_sym_i64] = ACTIONS(877), + [anon_sym_u128] = ACTIONS(877), + [anon_sym_i128] = ACTIONS(877), + [anon_sym_isize] = ACTIONS(877), + [anon_sym_usize] = ACTIONS(877), + [anon_sym_f32] = ACTIONS(877), + [anon_sym_f64] = ACTIONS(877), + [anon_sym_bool] = ACTIONS(877), + [anon_sym_str] = ACTIONS(877), + [anon_sym_char] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(573), + [anon_sym_SLASH] = ACTIONS(573), + [anon_sym_PERCENT] = ACTIONS(573), + [anon_sym_CARET] = ACTIONS(573), + [anon_sym_BANG] = ACTIONS(573), + [anon_sym_AMP] = ACTIONS(573), + [anon_sym_PIPE] = ACTIONS(573), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_LT_LT] = ACTIONS(573), + [anon_sym_GT_GT] = ACTIONS(573), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_EQ] = ACTIONS(573), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(573), + [anon_sym_GT_EQ] = ACTIONS(563), + [anon_sym_LT_EQ] = ACTIONS(563), + [anon_sym_AT] = ACTIONS(563), + [anon_sym__] = ACTIONS(573), + [anon_sym_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT] = ACTIONS(573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(563), + [anon_sym_DOT_DOT_EQ] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(563), + [anon_sym_COLON_COLON] = ACTIONS(563), + [anon_sym_DASH_GT] = ACTIONS(563), + [anon_sym_POUND] = ACTIONS(563), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_async] = ACTIONS(877), + [anon_sym_await] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_default] = ACTIONS(877), + [anon_sym_enum] = ACTIONS(877), + [anon_sym_fn] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_gen] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_impl] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_pub] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_static] = ACTIONS(877), + [anon_sym_struct] = ACTIONS(877), + [anon_sym_trait] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_union] = ACTIONS(877), + [anon_sym_unsafe] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [sym_mutable_specifier] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(879), + [aux_sym_string_literal_token1] = ACTIONS(879), + [sym_char_literal] = ACTIONS(879), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(877), + [sym_super] = ACTIONS(877), + [sym_crate] = ACTIONS(877), + [sym_metavariable] = ACTIONS(879), + [sym__raw_string_literal_start] = ACTIONS(879), + [sym_float_literal] = ACTIONS(879), + }, + [141] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1577), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(141), + [sym_block_comment] = STATE(141), + [aux_sym_enum_variant_list_repeat1] = STATE(142), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(863), + [anon_sym_RBRACK] = ACTIONS(881), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -32438,7 +32827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(865), + [anon_sym_COMMA] = ACTIONS(883), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), @@ -32474,62 +32863,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [139] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1559), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(139), - [sym_block_comment] = STATE(139), - [aux_sym_enum_variant_list_repeat1] = STATE(136), + [142] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1553), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(142), + [sym_block_comment] = STATE(142), + [aux_sym_enum_variant_list_repeat1] = STATE(135), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(867), + [anon_sym_RBRACK] = ACTIONS(885), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -32555,7 +32944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(887), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), @@ -32591,178 +32980,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [140] = { - [sym_line_comment] = STATE(140), - [sym_block_comment] = STATE(140), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(871), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(873), - [anon_sym_RPAREN] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(873), - [anon_sym_RBRACK] = ACTIONS(873), - [anon_sym_LBRACE] = ACTIONS(873), - [anon_sym_RBRACE] = ACTIONS(873), - [anon_sym_EQ_GT] = ACTIONS(563), - [anon_sym_COLON] = ACTIONS(573), - [anon_sym_DOLLAR] = ACTIONS(871), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(563), - [anon_sym_u8] = ACTIONS(871), - [anon_sym_i8] = ACTIONS(871), - [anon_sym_u16] = ACTIONS(871), - [anon_sym_i16] = ACTIONS(871), - [anon_sym_u32] = ACTIONS(871), - [anon_sym_i32] = ACTIONS(871), - [anon_sym_u64] = ACTIONS(871), - [anon_sym_i64] = ACTIONS(871), - [anon_sym_u128] = ACTIONS(871), - [anon_sym_i128] = ACTIONS(871), - [anon_sym_isize] = ACTIONS(871), - [anon_sym_usize] = ACTIONS(871), - [anon_sym_f32] = ACTIONS(871), - [anon_sym_f64] = ACTIONS(871), - [anon_sym_bool] = ACTIONS(871), - [anon_sym_str] = ACTIONS(871), - [anon_sym_char] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(573), - [anon_sym_PERCENT] = ACTIONS(573), - [anon_sym_CARET] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_AMP_EQ] = ACTIONS(563), - [anon_sym_PIPE_EQ] = ACTIONS(563), - [anon_sym_LT_LT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_EQ] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(563), - [anon_sym__] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_COLON_COLON] = ACTIONS(563), - [anon_sym_DASH_GT] = ACTIONS(563), - [anon_sym_POUND] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(871), - [anon_sym_as] = ACTIONS(871), - [anon_sym_async] = ACTIONS(871), - [anon_sym_await] = ACTIONS(871), - [anon_sym_break] = ACTIONS(871), - [anon_sym_const] = ACTIONS(871), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_default] = ACTIONS(871), - [anon_sym_enum] = ACTIONS(871), - [anon_sym_fn] = ACTIONS(871), - [anon_sym_for] = ACTIONS(871), - [anon_sym_gen] = ACTIONS(871), - [anon_sym_if] = ACTIONS(871), - [anon_sym_impl] = ACTIONS(871), - [anon_sym_let] = ACTIONS(871), - [anon_sym_loop] = ACTIONS(871), - [anon_sym_match] = ACTIONS(871), - [anon_sym_mod] = ACTIONS(871), - [anon_sym_pub] = ACTIONS(871), - [anon_sym_return] = ACTIONS(871), - [anon_sym_static] = ACTIONS(871), - [anon_sym_struct] = ACTIONS(871), - [anon_sym_trait] = ACTIONS(871), - [anon_sym_type] = ACTIONS(871), - [anon_sym_union] = ACTIONS(871), - [anon_sym_unsafe] = ACTIONS(871), - [anon_sym_use] = ACTIONS(871), - [anon_sym_where] = ACTIONS(871), - [anon_sym_while] = ACTIONS(871), - [sym_mutable_specifier] = ACTIONS(871), - [sym_integer_literal] = ACTIONS(873), - [aux_sym_string_literal_token1] = ACTIONS(873), - [sym_char_literal] = ACTIONS(873), - [anon_sym_true] = ACTIONS(871), - [anon_sym_false] = ACTIONS(871), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(871), - [sym_super] = ACTIONS(871), - [sym_crate] = ACTIONS(871), - [sym_metavariable] = ACTIONS(873), - [sym__raw_string_literal_start] = ACTIONS(873), - [sym_float_literal] = ACTIONS(873), - }, - [141] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1587), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(141), - [sym_block_comment] = STATE(141), - [aux_sym_enum_variant_list_repeat1] = STATE(211), + [143] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1607), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(143), + [sym_block_comment] = STATE(143), + [aux_sym_enum_variant_list_repeat1] = STATE(206), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(875), + [anon_sym_RPAREN] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -32789,7 +33061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(891), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), @@ -32825,179 +33097,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [142] = { - [sym_line_comment] = STATE(142), - [sym_block_comment] = STATE(142), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_RPAREN] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(881), - [anon_sym_RBRACK] = ACTIONS(881), - [anon_sym_LBRACE] = ACTIONS(881), - [anon_sym_RBRACE] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(563), - [anon_sym_COLON] = ACTIONS(573), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(573), - [anon_sym_STAR] = ACTIONS(573), - [anon_sym_QMARK] = ACTIONS(563), - [anon_sym_u8] = ACTIONS(879), - [anon_sym_i8] = ACTIONS(879), - [anon_sym_u16] = ACTIONS(879), - [anon_sym_i16] = ACTIONS(879), - [anon_sym_u32] = ACTIONS(879), - [anon_sym_i32] = ACTIONS(879), - [anon_sym_u64] = ACTIONS(879), - [anon_sym_i64] = ACTIONS(879), - [anon_sym_u128] = ACTIONS(879), - [anon_sym_i128] = ACTIONS(879), - [anon_sym_isize] = ACTIONS(879), - [anon_sym_usize] = ACTIONS(879), - [anon_sym_f32] = ACTIONS(879), - [anon_sym_f64] = ACTIONS(879), - [anon_sym_bool] = ACTIONS(879), - [anon_sym_str] = ACTIONS(879), - [anon_sym_char] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(573), - [anon_sym_SLASH] = ACTIONS(573), - [anon_sym_PERCENT] = ACTIONS(573), - [anon_sym_CARET] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(573), - [anon_sym_AMP] = ACTIONS(573), - [anon_sym_PIPE] = ACTIONS(573), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_LT_LT] = ACTIONS(573), - [anon_sym_GT_GT] = ACTIONS(573), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_AMP_EQ] = ACTIONS(563), - [anon_sym_PIPE_EQ] = ACTIONS(563), - [anon_sym_LT_LT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_EQ] = ACTIONS(563), - [anon_sym_EQ] = ACTIONS(573), - [anon_sym_EQ_EQ] = ACTIONS(563), - [anon_sym_BANG_EQ] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(573), - [anon_sym_LT] = ACTIONS(573), - [anon_sym_GT_EQ] = ACTIONS(563), - [anon_sym_LT_EQ] = ACTIONS(563), - [anon_sym_AT] = ACTIONS(563), - [anon_sym__] = ACTIONS(573), - [anon_sym_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT] = ACTIONS(573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(563), - [anon_sym_DOT_DOT_EQ] = ACTIONS(563), - [anon_sym_COMMA] = ACTIONS(563), - [anon_sym_COLON_COLON] = ACTIONS(563), - [anon_sym_DASH_GT] = ACTIONS(563), - [anon_sym_POUND] = ACTIONS(563), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_as] = ACTIONS(879), - [anon_sym_async] = ACTIONS(879), - [anon_sym_await] = ACTIONS(879), - [anon_sym_break] = ACTIONS(879), - [anon_sym_const] = ACTIONS(879), - [anon_sym_continue] = ACTIONS(879), - [anon_sym_default] = ACTIONS(879), - [anon_sym_enum] = ACTIONS(879), - [anon_sym_fn] = ACTIONS(879), - [anon_sym_for] = ACTIONS(879), - [anon_sym_gen] = ACTIONS(879), - [anon_sym_if] = ACTIONS(879), - [anon_sym_impl] = ACTIONS(879), - [anon_sym_let] = ACTIONS(879), - [anon_sym_loop] = ACTIONS(879), - [anon_sym_match] = ACTIONS(879), - [anon_sym_mod] = ACTIONS(879), - [anon_sym_pub] = ACTIONS(879), - [anon_sym_return] = ACTIONS(879), - [anon_sym_static] = ACTIONS(879), - [anon_sym_struct] = ACTIONS(879), - [anon_sym_trait] = ACTIONS(879), - [anon_sym_type] = ACTIONS(879), - [anon_sym_union] = ACTIONS(879), - [anon_sym_unsafe] = ACTIONS(879), - [anon_sym_use] = ACTIONS(879), - [anon_sym_where] = ACTIONS(879), - [anon_sym_while] = ACTIONS(879), - [sym_mutable_specifier] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(881), - [aux_sym_string_literal_token1] = ACTIONS(881), - [sym_char_literal] = ACTIONS(881), - [anon_sym_true] = ACTIONS(879), - [anon_sym_false] = ACTIONS(879), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(879), - [sym_super] = ACTIONS(879), - [sym_crate] = ACTIONS(879), - [sym_metavariable] = ACTIONS(881), - [sym__raw_string_literal_start] = ACTIONS(881), - [sym_float_literal] = ACTIONS(881), - }, - [143] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1561), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(143), - [sym_block_comment] = STATE(143), - [aux_sym_enum_variant_list_repeat1] = STATE(135), + [144] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1642), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(144), + [sym_block_comment] = STATE(144), + [aux_sym_enum_variant_list_repeat1] = STATE(205), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(893), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(883), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33023,7 +33178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(885), + [anon_sym_COMMA] = ACTIONS(895), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), @@ -33059,123 +33214,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [144] = { - [sym_line_comment] = STATE(144), - [sym_block_comment] = STATE(144), - [aux_sym__non_special_token_repeat1] = STATE(144), - [sym_identifier] = ACTIONS(887), - [anon_sym_SEMI] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(892), - [anon_sym_RPAREN] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(892), - [anon_sym_RBRACK] = ACTIONS(892), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_RBRACE] = ACTIONS(892), - [anon_sym_EQ_GT] = ACTIONS(889), - [anon_sym_COLON] = ACTIONS(894), - [anon_sym_DOLLAR] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(894), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_QMARK] = ACTIONS(889), - [anon_sym_u8] = ACTIONS(887), - [anon_sym_i8] = ACTIONS(887), - [anon_sym_u16] = ACTIONS(887), - [anon_sym_i16] = ACTIONS(887), - [anon_sym_u32] = ACTIONS(887), - [anon_sym_i32] = ACTIONS(887), - [anon_sym_u64] = ACTIONS(887), - [anon_sym_i64] = ACTIONS(887), - [anon_sym_u128] = ACTIONS(887), - [anon_sym_i128] = ACTIONS(887), - [anon_sym_isize] = ACTIONS(887), - [anon_sym_usize] = ACTIONS(887), - [anon_sym_f32] = ACTIONS(887), - [anon_sym_f64] = ACTIONS(887), - [anon_sym_bool] = ACTIONS(887), - [anon_sym_str] = ACTIONS(887), - [anon_sym_char] = ACTIONS(887), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_SLASH] = ACTIONS(894), - [anon_sym_PERCENT] = ACTIONS(894), - [anon_sym_CARET] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(894), - [anon_sym_PIPE] = ACTIONS(894), - [anon_sym_AMP_AMP] = ACTIONS(889), - [anon_sym_PIPE_PIPE] = ACTIONS(889), - [anon_sym_LT_LT] = ACTIONS(894), - [anon_sym_GT_GT] = ACTIONS(894), - [anon_sym_PLUS_EQ] = ACTIONS(889), - [anon_sym_DASH_EQ] = ACTIONS(889), - [anon_sym_STAR_EQ] = ACTIONS(889), - [anon_sym_SLASH_EQ] = ACTIONS(889), - [anon_sym_PERCENT_EQ] = ACTIONS(889), - [anon_sym_CARET_EQ] = ACTIONS(889), - [anon_sym_AMP_EQ] = ACTIONS(889), - [anon_sym_PIPE_EQ] = ACTIONS(889), - [anon_sym_LT_LT_EQ] = ACTIONS(889), - [anon_sym_GT_GT_EQ] = ACTIONS(889), - [anon_sym_EQ] = ACTIONS(894), - [anon_sym_EQ_EQ] = ACTIONS(889), - [anon_sym_BANG_EQ] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(894), - [anon_sym_LT] = ACTIONS(894), - [anon_sym_GT_EQ] = ACTIONS(889), - [anon_sym_LT_EQ] = ACTIONS(889), - [anon_sym_AT] = ACTIONS(889), - [anon_sym__] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(894), - [anon_sym_DOT_DOT] = ACTIONS(894), - [anon_sym_DOT_DOT_DOT] = ACTIONS(889), - [anon_sym_DOT_DOT_EQ] = ACTIONS(889), - [anon_sym_COMMA] = ACTIONS(889), - [anon_sym_COLON_COLON] = ACTIONS(889), - [anon_sym_DASH_GT] = ACTIONS(889), - [anon_sym_POUND] = ACTIONS(889), - [anon_sym_SQUOTE] = ACTIONS(887), - [anon_sym_as] = ACTIONS(887), - [anon_sym_async] = ACTIONS(887), - [anon_sym_await] = ACTIONS(887), - [anon_sym_break] = ACTIONS(887), - [anon_sym_const] = ACTIONS(887), - [anon_sym_continue] = ACTIONS(887), - [anon_sym_default] = ACTIONS(887), - [anon_sym_enum] = ACTIONS(887), - [anon_sym_fn] = ACTIONS(887), - [anon_sym_for] = ACTIONS(887), - [anon_sym_gen] = ACTIONS(887), - [anon_sym_if] = ACTIONS(887), - [anon_sym_impl] = ACTIONS(887), - [anon_sym_let] = ACTIONS(887), - [anon_sym_loop] = ACTIONS(887), - [anon_sym_match] = ACTIONS(887), - [anon_sym_mod] = ACTIONS(887), - [anon_sym_pub] = ACTIONS(887), - [anon_sym_return] = ACTIONS(887), - [anon_sym_static] = ACTIONS(887), - [anon_sym_struct] = ACTIONS(887), - [anon_sym_trait] = ACTIONS(887), - [anon_sym_type] = ACTIONS(887), - [anon_sym_union] = ACTIONS(887), - [anon_sym_unsafe] = ACTIONS(887), - [anon_sym_use] = ACTIONS(887), - [anon_sym_where] = ACTIONS(887), - [anon_sym_while] = ACTIONS(887), - [sym_mutable_specifier] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(892), - [aux_sym_string_literal_token1] = ACTIONS(892), - [sym_char_literal] = ACTIONS(892), - [anon_sym_true] = ACTIONS(887), - [anon_sym_false] = ACTIONS(887), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(887), - [sym_super] = ACTIONS(887), - [sym_crate] = ACTIONS(887), - [sym_metavariable] = ACTIONS(892), - [sym__raw_string_literal_start] = ACTIONS(892), - [sym_float_literal] = ACTIONS(892), - }, [145] = { [sym_line_comment] = STATE(145), [sym_block_comment] = STATE(145), @@ -33293,61 +33331,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(899), }, [146] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(146), [sym_block_comment] = STATE(146), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_RPAREN] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_RBRACK] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_EQ_GT] = ACTIONS(903), + [anon_sym_COLON] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_QMARK] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(901), + [anon_sym_i8] = ACTIONS(901), + [anon_sym_u16] = ACTIONS(901), + [anon_sym_i16] = ACTIONS(901), + [anon_sym_u32] = ACTIONS(901), + [anon_sym_i32] = ACTIONS(901), + [anon_sym_u64] = ACTIONS(901), + [anon_sym_i64] = ACTIONS(901), + [anon_sym_u128] = ACTIONS(901), + [anon_sym_i128] = ACTIONS(901), + [anon_sym_isize] = ACTIONS(901), + [anon_sym_usize] = ACTIONS(901), + [anon_sym_f32] = ACTIONS(901), + [anon_sym_f64] = ACTIONS(901), + [anon_sym_bool] = ACTIONS(901), + [anon_sym_str] = ACTIONS(901), + [anon_sym_char] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_PERCENT] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_AMP_AMP] = ACTIONS(903), + [anon_sym_PIPE_PIPE] = ACTIONS(903), + [anon_sym_LT_LT] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(901), + [anon_sym_PLUS_EQ] = ACTIONS(903), + [anon_sym_DASH_EQ] = ACTIONS(903), + [anon_sym_STAR_EQ] = ACTIONS(903), + [anon_sym_SLASH_EQ] = ACTIONS(903), + [anon_sym_PERCENT_EQ] = ACTIONS(903), + [anon_sym_CARET_EQ] = ACTIONS(903), + [anon_sym_AMP_EQ] = ACTIONS(903), + [anon_sym_PIPE_EQ] = ACTIONS(903), + [anon_sym_LT_LT_EQ] = ACTIONS(903), + [anon_sym_GT_GT_EQ] = ACTIONS(903), + [anon_sym_EQ] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_AT] = ACTIONS(903), + [anon_sym__] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(903), + [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_COLON_COLON] = ACTIONS(903), + [anon_sym_DASH_GT] = ACTIONS(903), + [anon_sym_POUND] = ACTIONS(903), + [anon_sym_SQUOTE] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_async] = ACTIONS(901), + [anon_sym_await] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_default] = ACTIONS(901), + [anon_sym_enum] = ACTIONS(901), + [anon_sym_fn] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_gen] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_impl] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_pub] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_static] = ACTIONS(901), + [anon_sym_struct] = ACTIONS(901), + [anon_sym_trait] = ACTIONS(901), + [anon_sym_type] = ACTIONS(901), + [anon_sym_union] = ACTIONS(901), + [anon_sym_unsafe] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_where] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [sym_mutable_specifier] = ACTIONS(901), + [sym_integer_literal] = ACTIONS(903), + [aux_sym_string_literal_token1] = ACTIONS(903), + [sym_char_literal] = ACTIONS(903), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(901), + [sym_super] = ACTIONS(901), + [sym_crate] = ACTIONS(901), + [sym_metavariable] = ACTIONS(903), + [sym__raw_string_literal_start] = ACTIONS(903), + [sym_float_literal] = ACTIONS(903), + }, + [147] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1844), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_let_condition] = STATE(2945), + [sym__let_chain] = STATE(2946), + [sym__condition] = STATE(2684), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(147), + [sym_block_comment] = STATE(147), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(909), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(503), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [148] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(148), + [sym_block_comment] = STATE(148), + [aux_sym_enum_variant_list_repeat1] = STATE(199), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(901), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(913), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33408,353 +33678,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [147] = { - [sym_line_comment] = STATE(147), - [sym_block_comment] = STATE(147), - [sym_identifier] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(905), - [anon_sym_RPAREN] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(905), - [anon_sym_RBRACK] = ACTIONS(905), - [anon_sym_LBRACE] = ACTIONS(905), - [anon_sym_RBRACE] = ACTIONS(905), - [anon_sym_EQ_GT] = ACTIONS(905), - [anon_sym_COLON] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_QMARK] = ACTIONS(905), - [anon_sym_u8] = ACTIONS(903), - [anon_sym_i8] = ACTIONS(903), - [anon_sym_u16] = ACTIONS(903), - [anon_sym_i16] = ACTIONS(903), - [anon_sym_u32] = ACTIONS(903), - [anon_sym_i32] = ACTIONS(903), - [anon_sym_u64] = ACTIONS(903), - [anon_sym_i64] = ACTIONS(903), - [anon_sym_u128] = ACTIONS(903), - [anon_sym_i128] = ACTIONS(903), - [anon_sym_isize] = ACTIONS(903), - [anon_sym_usize] = ACTIONS(903), - [anon_sym_f32] = ACTIONS(903), - [anon_sym_f64] = ACTIONS(903), - [anon_sym_bool] = ACTIONS(903), - [anon_sym_str] = ACTIONS(903), - [anon_sym_char] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_PERCENT] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(903), - [anon_sym_BANG] = ACTIONS(903), - [anon_sym_AMP] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(903), - [anon_sym_AMP_AMP] = ACTIONS(905), - [anon_sym_PIPE_PIPE] = ACTIONS(905), - [anon_sym_LT_LT] = ACTIONS(903), - [anon_sym_GT_GT] = ACTIONS(903), - [anon_sym_PLUS_EQ] = ACTIONS(905), - [anon_sym_DASH_EQ] = ACTIONS(905), - [anon_sym_STAR_EQ] = ACTIONS(905), - [anon_sym_SLASH_EQ] = ACTIONS(905), - [anon_sym_PERCENT_EQ] = ACTIONS(905), - [anon_sym_CARET_EQ] = ACTIONS(905), - [anon_sym_AMP_EQ] = ACTIONS(905), - [anon_sym_PIPE_EQ] = ACTIONS(905), - [anon_sym_LT_LT_EQ] = ACTIONS(905), - [anon_sym_GT_GT_EQ] = ACTIONS(905), - [anon_sym_EQ] = ACTIONS(903), - [anon_sym_EQ_EQ] = ACTIONS(905), - [anon_sym_BANG_EQ] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(905), - [anon_sym_LT_EQ] = ACTIONS(905), - [anon_sym_AT] = ACTIONS(905), - [anon_sym__] = ACTIONS(903), - [anon_sym_DOT] = ACTIONS(903), - [anon_sym_DOT_DOT] = ACTIONS(903), - [anon_sym_DOT_DOT_DOT] = ACTIONS(905), - [anon_sym_DOT_DOT_EQ] = ACTIONS(905), - [anon_sym_COMMA] = ACTIONS(905), - [anon_sym_COLON_COLON] = ACTIONS(905), - [anon_sym_DASH_GT] = ACTIONS(905), - [anon_sym_POUND] = ACTIONS(905), - [anon_sym_SQUOTE] = ACTIONS(903), - [anon_sym_as] = ACTIONS(903), - [anon_sym_async] = ACTIONS(903), - [anon_sym_await] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_default] = ACTIONS(903), - [anon_sym_enum] = ACTIONS(903), - [anon_sym_fn] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_gen] = ACTIONS(903), - [anon_sym_if] = ACTIONS(903), - [anon_sym_impl] = ACTIONS(903), - [anon_sym_let] = ACTIONS(903), - [anon_sym_loop] = ACTIONS(903), - [anon_sym_match] = ACTIONS(903), - [anon_sym_mod] = ACTIONS(903), - [anon_sym_pub] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_static] = ACTIONS(903), - [anon_sym_struct] = ACTIONS(903), - [anon_sym_trait] = ACTIONS(903), - [anon_sym_type] = ACTIONS(903), - [anon_sym_union] = ACTIONS(903), - [anon_sym_unsafe] = ACTIONS(903), - [anon_sym_use] = ACTIONS(903), - [anon_sym_where] = ACTIONS(903), - [anon_sym_while] = ACTIONS(903), - [sym_mutable_specifier] = ACTIONS(903), - [sym_integer_literal] = ACTIONS(905), - [aux_sym_string_literal_token1] = ACTIONS(905), - [sym_char_literal] = ACTIONS(905), - [anon_sym_true] = ACTIONS(903), - [anon_sym_false] = ACTIONS(903), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(903), - [sym_super] = ACTIONS(903), - [sym_crate] = ACTIONS(903), - [sym_metavariable] = ACTIONS(905), - [sym__raw_string_literal_start] = ACTIONS(905), - [sym_float_literal] = ACTIONS(905), - }, - [148] = { - [sym_line_comment] = STATE(148), - [sym_block_comment] = STATE(148), - [sym_identifier] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(909), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(909), - [anon_sym_RBRACK] = ACTIONS(909), - [anon_sym_LBRACE] = ACTIONS(909), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_EQ_GT] = ACTIONS(909), - [anon_sym_COLON] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_QMARK] = ACTIONS(909), - [anon_sym_u8] = ACTIONS(907), - [anon_sym_i8] = ACTIONS(907), - [anon_sym_u16] = ACTIONS(907), - [anon_sym_i16] = ACTIONS(907), - [anon_sym_u32] = ACTIONS(907), - [anon_sym_i32] = ACTIONS(907), - [anon_sym_u64] = ACTIONS(907), - [anon_sym_i64] = ACTIONS(907), - [anon_sym_u128] = ACTIONS(907), - [anon_sym_i128] = ACTIONS(907), - [anon_sym_isize] = ACTIONS(907), - [anon_sym_usize] = ACTIONS(907), - [anon_sym_f32] = ACTIONS(907), - [anon_sym_f64] = ACTIONS(907), - [anon_sym_bool] = ACTIONS(907), - [anon_sym_str] = ACTIONS(907), - [anon_sym_char] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_PERCENT] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(907), - [anon_sym_BANG] = ACTIONS(907), - [anon_sym_AMP] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_AMP_AMP] = ACTIONS(909), - [anon_sym_PIPE_PIPE] = ACTIONS(909), - [anon_sym_LT_LT] = ACTIONS(907), - [anon_sym_GT_GT] = ACTIONS(907), - [anon_sym_PLUS_EQ] = ACTIONS(909), - [anon_sym_DASH_EQ] = ACTIONS(909), - [anon_sym_STAR_EQ] = ACTIONS(909), - [anon_sym_SLASH_EQ] = ACTIONS(909), - [anon_sym_PERCENT_EQ] = ACTIONS(909), - [anon_sym_CARET_EQ] = ACTIONS(909), - [anon_sym_AMP_EQ] = ACTIONS(909), - [anon_sym_PIPE_EQ] = ACTIONS(909), - [anon_sym_LT_LT_EQ] = ACTIONS(909), - [anon_sym_GT_GT_EQ] = ACTIONS(909), - [anon_sym_EQ] = ACTIONS(907), - [anon_sym_EQ_EQ] = ACTIONS(909), - [anon_sym_BANG_EQ] = ACTIONS(909), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_LT] = ACTIONS(907), - [anon_sym_GT_EQ] = ACTIONS(909), - [anon_sym_LT_EQ] = ACTIONS(909), - [anon_sym_AT] = ACTIONS(909), - [anon_sym__] = ACTIONS(907), - [anon_sym_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(909), - [anon_sym_COMMA] = ACTIONS(909), - [anon_sym_COLON_COLON] = ACTIONS(909), - [anon_sym_DASH_GT] = ACTIONS(909), - [anon_sym_POUND] = ACTIONS(909), - [anon_sym_SQUOTE] = ACTIONS(907), - [anon_sym_as] = ACTIONS(907), - [anon_sym_async] = ACTIONS(907), - [anon_sym_await] = ACTIONS(907), - [anon_sym_break] = ACTIONS(907), - [anon_sym_const] = ACTIONS(907), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_default] = ACTIONS(907), - [anon_sym_enum] = ACTIONS(907), - [anon_sym_fn] = ACTIONS(907), - [anon_sym_for] = ACTIONS(907), - [anon_sym_gen] = ACTIONS(907), - [anon_sym_if] = ACTIONS(907), - [anon_sym_impl] = ACTIONS(907), - [anon_sym_let] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(907), - [anon_sym_match] = ACTIONS(907), - [anon_sym_mod] = ACTIONS(907), - [anon_sym_pub] = ACTIONS(907), - [anon_sym_return] = ACTIONS(907), - [anon_sym_static] = ACTIONS(907), - [anon_sym_struct] = ACTIONS(907), - [anon_sym_trait] = ACTIONS(907), - [anon_sym_type] = ACTIONS(907), - [anon_sym_union] = ACTIONS(907), - [anon_sym_unsafe] = ACTIONS(907), - [anon_sym_use] = ACTIONS(907), - [anon_sym_where] = ACTIONS(907), - [anon_sym_while] = ACTIONS(907), - [sym_mutable_specifier] = ACTIONS(907), - [sym_integer_literal] = ACTIONS(909), - [aux_sym_string_literal_token1] = ACTIONS(909), - [sym_char_literal] = ACTIONS(909), - [anon_sym_true] = ACTIONS(907), - [anon_sym_false] = ACTIONS(907), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(907), - [sym_super] = ACTIONS(907), - [sym_crate] = ACTIONS(907), - [sym_metavariable] = ACTIONS(909), - [sym__raw_string_literal_start] = ACTIONS(909), - [sym_float_literal] = ACTIONS(909), - }, [149] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_let_condition] = STATE(2808), - [sym__let_chain] = STATE(2848), - [sym__condition] = STATE(2644), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(149), [sym_block_comment] = STATE(149), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), + [sym_identifier] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_RPAREN] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_RBRACK] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(917), + [anon_sym_EQ_GT] = ACTIONS(917), + [anon_sym_COLON] = ACTIONS(915), + [anon_sym_DOLLAR] = ACTIONS(915), + [anon_sym_PLUS] = ACTIONS(915), + [anon_sym_STAR] = ACTIONS(915), + [anon_sym_QMARK] = ACTIONS(917), + [anon_sym_u8] = ACTIONS(915), + [anon_sym_i8] = ACTIONS(915), + [anon_sym_u16] = ACTIONS(915), + [anon_sym_i16] = ACTIONS(915), + [anon_sym_u32] = ACTIONS(915), + [anon_sym_i32] = ACTIONS(915), + [anon_sym_u64] = ACTIONS(915), + [anon_sym_i64] = ACTIONS(915), + [anon_sym_u128] = ACTIONS(915), + [anon_sym_i128] = ACTIONS(915), + [anon_sym_isize] = ACTIONS(915), + [anon_sym_usize] = ACTIONS(915), + [anon_sym_f32] = ACTIONS(915), + [anon_sym_f64] = ACTIONS(915), + [anon_sym_bool] = ACTIONS(915), + [anon_sym_str] = ACTIONS(915), + [anon_sym_char] = ACTIONS(915), + [anon_sym_DASH] = ACTIONS(915), + [anon_sym_SLASH] = ACTIONS(915), + [anon_sym_PERCENT] = ACTIONS(915), + [anon_sym_CARET] = ACTIONS(915), + [anon_sym_BANG] = ACTIONS(915), + [anon_sym_AMP] = ACTIONS(915), + [anon_sym_PIPE] = ACTIONS(915), + [anon_sym_AMP_AMP] = ACTIONS(917), + [anon_sym_PIPE_PIPE] = ACTIONS(917), + [anon_sym_LT_LT] = ACTIONS(915), + [anon_sym_GT_GT] = ACTIONS(915), + [anon_sym_PLUS_EQ] = ACTIONS(917), + [anon_sym_DASH_EQ] = ACTIONS(917), + [anon_sym_STAR_EQ] = ACTIONS(917), + [anon_sym_SLASH_EQ] = ACTIONS(917), + [anon_sym_PERCENT_EQ] = ACTIONS(917), + [anon_sym_CARET_EQ] = ACTIONS(917), + [anon_sym_AMP_EQ] = ACTIONS(917), + [anon_sym_PIPE_EQ] = ACTIONS(917), + [anon_sym_LT_LT_EQ] = ACTIONS(917), + [anon_sym_GT_GT_EQ] = ACTIONS(917), + [anon_sym_EQ] = ACTIONS(915), + [anon_sym_EQ_EQ] = ACTIONS(917), + [anon_sym_BANG_EQ] = ACTIONS(917), + [anon_sym_GT] = ACTIONS(915), + [anon_sym_LT] = ACTIONS(915), + [anon_sym_GT_EQ] = ACTIONS(917), + [anon_sym_LT_EQ] = ACTIONS(917), + [anon_sym_AT] = ACTIONS(917), + [anon_sym__] = ACTIONS(915), + [anon_sym_DOT] = ACTIONS(915), [anon_sym_DOT_DOT] = ACTIONS(915), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [anon_sym_DOT_DOT_DOT] = ACTIONS(917), + [anon_sym_DOT_DOT_EQ] = ACTIONS(917), + [anon_sym_COMMA] = ACTIONS(917), + [anon_sym_COLON_COLON] = ACTIONS(917), + [anon_sym_DASH_GT] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_SQUOTE] = ACTIONS(915), + [anon_sym_as] = ACTIONS(915), + [anon_sym_async] = ACTIONS(915), + [anon_sym_await] = ACTIONS(915), + [anon_sym_break] = ACTIONS(915), + [anon_sym_const] = ACTIONS(915), + [anon_sym_continue] = ACTIONS(915), + [anon_sym_default] = ACTIONS(915), + [anon_sym_enum] = ACTIONS(915), + [anon_sym_fn] = ACTIONS(915), + [anon_sym_for] = ACTIONS(915), + [anon_sym_gen] = ACTIONS(915), + [anon_sym_if] = ACTIONS(915), + [anon_sym_impl] = ACTIONS(915), + [anon_sym_let] = ACTIONS(915), + [anon_sym_loop] = ACTIONS(915), + [anon_sym_match] = ACTIONS(915), + [anon_sym_mod] = ACTIONS(915), + [anon_sym_pub] = ACTIONS(915), + [anon_sym_return] = ACTIONS(915), + [anon_sym_static] = ACTIONS(915), + [anon_sym_struct] = ACTIONS(915), + [anon_sym_trait] = ACTIONS(915), + [anon_sym_type] = ACTIONS(915), + [anon_sym_union] = ACTIONS(915), + [anon_sym_unsafe] = ACTIONS(915), + [anon_sym_use] = ACTIONS(915), + [anon_sym_where] = ACTIONS(915), + [anon_sym_while] = ACTIONS(915), + [sym_mutable_specifier] = ACTIONS(915), + [sym_integer_literal] = ACTIONS(917), + [aux_sym_string_literal_token1] = ACTIONS(917), + [sym_char_literal] = ACTIONS(917), + [anon_sym_true] = ACTIONS(915), + [anon_sym_false] = ACTIONS(915), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(915), + [sym_super] = ACTIONS(915), + [sym_crate] = ACTIONS(915), + [sym_metavariable] = ACTIONS(917), + [sym__raw_string_literal_start] = ACTIONS(917), + [sym_float_literal] = ACTIONS(917), }, [150] = { [sym_line_comment] = STATE(150), @@ -34105,124 +34143,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(929), }, [153] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(153), [sym_block_comment] = STATE(153), - [sym_identifier] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(933), - [anon_sym_RPAREN] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(933), - [anon_sym_RBRACK] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_EQ_GT] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_STAR] = ACTIONS(931), - [anon_sym_QMARK] = ACTIONS(933), - [anon_sym_u8] = ACTIONS(931), - [anon_sym_i8] = ACTIONS(931), - [anon_sym_u16] = ACTIONS(931), - [anon_sym_i16] = ACTIONS(931), - [anon_sym_u32] = ACTIONS(931), - [anon_sym_i32] = ACTIONS(931), - [anon_sym_u64] = ACTIONS(931), - [anon_sym_i64] = ACTIONS(931), - [anon_sym_u128] = ACTIONS(931), - [anon_sym_i128] = ACTIONS(931), - [anon_sym_isize] = ACTIONS(931), - [anon_sym_usize] = ACTIONS(931), - [anon_sym_f32] = ACTIONS(931), - [anon_sym_f64] = ACTIONS(931), - [anon_sym_bool] = ACTIONS(931), - [anon_sym_str] = ACTIONS(931), - [anon_sym_char] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_SLASH] = ACTIONS(931), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_PLUS_EQ] = ACTIONS(933), - [anon_sym_DASH_EQ] = ACTIONS(933), - [anon_sym_STAR_EQ] = ACTIONS(933), - [anon_sym_SLASH_EQ] = ACTIONS(933), - [anon_sym_PERCENT_EQ] = ACTIONS(933), - [anon_sym_CARET_EQ] = ACTIONS(933), - [anon_sym_AMP_EQ] = ACTIONS(933), - [anon_sym_PIPE_EQ] = ACTIONS(933), - [anon_sym_LT_LT_EQ] = ACTIONS(933), - [anon_sym_GT_GT_EQ] = ACTIONS(933), - [anon_sym_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(933), - [anon_sym_BANG_EQ] = ACTIONS(933), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(933), - [anon_sym_LT_EQ] = ACTIONS(933), - [anon_sym_AT] = ACTIONS(933), - [anon_sym__] = ACTIONS(931), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_DOT_DOT] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(933), - [anon_sym_DOT_DOT_EQ] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(933), - [anon_sym_COLON_COLON] = ACTIONS(933), - [anon_sym_DASH_GT] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(933), - [anon_sym_SQUOTE] = ACTIONS(931), - [anon_sym_as] = ACTIONS(931), - [anon_sym_async] = ACTIONS(931), - [anon_sym_await] = ACTIONS(931), - [anon_sym_break] = ACTIONS(931), - [anon_sym_const] = ACTIONS(931), - [anon_sym_continue] = ACTIONS(931), - [anon_sym_default] = ACTIONS(931), - [anon_sym_enum] = ACTIONS(931), - [anon_sym_fn] = ACTIONS(931), - [anon_sym_for] = ACTIONS(931), - [anon_sym_gen] = ACTIONS(931), - [anon_sym_if] = ACTIONS(931), - [anon_sym_impl] = ACTIONS(931), - [anon_sym_let] = ACTIONS(931), - [anon_sym_loop] = ACTIONS(931), - [anon_sym_match] = ACTIONS(931), - [anon_sym_mod] = ACTIONS(931), - [anon_sym_pub] = ACTIONS(931), - [anon_sym_return] = ACTIONS(931), - [anon_sym_static] = ACTIONS(931), - [anon_sym_struct] = ACTIONS(931), - [anon_sym_trait] = ACTIONS(931), - [anon_sym_type] = ACTIONS(931), - [anon_sym_union] = ACTIONS(931), - [anon_sym_unsafe] = ACTIONS(931), - [anon_sym_use] = ACTIONS(931), - [anon_sym_where] = ACTIONS(931), - [anon_sym_while] = ACTIONS(931), - [sym_mutable_specifier] = ACTIONS(931), - [sym_integer_literal] = ACTIONS(933), - [aux_sym_string_literal_token1] = ACTIONS(933), - [sym_char_literal] = ACTIONS(933), - [anon_sym_true] = ACTIONS(931), - [anon_sym_false] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(931), - [sym_super] = ACTIONS(931), - [sym_crate] = ACTIONS(931), - [sym_metavariable] = ACTIONS(933), - [sym__raw_string_literal_start] = ACTIONS(933), - [sym_float_literal] = ACTIONS(933), + [aux_sym_enum_variant_list_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [154] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(154), [sym_block_comment] = STATE(154), + [aux_sym_enum_variant_list_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [155] = { + [sym_line_comment] = STATE(155), + [sym_block_comment] = STATE(155), [sym_identifier] = ACTIONS(935), [anon_sym_SEMI] = ACTIONS(937), [anon_sym_LPAREN] = ACTIONS(937), @@ -34336,9 +34490,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(937), [sym_float_literal] = ACTIONS(937), }, - [155] = { - [sym_line_comment] = STATE(155), - [sym_block_comment] = STATE(155), + [156] = { + [sym_line_comment] = STATE(156), + [sym_block_comment] = STATE(156), [sym_identifier] = ACTIONS(939), [anon_sym_SEMI] = ACTIONS(941), [anon_sym_LPAREN] = ACTIONS(941), @@ -34452,62 +34606,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(941), [sym_float_literal] = ACTIONS(941), }, - [156] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(156), - [sym_block_comment] = STATE(156), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [157] = { + [sym_line_comment] = STATE(157), + [sym_block_comment] = STATE(157), + [sym_identifier] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(945), + [anon_sym_RPAREN] = ACTIONS(945), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_RBRACK] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(945), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_COLON] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_STAR] = ACTIONS(943), + [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_u8] = ACTIONS(943), + [anon_sym_i8] = ACTIONS(943), + [anon_sym_u16] = ACTIONS(943), + [anon_sym_i16] = ACTIONS(943), + [anon_sym_u32] = ACTIONS(943), + [anon_sym_i32] = ACTIONS(943), + [anon_sym_u64] = ACTIONS(943), + [anon_sym_i64] = ACTIONS(943), + [anon_sym_u128] = ACTIONS(943), + [anon_sym_i128] = ACTIONS(943), + [anon_sym_isize] = ACTIONS(943), + [anon_sym_usize] = ACTIONS(943), + [anon_sym_f32] = ACTIONS(943), + [anon_sym_f64] = ACTIONS(943), + [anon_sym_bool] = ACTIONS(943), + [anon_sym_str] = ACTIONS(943), + [anon_sym_char] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_SLASH] = ACTIONS(943), + [anon_sym_PERCENT] = ACTIONS(943), + [anon_sym_CARET] = ACTIONS(943), + [anon_sym_BANG] = ACTIONS(943), + [anon_sym_AMP] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_AMP_AMP] = ACTIONS(945), + [anon_sym_PIPE_PIPE] = ACTIONS(945), + [anon_sym_LT_LT] = ACTIONS(943), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_PLUS_EQ] = ACTIONS(945), + [anon_sym_DASH_EQ] = ACTIONS(945), + [anon_sym_STAR_EQ] = ACTIONS(945), + [anon_sym_SLASH_EQ] = ACTIONS(945), + [anon_sym_PERCENT_EQ] = ACTIONS(945), + [anon_sym_CARET_EQ] = ACTIONS(945), + [anon_sym_AMP_EQ] = ACTIONS(945), + [anon_sym_PIPE_EQ] = ACTIONS(945), + [anon_sym_LT_LT_EQ] = ACTIONS(945), + [anon_sym_GT_GT_EQ] = ACTIONS(945), + [anon_sym_EQ] = ACTIONS(943), + [anon_sym_EQ_EQ] = ACTIONS(945), + [anon_sym_BANG_EQ] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(943), + [anon_sym_GT_EQ] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(945), + [anon_sym_AT] = ACTIONS(945), + [anon_sym__] = ACTIONS(943), + [anon_sym_DOT] = ACTIONS(943), + [anon_sym_DOT_DOT] = ACTIONS(943), + [anon_sym_DOT_DOT_DOT] = ACTIONS(945), + [anon_sym_DOT_DOT_EQ] = ACTIONS(945), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(945), + [anon_sym_DASH_GT] = ACTIONS(945), + [anon_sym_POUND] = ACTIONS(945), + [anon_sym_SQUOTE] = ACTIONS(943), + [anon_sym_as] = ACTIONS(943), + [anon_sym_async] = ACTIONS(943), + [anon_sym_await] = ACTIONS(943), + [anon_sym_break] = ACTIONS(943), + [anon_sym_const] = ACTIONS(943), + [anon_sym_continue] = ACTIONS(943), + [anon_sym_default] = ACTIONS(943), + [anon_sym_enum] = ACTIONS(943), + [anon_sym_fn] = ACTIONS(943), + [anon_sym_for] = ACTIONS(943), + [anon_sym_gen] = ACTIONS(943), + [anon_sym_if] = ACTIONS(943), + [anon_sym_impl] = ACTIONS(943), + [anon_sym_let] = ACTIONS(943), + [anon_sym_loop] = ACTIONS(943), + [anon_sym_match] = ACTIONS(943), + [anon_sym_mod] = ACTIONS(943), + [anon_sym_pub] = ACTIONS(943), + [anon_sym_return] = ACTIONS(943), + [anon_sym_static] = ACTIONS(943), + [anon_sym_struct] = ACTIONS(943), + [anon_sym_trait] = ACTIONS(943), + [anon_sym_type] = ACTIONS(943), + [anon_sym_union] = ACTIONS(943), + [anon_sym_unsafe] = ACTIONS(943), + [anon_sym_use] = ACTIONS(943), + [anon_sym_where] = ACTIONS(943), + [anon_sym_while] = ACTIONS(943), + [sym_mutable_specifier] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(945), + [aux_sym_string_literal_token1] = ACTIONS(945), + [sym_char_literal] = ACTIONS(945), + [anon_sym_true] = ACTIONS(943), + [anon_sym_false] = ACTIONS(943), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(943), + [sym_super] = ACTIONS(943), + [sym_crate] = ACTIONS(943), + [sym_metavariable] = ACTIONS(945), + [sym__raw_string_literal_start] = ACTIONS(945), + [sym_float_literal] = ACTIONS(945), + }, + [158] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1844), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_let_condition] = STATE(2945), + [sym__let_chain] = STATE(2946), + [sym__condition] = STATE(2675), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(158), + [sym_block_comment] = STATE(158), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(909), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(503), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [159] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(159), + [sym_block_comment] = STATE(159), + [aux_sym_enum_variant_list_repeat1] = STATE(199), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(943), + [anon_sym_RBRACK] = ACTIONS(947), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -34568,571 +34954,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [157] = { - [sym_line_comment] = STATE(157), - [sym_block_comment] = STATE(157), - [sym_identifier] = ACTIONS(945), - [anon_sym_SEMI] = ACTIONS(947), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_RBRACK] = ACTIONS(947), - [anon_sym_LBRACE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_EQ_GT] = ACTIONS(947), - [anon_sym_COLON] = ACTIONS(945), - [anon_sym_DOLLAR] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(945), - [anon_sym_STAR] = ACTIONS(945), - [anon_sym_QMARK] = ACTIONS(947), - [anon_sym_u8] = ACTIONS(945), - [anon_sym_i8] = ACTIONS(945), - [anon_sym_u16] = ACTIONS(945), - [anon_sym_i16] = ACTIONS(945), - [anon_sym_u32] = ACTIONS(945), - [anon_sym_i32] = ACTIONS(945), - [anon_sym_u64] = ACTIONS(945), - [anon_sym_i64] = ACTIONS(945), - [anon_sym_u128] = ACTIONS(945), - [anon_sym_i128] = ACTIONS(945), - [anon_sym_isize] = ACTIONS(945), - [anon_sym_usize] = ACTIONS(945), - [anon_sym_f32] = ACTIONS(945), - [anon_sym_f64] = ACTIONS(945), - [anon_sym_bool] = ACTIONS(945), - [anon_sym_str] = ACTIONS(945), - [anon_sym_char] = ACTIONS(945), - [anon_sym_DASH] = ACTIONS(945), - [anon_sym_SLASH] = ACTIONS(945), - [anon_sym_PERCENT] = ACTIONS(945), - [anon_sym_CARET] = ACTIONS(945), - [anon_sym_BANG] = ACTIONS(945), - [anon_sym_AMP] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_AMP_AMP] = ACTIONS(947), - [anon_sym_PIPE_PIPE] = ACTIONS(947), - [anon_sym_LT_LT] = ACTIONS(945), - [anon_sym_GT_GT] = ACTIONS(945), - [anon_sym_PLUS_EQ] = ACTIONS(947), - [anon_sym_DASH_EQ] = ACTIONS(947), - [anon_sym_STAR_EQ] = ACTIONS(947), - [anon_sym_SLASH_EQ] = ACTIONS(947), - [anon_sym_PERCENT_EQ] = ACTIONS(947), - [anon_sym_CARET_EQ] = ACTIONS(947), - [anon_sym_AMP_EQ] = ACTIONS(947), - [anon_sym_PIPE_EQ] = ACTIONS(947), - [anon_sym_LT_LT_EQ] = ACTIONS(947), - [anon_sym_GT_GT_EQ] = ACTIONS(947), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(947), - [anon_sym_BANG_EQ] = ACTIONS(947), - [anon_sym_GT] = ACTIONS(945), - [anon_sym_LT] = ACTIONS(945), - [anon_sym_GT_EQ] = ACTIONS(947), - [anon_sym_LT_EQ] = ACTIONS(947), - [anon_sym_AT] = ACTIONS(947), - [anon_sym__] = ACTIONS(945), - [anon_sym_DOT] = ACTIONS(945), - [anon_sym_DOT_DOT] = ACTIONS(945), - [anon_sym_DOT_DOT_DOT] = ACTIONS(947), - [anon_sym_DOT_DOT_EQ] = ACTIONS(947), - [anon_sym_COMMA] = ACTIONS(947), - [anon_sym_COLON_COLON] = ACTIONS(947), - [anon_sym_DASH_GT] = ACTIONS(947), - [anon_sym_POUND] = ACTIONS(947), - [anon_sym_SQUOTE] = ACTIONS(945), - [anon_sym_as] = ACTIONS(945), - [anon_sym_async] = ACTIONS(945), - [anon_sym_await] = ACTIONS(945), - [anon_sym_break] = ACTIONS(945), - [anon_sym_const] = ACTIONS(945), - [anon_sym_continue] = ACTIONS(945), - [anon_sym_default] = ACTIONS(945), - [anon_sym_enum] = ACTIONS(945), - [anon_sym_fn] = ACTIONS(945), - [anon_sym_for] = ACTIONS(945), - [anon_sym_gen] = ACTIONS(945), - [anon_sym_if] = ACTIONS(945), - [anon_sym_impl] = ACTIONS(945), - [anon_sym_let] = ACTIONS(945), - [anon_sym_loop] = ACTIONS(945), - [anon_sym_match] = ACTIONS(945), - [anon_sym_mod] = ACTIONS(945), - [anon_sym_pub] = ACTIONS(945), - [anon_sym_return] = ACTIONS(945), - [anon_sym_static] = ACTIONS(945), - [anon_sym_struct] = ACTIONS(945), - [anon_sym_trait] = ACTIONS(945), - [anon_sym_type] = ACTIONS(945), - [anon_sym_union] = ACTIONS(945), - [anon_sym_unsafe] = ACTIONS(945), - [anon_sym_use] = ACTIONS(945), - [anon_sym_where] = ACTIONS(945), - [anon_sym_while] = ACTIONS(945), - [sym_mutable_specifier] = ACTIONS(945), - [sym_integer_literal] = ACTIONS(947), - [aux_sym_string_literal_token1] = ACTIONS(947), - [sym_char_literal] = ACTIONS(947), - [anon_sym_true] = ACTIONS(945), - [anon_sym_false] = ACTIONS(945), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(945), - [sym_super] = ACTIONS(945), - [sym_crate] = ACTIONS(945), - [sym_metavariable] = ACTIONS(947), - [sym__raw_string_literal_start] = ACTIONS(947), - [sym_float_literal] = ACTIONS(947), - }, - [158] = { - [sym_line_comment] = STATE(158), - [sym_block_comment] = STATE(158), - [sym_identifier] = ACTIONS(949), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_RPAREN] = ACTIONS(951), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_RBRACK] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_EQ_GT] = ACTIONS(951), - [anon_sym_COLON] = ACTIONS(949), - [anon_sym_DOLLAR] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(949), - [anon_sym_STAR] = ACTIONS(949), - [anon_sym_QMARK] = ACTIONS(951), - [anon_sym_u8] = ACTIONS(949), - [anon_sym_i8] = ACTIONS(949), - [anon_sym_u16] = ACTIONS(949), - [anon_sym_i16] = ACTIONS(949), - [anon_sym_u32] = ACTIONS(949), - [anon_sym_i32] = ACTIONS(949), - [anon_sym_u64] = ACTIONS(949), - [anon_sym_i64] = ACTIONS(949), - [anon_sym_u128] = ACTIONS(949), - [anon_sym_i128] = ACTIONS(949), - [anon_sym_isize] = ACTIONS(949), - [anon_sym_usize] = ACTIONS(949), - [anon_sym_f32] = ACTIONS(949), - [anon_sym_f64] = ACTIONS(949), - [anon_sym_bool] = ACTIONS(949), - [anon_sym_str] = ACTIONS(949), - [anon_sym_char] = ACTIONS(949), - [anon_sym_DASH] = ACTIONS(949), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_PERCENT] = ACTIONS(949), - [anon_sym_CARET] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_PIPE] = ACTIONS(949), - [anon_sym_AMP_AMP] = ACTIONS(951), - [anon_sym_PIPE_PIPE] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(949), - [anon_sym_GT_GT] = ACTIONS(949), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_EQ] = ACTIONS(949), - [anon_sym_EQ_EQ] = ACTIONS(951), - [anon_sym_BANG_EQ] = ACTIONS(951), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT_EQ] = ACTIONS(951), - [anon_sym_LT_EQ] = ACTIONS(951), - [anon_sym_AT] = ACTIONS(951), - [anon_sym__] = ACTIONS(949), - [anon_sym_DOT] = ACTIONS(949), - [anon_sym_DOT_DOT] = ACTIONS(949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(951), - [anon_sym_COMMA] = ACTIONS(951), - [anon_sym_COLON_COLON] = ACTIONS(951), - [anon_sym_DASH_GT] = ACTIONS(951), - [anon_sym_POUND] = ACTIONS(951), - [anon_sym_SQUOTE] = ACTIONS(949), - [anon_sym_as] = ACTIONS(949), - [anon_sym_async] = ACTIONS(949), - [anon_sym_await] = ACTIONS(949), - [anon_sym_break] = ACTIONS(949), - [anon_sym_const] = ACTIONS(949), - [anon_sym_continue] = ACTIONS(949), - [anon_sym_default] = ACTIONS(949), - [anon_sym_enum] = ACTIONS(949), - [anon_sym_fn] = ACTIONS(949), - [anon_sym_for] = ACTIONS(949), - [anon_sym_gen] = ACTIONS(949), - [anon_sym_if] = ACTIONS(949), - [anon_sym_impl] = ACTIONS(949), - [anon_sym_let] = ACTIONS(949), - [anon_sym_loop] = ACTIONS(949), - [anon_sym_match] = ACTIONS(949), - [anon_sym_mod] = ACTIONS(949), - [anon_sym_pub] = ACTIONS(949), - [anon_sym_return] = ACTIONS(949), - [anon_sym_static] = ACTIONS(949), - [anon_sym_struct] = ACTIONS(949), - [anon_sym_trait] = ACTIONS(949), - [anon_sym_type] = ACTIONS(949), - [anon_sym_union] = ACTIONS(949), - [anon_sym_unsafe] = ACTIONS(949), - [anon_sym_use] = ACTIONS(949), - [anon_sym_where] = ACTIONS(949), - [anon_sym_while] = ACTIONS(949), - [sym_mutable_specifier] = ACTIONS(949), - [sym_integer_literal] = ACTIONS(951), - [aux_sym_string_literal_token1] = ACTIONS(951), - [sym_char_literal] = ACTIONS(951), - [anon_sym_true] = ACTIONS(949), - [anon_sym_false] = ACTIONS(949), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(949), - [sym_super] = ACTIONS(949), - [sym_crate] = ACTIONS(949), - [sym_metavariable] = ACTIONS(951), - [sym__raw_string_literal_start] = ACTIONS(951), - [sym_float_literal] = ACTIONS(951), - }, - [159] = { - [sym_line_comment] = STATE(159), - [sym_block_comment] = STATE(159), - [sym_identifier] = ACTIONS(953), - [anon_sym_SEMI] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_RBRACK] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_EQ_GT] = ACTIONS(955), - [anon_sym_COLON] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_STAR] = ACTIONS(953), - [anon_sym_QMARK] = ACTIONS(955), - [anon_sym_u8] = ACTIONS(953), - [anon_sym_i8] = ACTIONS(953), - [anon_sym_u16] = ACTIONS(953), - [anon_sym_i16] = ACTIONS(953), - [anon_sym_u32] = ACTIONS(953), - [anon_sym_i32] = ACTIONS(953), - [anon_sym_u64] = ACTIONS(953), - [anon_sym_i64] = ACTIONS(953), - [anon_sym_u128] = ACTIONS(953), - [anon_sym_i128] = ACTIONS(953), - [anon_sym_isize] = ACTIONS(953), - [anon_sym_usize] = ACTIONS(953), - [anon_sym_f32] = ACTIONS(953), - [anon_sym_f64] = ACTIONS(953), - [anon_sym_bool] = ACTIONS(953), - [anon_sym_str] = ACTIONS(953), - [anon_sym_char] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_SLASH] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(953), - [anon_sym_CARET] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(953), - [anon_sym_AMP] = ACTIONS(953), - [anon_sym_PIPE] = ACTIONS(953), - [anon_sym_AMP_AMP] = ACTIONS(955), - [anon_sym_PIPE_PIPE] = ACTIONS(955), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_PLUS_EQ] = ACTIONS(955), - [anon_sym_DASH_EQ] = ACTIONS(955), - [anon_sym_STAR_EQ] = ACTIONS(955), - [anon_sym_SLASH_EQ] = ACTIONS(955), - [anon_sym_PERCENT_EQ] = ACTIONS(955), - [anon_sym_CARET_EQ] = ACTIONS(955), - [anon_sym_AMP_EQ] = ACTIONS(955), - [anon_sym_PIPE_EQ] = ACTIONS(955), - [anon_sym_LT_LT_EQ] = ACTIONS(955), - [anon_sym_GT_GT_EQ] = ACTIONS(955), - [anon_sym_EQ] = ACTIONS(953), - [anon_sym_EQ_EQ] = ACTIONS(955), - [anon_sym_BANG_EQ] = ACTIONS(955), - [anon_sym_GT] = ACTIONS(953), - [anon_sym_LT] = ACTIONS(953), - [anon_sym_GT_EQ] = ACTIONS(955), - [anon_sym_LT_EQ] = ACTIONS(955), - [anon_sym_AT] = ACTIONS(955), - [anon_sym__] = ACTIONS(953), - [anon_sym_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT_DOT] = ACTIONS(955), - [anon_sym_DOT_DOT_EQ] = ACTIONS(955), - [anon_sym_COMMA] = ACTIONS(955), - [anon_sym_COLON_COLON] = ACTIONS(955), - [anon_sym_DASH_GT] = ACTIONS(955), - [anon_sym_POUND] = ACTIONS(955), - [anon_sym_SQUOTE] = ACTIONS(953), - [anon_sym_as] = ACTIONS(953), - [anon_sym_async] = ACTIONS(953), - [anon_sym_await] = ACTIONS(953), - [anon_sym_break] = ACTIONS(953), - [anon_sym_const] = ACTIONS(953), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_default] = ACTIONS(953), - [anon_sym_enum] = ACTIONS(953), - [anon_sym_fn] = ACTIONS(953), - [anon_sym_for] = ACTIONS(953), - [anon_sym_gen] = ACTIONS(953), - [anon_sym_if] = ACTIONS(953), - [anon_sym_impl] = ACTIONS(953), - [anon_sym_let] = ACTIONS(953), - [anon_sym_loop] = ACTIONS(953), - [anon_sym_match] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_pub] = ACTIONS(953), - [anon_sym_return] = ACTIONS(953), - [anon_sym_static] = ACTIONS(953), - [anon_sym_struct] = ACTIONS(953), - [anon_sym_trait] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_union] = ACTIONS(953), - [anon_sym_unsafe] = ACTIONS(953), - [anon_sym_use] = ACTIONS(953), - [anon_sym_where] = ACTIONS(953), - [anon_sym_while] = ACTIONS(953), - [sym_mutable_specifier] = ACTIONS(953), - [sym_integer_literal] = ACTIONS(955), - [aux_sym_string_literal_token1] = ACTIONS(955), - [sym_char_literal] = ACTIONS(955), - [anon_sym_true] = ACTIONS(953), - [anon_sym_false] = ACTIONS(953), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(953), - [sym_super] = ACTIONS(953), - [sym_crate] = ACTIONS(953), - [sym_metavariable] = ACTIONS(955), - [sym__raw_string_literal_start] = ACTIONS(955), - [sym_float_literal] = ACTIONS(955), - }, [160] = { [sym_line_comment] = STATE(160), [sym_block_comment] = STATE(160), - [sym_identifier] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_RBRACK] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_EQ_GT] = ACTIONS(959), - [anon_sym_COLON] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(957), - [anon_sym_i8] = ACTIONS(957), - [anon_sym_u16] = ACTIONS(957), - [anon_sym_i16] = ACTIONS(957), - [anon_sym_u32] = ACTIONS(957), - [anon_sym_i32] = ACTIONS(957), - [anon_sym_u64] = ACTIONS(957), - [anon_sym_i64] = ACTIONS(957), - [anon_sym_u128] = ACTIONS(957), - [anon_sym_i128] = ACTIONS(957), - [anon_sym_isize] = ACTIONS(957), - [anon_sym_usize] = ACTIONS(957), - [anon_sym_f32] = ACTIONS(957), - [anon_sym_f64] = ACTIONS(957), - [anon_sym_bool] = ACTIONS(957), - [anon_sym_str] = ACTIONS(957), - [anon_sym_char] = ACTIONS(957), - [anon_sym_DASH] = ACTIONS(957), - [anon_sym_SLASH] = ACTIONS(957), - [anon_sym_PERCENT] = ACTIONS(957), - [anon_sym_CARET] = ACTIONS(957), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(957), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(959), - [anon_sym_PIPE_PIPE] = ACTIONS(959), - [anon_sym_LT_LT] = ACTIONS(957), - [anon_sym_GT_GT] = ACTIONS(957), - [anon_sym_PLUS_EQ] = ACTIONS(959), - [anon_sym_DASH_EQ] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(959), - [anon_sym_SLASH_EQ] = ACTIONS(959), - [anon_sym_PERCENT_EQ] = ACTIONS(959), - [anon_sym_CARET_EQ] = ACTIONS(959), - [anon_sym_AMP_EQ] = ACTIONS(959), - [anon_sym_PIPE_EQ] = ACTIONS(959), - [anon_sym_LT_LT_EQ] = ACTIONS(959), - [anon_sym_GT_GT_EQ] = ACTIONS(959), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_AT] = ACTIONS(959), - [anon_sym__] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(957), - [anon_sym_DOT_DOT] = ACTIONS(957), - [anon_sym_DOT_DOT_DOT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_COMMA] = ACTIONS(959), - [anon_sym_COLON_COLON] = ACTIONS(959), - [anon_sym_DASH_GT] = ACTIONS(959), - [anon_sym_POUND] = ACTIONS(959), - [anon_sym_SQUOTE] = ACTIONS(957), - [anon_sym_as] = ACTIONS(957), - [anon_sym_async] = ACTIONS(957), - [anon_sym_await] = ACTIONS(957), - [anon_sym_break] = ACTIONS(957), - [anon_sym_const] = ACTIONS(957), - [anon_sym_continue] = ACTIONS(957), - [anon_sym_default] = ACTIONS(957), - [anon_sym_enum] = ACTIONS(957), - [anon_sym_fn] = ACTIONS(957), - [anon_sym_for] = ACTIONS(957), - [anon_sym_gen] = ACTIONS(957), - [anon_sym_if] = ACTIONS(957), - [anon_sym_impl] = ACTIONS(957), - [anon_sym_let] = ACTIONS(957), - [anon_sym_loop] = ACTIONS(957), - [anon_sym_match] = ACTIONS(957), - [anon_sym_mod] = ACTIONS(957), - [anon_sym_pub] = ACTIONS(957), - [anon_sym_return] = ACTIONS(957), - [anon_sym_static] = ACTIONS(957), - [anon_sym_struct] = ACTIONS(957), - [anon_sym_trait] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_union] = ACTIONS(957), - [anon_sym_unsafe] = ACTIONS(957), - [anon_sym_use] = ACTIONS(957), - [anon_sym_where] = ACTIONS(957), - [anon_sym_while] = ACTIONS(957), - [sym_mutable_specifier] = ACTIONS(957), - [sym_integer_literal] = ACTIONS(959), - [aux_sym_string_literal_token1] = ACTIONS(959), - [sym_char_literal] = ACTIONS(959), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(957), - [sym_super] = ACTIONS(957), - [sym_crate] = ACTIONS(957), - [sym_metavariable] = ACTIONS(959), - [sym__raw_string_literal_start] = ACTIONS(959), - [sym_float_literal] = ACTIONS(959), + [aux_sym__non_special_token_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_RPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(868), + [anon_sym_RBRACK] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(868), + [anon_sym_RBRACE] = ACTIONS(868), + [anon_sym_EQ_GT] = ACTIONS(949), + [anon_sym_COLON] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(952), + [anon_sym_STAR] = ACTIONS(952), + [anon_sym_QMARK] = ACTIONS(949), + [anon_sym_u8] = ACTIONS(863), + [anon_sym_i8] = ACTIONS(863), + [anon_sym_u16] = ACTIONS(863), + [anon_sym_i16] = ACTIONS(863), + [anon_sym_u32] = ACTIONS(863), + [anon_sym_i32] = ACTIONS(863), + [anon_sym_u64] = ACTIONS(863), + [anon_sym_i64] = ACTIONS(863), + [anon_sym_u128] = ACTIONS(863), + [anon_sym_i128] = ACTIONS(863), + [anon_sym_isize] = ACTIONS(863), + [anon_sym_usize] = ACTIONS(863), + [anon_sym_f32] = ACTIONS(863), + [anon_sym_f64] = ACTIONS(863), + [anon_sym_bool] = ACTIONS(863), + [anon_sym_str] = ACTIONS(863), + [anon_sym_char] = ACTIONS(863), + [anon_sym_DASH] = ACTIONS(952), + [anon_sym_SLASH] = ACTIONS(952), + [anon_sym_PERCENT] = ACTIONS(952), + [anon_sym_CARET] = ACTIONS(952), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_AMP] = ACTIONS(952), + [anon_sym_PIPE] = ACTIONS(952), + [anon_sym_AMP_AMP] = ACTIONS(949), + [anon_sym_PIPE_PIPE] = ACTIONS(949), + [anon_sym_LT_LT] = ACTIONS(952), + [anon_sym_GT_GT] = ACTIONS(952), + [anon_sym_PLUS_EQ] = ACTIONS(949), + [anon_sym_DASH_EQ] = ACTIONS(949), + [anon_sym_STAR_EQ] = ACTIONS(949), + [anon_sym_SLASH_EQ] = ACTIONS(949), + [anon_sym_PERCENT_EQ] = ACTIONS(949), + [anon_sym_CARET_EQ] = ACTIONS(949), + [anon_sym_AMP_EQ] = ACTIONS(949), + [anon_sym_PIPE_EQ] = ACTIONS(949), + [anon_sym_LT_LT_EQ] = ACTIONS(949), + [anon_sym_GT_GT_EQ] = ACTIONS(949), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(952), + [anon_sym_GT_EQ] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_AT] = ACTIONS(949), + [anon_sym__] = ACTIONS(952), + [anon_sym_DOT] = ACTIONS(952), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(949), + [anon_sym_DOT_DOT_EQ] = ACTIONS(949), + [anon_sym_COMMA] = ACTIONS(949), + [anon_sym_COLON_COLON] = ACTIONS(949), + [anon_sym_DASH_GT] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(949), + [anon_sym_SQUOTE] = ACTIONS(863), + [anon_sym_as] = ACTIONS(863), + [anon_sym_async] = ACTIONS(863), + [anon_sym_await] = ACTIONS(863), + [anon_sym_break] = ACTIONS(863), + [anon_sym_const] = ACTIONS(863), + [anon_sym_continue] = ACTIONS(863), + [anon_sym_default] = ACTIONS(863), + [anon_sym_enum] = ACTIONS(863), + [anon_sym_fn] = ACTIONS(863), + [anon_sym_for] = ACTIONS(863), + [anon_sym_gen] = ACTIONS(863), + [anon_sym_if] = ACTIONS(863), + [anon_sym_impl] = ACTIONS(863), + [anon_sym_let] = ACTIONS(863), + [anon_sym_loop] = ACTIONS(863), + [anon_sym_match] = ACTIONS(863), + [anon_sym_mod] = ACTIONS(863), + [anon_sym_pub] = ACTIONS(863), + [anon_sym_return] = ACTIONS(863), + [anon_sym_static] = ACTIONS(863), + [anon_sym_struct] = ACTIONS(863), + [anon_sym_trait] = ACTIONS(863), + [anon_sym_type] = ACTIONS(863), + [anon_sym_union] = ACTIONS(863), + [anon_sym_unsafe] = ACTIONS(863), + [anon_sym_use] = ACTIONS(863), + [anon_sym_where] = ACTIONS(863), + [anon_sym_while] = ACTIONS(863), + [sym_mutable_specifier] = ACTIONS(863), + [sym_integer_literal] = ACTIONS(868), + [aux_sym_string_literal_token1] = ACTIONS(868), + [sym_char_literal] = ACTIONS(868), + [anon_sym_true] = ACTIONS(863), + [anon_sym_false] = ACTIONS(863), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(863), + [sym_super] = ACTIONS(863), + [sym_crate] = ACTIONS(863), + [sym__raw_string_literal_start] = ACTIONS(868), + [sym_float_literal] = ACTIONS(868), }, [161] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_let_condition] = STATE(2808), - [sym__let_chain] = STATE(2848), - [sym__condition] = STATE(2568), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(161), [sym_block_comment] = STATE(161), - [sym_identifier] = ACTIONS(465), + [aux_sym_enum_variant_list_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(955), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(915), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(917), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -35141,128 +35179,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [162] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1879), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_let_condition] = STATE(3216), + [sym__let_chain] = STATE(3218), + [sym__condition] = STATE(3356), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), [sym_line_comment] = STATE(162), [sym_block_comment] = STATE(162), - [sym_identifier] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(963), - [anon_sym_RBRACK] = ACTIONS(963), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_EQ_GT] = ACTIONS(963), - [anon_sym_COLON] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_STAR] = ACTIONS(961), - [anon_sym_QMARK] = ACTIONS(963), - [anon_sym_u8] = ACTIONS(961), - [anon_sym_i8] = ACTIONS(961), - [anon_sym_u16] = ACTIONS(961), - [anon_sym_i16] = ACTIONS(961), - [anon_sym_u32] = ACTIONS(961), - [anon_sym_i32] = ACTIONS(961), - [anon_sym_u64] = ACTIONS(961), - [anon_sym_i64] = ACTIONS(961), - [anon_sym_u128] = ACTIONS(961), - [anon_sym_i128] = ACTIONS(961), - [anon_sym_isize] = ACTIONS(961), - [anon_sym_usize] = ACTIONS(961), - [anon_sym_f32] = ACTIONS(961), - [anon_sym_f64] = ACTIONS(961), - [anon_sym_bool] = ACTIONS(961), - [anon_sym_str] = ACTIONS(961), - [anon_sym_char] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(961), - [anon_sym_CARET] = ACTIONS(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(961), - [anon_sym_AMP_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(963), - [anon_sym_LT_LT] = ACTIONS(961), - [anon_sym_GT_GT] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(963), - [anon_sym_DASH_EQ] = ACTIONS(963), - [anon_sym_STAR_EQ] = ACTIONS(963), - [anon_sym_SLASH_EQ] = ACTIONS(963), - [anon_sym_PERCENT_EQ] = ACTIONS(963), - [anon_sym_CARET_EQ] = ACTIONS(963), - [anon_sym_AMP_EQ] = ACTIONS(963), - [anon_sym_PIPE_EQ] = ACTIONS(963), - [anon_sym_LT_LT_EQ] = ACTIONS(963), - [anon_sym_GT_GT_EQ] = ACTIONS(963), - [anon_sym_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(963), - [anon_sym_BANG_EQ] = ACTIONS(963), - [anon_sym_GT] = ACTIONS(961), - [anon_sym_LT] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(963), - [anon_sym_LT_EQ] = ACTIONS(963), - [anon_sym_AT] = ACTIONS(963), - [anon_sym__] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(961), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT_DOT] = ACTIONS(963), - [anon_sym_DOT_DOT_EQ] = ACTIONS(963), - [anon_sym_COMMA] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(963), - [anon_sym_DASH_GT] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(963), - [anon_sym_SQUOTE] = ACTIONS(961), - [anon_sym_as] = ACTIONS(961), - [anon_sym_async] = ACTIONS(961), - [anon_sym_await] = ACTIONS(961), - [anon_sym_break] = ACTIONS(961), - [anon_sym_const] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_default] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(961), - [anon_sym_fn] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_gen] = ACTIONS(961), - [anon_sym_if] = ACTIONS(961), - [anon_sym_impl] = ACTIONS(961), - [anon_sym_let] = ACTIONS(961), - [anon_sym_loop] = ACTIONS(961), - [anon_sym_match] = ACTIONS(961), - [anon_sym_mod] = ACTIONS(961), - [anon_sym_pub] = ACTIONS(961), - [anon_sym_return] = ACTIONS(961), - [anon_sym_static] = ACTIONS(961), - [anon_sym_struct] = ACTIONS(961), - [anon_sym_trait] = ACTIONS(961), - [anon_sym_type] = ACTIONS(961), - [anon_sym_union] = ACTIONS(961), - [anon_sym_unsafe] = ACTIONS(961), - [anon_sym_use] = ACTIONS(961), - [anon_sym_where] = ACTIONS(961), - [anon_sym_while] = ACTIONS(961), - [sym_mutable_specifier] = ACTIONS(961), - [sym_integer_literal] = ACTIONS(963), - [aux_sym_string_literal_token1] = ACTIONS(963), - [sym_char_literal] = ACTIONS(963), - [anon_sym_true] = ACTIONS(961), - [anon_sym_false] = ACTIONS(961), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(961), - [sym_super] = ACTIONS(961), - [sym_crate] = ACTIONS(961), - [sym_metavariable] = ACTIONS(963), - [sym__raw_string_literal_start] = ACTIONS(963), - [sym_float_literal] = ACTIONS(963), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_let] = ACTIONS(963), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, [163] = { [sym_line_comment] = STATE(163), @@ -35381,524 +35419,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(967), }, [164] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(164), [sym_block_comment] = STATE(164), - [sym_identifier] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_RBRACK] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_EQ_GT] = ACTIONS(971), - [anon_sym_COLON] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(969), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_STAR] = ACTIONS(969), - [anon_sym_QMARK] = ACTIONS(971), - [anon_sym_u8] = ACTIONS(969), - [anon_sym_i8] = ACTIONS(969), - [anon_sym_u16] = ACTIONS(969), - [anon_sym_i16] = ACTIONS(969), - [anon_sym_u32] = ACTIONS(969), - [anon_sym_i32] = ACTIONS(969), - [anon_sym_u64] = ACTIONS(969), - [anon_sym_i64] = ACTIONS(969), - [anon_sym_u128] = ACTIONS(969), - [anon_sym_i128] = ACTIONS(969), - [anon_sym_isize] = ACTIONS(969), - [anon_sym_usize] = ACTIONS(969), - [anon_sym_f32] = ACTIONS(969), - [anon_sym_f64] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(969), - [anon_sym_str] = ACTIONS(969), - [anon_sym_char] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_AMP] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(969), - [anon_sym_PLUS_EQ] = ACTIONS(971), - [anon_sym_DASH_EQ] = ACTIONS(971), - [anon_sym_STAR_EQ] = ACTIONS(971), - [anon_sym_SLASH_EQ] = ACTIONS(971), - [anon_sym_PERCENT_EQ] = ACTIONS(971), - [anon_sym_CARET_EQ] = ACTIONS(971), - [anon_sym_AMP_EQ] = ACTIONS(971), - [anon_sym_PIPE_EQ] = ACTIONS(971), - [anon_sym_LT_LT_EQ] = ACTIONS(971), - [anon_sym_GT_GT_EQ] = ACTIONS(971), - [anon_sym_EQ] = ACTIONS(969), - [anon_sym_EQ_EQ] = ACTIONS(971), - [anon_sym_BANG_EQ] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT_EQ] = ACTIONS(971), - [anon_sym_LT_EQ] = ACTIONS(971), - [anon_sym_AT] = ACTIONS(971), - [anon_sym__] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(971), - [anon_sym_DOT_DOT_EQ] = ACTIONS(971), - [anon_sym_COMMA] = ACTIONS(971), - [anon_sym_COLON_COLON] = ACTIONS(971), - [anon_sym_DASH_GT] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(971), - [anon_sym_SQUOTE] = ACTIONS(969), - [anon_sym_as] = ACTIONS(969), - [anon_sym_async] = ACTIONS(969), - [anon_sym_await] = ACTIONS(969), - [anon_sym_break] = ACTIONS(969), - [anon_sym_const] = ACTIONS(969), - [anon_sym_continue] = ACTIONS(969), - [anon_sym_default] = ACTIONS(969), - [anon_sym_enum] = ACTIONS(969), - [anon_sym_fn] = ACTIONS(969), - [anon_sym_for] = ACTIONS(969), - [anon_sym_gen] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_impl] = ACTIONS(969), - [anon_sym_let] = ACTIONS(969), - [anon_sym_loop] = ACTIONS(969), - [anon_sym_match] = ACTIONS(969), - [anon_sym_mod] = ACTIONS(969), - [anon_sym_pub] = ACTIONS(969), - [anon_sym_return] = ACTIONS(969), - [anon_sym_static] = ACTIONS(969), - [anon_sym_struct] = ACTIONS(969), - [anon_sym_trait] = ACTIONS(969), - [anon_sym_type] = ACTIONS(969), - [anon_sym_union] = ACTIONS(969), - [anon_sym_unsafe] = ACTIONS(969), - [anon_sym_use] = ACTIONS(969), - [anon_sym_where] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [sym_mutable_specifier] = ACTIONS(969), - [sym_integer_literal] = ACTIONS(971), - [aux_sym_string_literal_token1] = ACTIONS(971), - [sym_char_literal] = ACTIONS(971), - [anon_sym_true] = ACTIONS(969), - [anon_sym_false] = ACTIONS(969), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(969), - [sym_super] = ACTIONS(969), - [sym_crate] = ACTIONS(969), - [sym_metavariable] = ACTIONS(971), - [sym__raw_string_literal_start] = ACTIONS(971), - [sym_float_literal] = ACTIONS(971), - }, - [165] = { - [sym_line_comment] = STATE(165), - [sym_block_comment] = STATE(165), - [sym_identifier] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_RBRACK] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(973), - [anon_sym_i8] = ACTIONS(973), - [anon_sym_u16] = ACTIONS(973), - [anon_sym_i16] = ACTIONS(973), - [anon_sym_u32] = ACTIONS(973), - [anon_sym_i32] = ACTIONS(973), - [anon_sym_u64] = ACTIONS(973), - [anon_sym_i64] = ACTIONS(973), - [anon_sym_u128] = ACTIONS(973), - [anon_sym_i128] = ACTIONS(973), - [anon_sym_isize] = ACTIONS(973), - [anon_sym_usize] = ACTIONS(973), - [anon_sym_f32] = ACTIONS(973), - [anon_sym_f64] = ACTIONS(973), - [anon_sym_bool] = ACTIONS(973), - [anon_sym_str] = ACTIONS(973), - [anon_sym_char] = ACTIONS(973), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(973), - [anon_sym_PERCENT] = ACTIONS(973), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [anon_sym_LT_LT] = ACTIONS(973), - [anon_sym_GT_GT] = ACTIONS(973), - [anon_sym_PLUS_EQ] = ACTIONS(975), - [anon_sym_DASH_EQ] = ACTIONS(975), - [anon_sym_STAR_EQ] = ACTIONS(975), - [anon_sym_SLASH_EQ] = ACTIONS(975), - [anon_sym_PERCENT_EQ] = ACTIONS(975), - [anon_sym_CARET_EQ] = ACTIONS(975), - [anon_sym_AMP_EQ] = ACTIONS(975), - [anon_sym_PIPE_EQ] = ACTIONS(975), - [anon_sym_LT_LT_EQ] = ACTIONS(975), - [anon_sym_GT_GT_EQ] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(973), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT_EQ] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_AT] = ACTIONS(975), - [anon_sym__] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_DOT_DOT] = ACTIONS(973), - [anon_sym_DOT_DOT_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT_EQ] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_COLON_COLON] = ACTIONS(975), - [anon_sym_DASH_GT] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_SQUOTE] = ACTIONS(973), - [anon_sym_as] = ACTIONS(973), - [anon_sym_async] = ACTIONS(973), - [anon_sym_await] = ACTIONS(973), - [anon_sym_break] = ACTIONS(973), - [anon_sym_const] = ACTIONS(973), - [anon_sym_continue] = ACTIONS(973), - [anon_sym_default] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(973), - [anon_sym_fn] = ACTIONS(973), - [anon_sym_for] = ACTIONS(973), - [anon_sym_gen] = ACTIONS(973), - [anon_sym_if] = ACTIONS(973), - [anon_sym_impl] = ACTIONS(973), - [anon_sym_let] = ACTIONS(973), - [anon_sym_loop] = ACTIONS(973), - [anon_sym_match] = ACTIONS(973), - [anon_sym_mod] = ACTIONS(973), - [anon_sym_pub] = ACTIONS(973), - [anon_sym_return] = ACTIONS(973), - [anon_sym_static] = ACTIONS(973), - [anon_sym_struct] = ACTIONS(973), - [anon_sym_trait] = ACTIONS(973), - [anon_sym_type] = ACTIONS(973), - [anon_sym_union] = ACTIONS(973), - [anon_sym_unsafe] = ACTIONS(973), - [anon_sym_use] = ACTIONS(973), - [anon_sym_where] = ACTIONS(973), - [anon_sym_while] = ACTIONS(973), - [sym_mutable_specifier] = ACTIONS(973), - [sym_integer_literal] = ACTIONS(975), - [aux_sym_string_literal_token1] = ACTIONS(975), - [sym_char_literal] = ACTIONS(975), - [anon_sym_true] = ACTIONS(973), - [anon_sym_false] = ACTIONS(973), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(973), - [sym_super] = ACTIONS(973), - [sym_crate] = ACTIONS(973), - [sym_metavariable] = ACTIONS(975), - [sym__raw_string_literal_start] = ACTIONS(975), - [sym_float_literal] = ACTIONS(975), - }, - [166] = { - [sym_line_comment] = STATE(166), - [sym_block_comment] = STATE(166), - [sym_identifier] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_RBRACK] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_EQ_GT] = ACTIONS(979), - [anon_sym_COLON] = ACTIONS(977), - [anon_sym_DOLLAR] = ACTIONS(977), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_STAR] = ACTIONS(977), - [anon_sym_QMARK] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(977), - [anon_sym_i8] = ACTIONS(977), - [anon_sym_u16] = ACTIONS(977), - [anon_sym_i16] = ACTIONS(977), - [anon_sym_u32] = ACTIONS(977), - [anon_sym_i32] = ACTIONS(977), - [anon_sym_u64] = ACTIONS(977), - [anon_sym_i64] = ACTIONS(977), - [anon_sym_u128] = ACTIONS(977), - [anon_sym_i128] = ACTIONS(977), - [anon_sym_isize] = ACTIONS(977), - [anon_sym_usize] = ACTIONS(977), - [anon_sym_f32] = ACTIONS(977), - [anon_sym_f64] = ACTIONS(977), - [anon_sym_bool] = ACTIONS(977), - [anon_sym_str] = ACTIONS(977), - [anon_sym_char] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_PERCENT] = ACTIONS(977), - [anon_sym_CARET] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_AMP] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(977), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(977), - [anon_sym_PLUS_EQ] = ACTIONS(979), - [anon_sym_DASH_EQ] = ACTIONS(979), - [anon_sym_STAR_EQ] = ACTIONS(979), - [anon_sym_SLASH_EQ] = ACTIONS(979), - [anon_sym_PERCENT_EQ] = ACTIONS(979), - [anon_sym_CARET_EQ] = ACTIONS(979), - [anon_sym_AMP_EQ] = ACTIONS(979), - [anon_sym_PIPE_EQ] = ACTIONS(979), - [anon_sym_LT_LT_EQ] = ACTIONS(979), - [anon_sym_GT_GT_EQ] = ACTIONS(979), - [anon_sym_EQ] = ACTIONS(977), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_AT] = ACTIONS(979), - [anon_sym__] = ACTIONS(977), - [anon_sym_DOT] = ACTIONS(977), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_DOT_DOT_DOT] = ACTIONS(979), - [anon_sym_DOT_DOT_EQ] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(979), - [anon_sym_POUND] = ACTIONS(979), - [anon_sym_SQUOTE] = ACTIONS(977), - [anon_sym_as] = ACTIONS(977), - [anon_sym_async] = ACTIONS(977), - [anon_sym_await] = ACTIONS(977), - [anon_sym_break] = ACTIONS(977), - [anon_sym_const] = ACTIONS(977), - [anon_sym_continue] = ACTIONS(977), - [anon_sym_default] = ACTIONS(977), - [anon_sym_enum] = ACTIONS(977), - [anon_sym_fn] = ACTIONS(977), - [anon_sym_for] = ACTIONS(977), - [anon_sym_gen] = ACTIONS(977), - [anon_sym_if] = ACTIONS(977), - [anon_sym_impl] = ACTIONS(977), - [anon_sym_let] = ACTIONS(977), - [anon_sym_loop] = ACTIONS(977), - [anon_sym_match] = ACTIONS(977), - [anon_sym_mod] = ACTIONS(977), - [anon_sym_pub] = ACTIONS(977), - [anon_sym_return] = ACTIONS(977), - [anon_sym_static] = ACTIONS(977), - [anon_sym_struct] = ACTIONS(977), - [anon_sym_trait] = ACTIONS(977), - [anon_sym_type] = ACTIONS(977), - [anon_sym_union] = ACTIONS(977), - [anon_sym_unsafe] = ACTIONS(977), - [anon_sym_use] = ACTIONS(977), - [anon_sym_where] = ACTIONS(977), - [anon_sym_while] = ACTIONS(977), - [sym_mutable_specifier] = ACTIONS(977), - [sym_integer_literal] = ACTIONS(979), - [aux_sym_string_literal_token1] = ACTIONS(979), - [sym_char_literal] = ACTIONS(979), - [anon_sym_true] = ACTIONS(977), - [anon_sym_false] = ACTIONS(977), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(977), - [sym_super] = ACTIONS(977), - [sym_crate] = ACTIONS(977), - [sym_metavariable] = ACTIONS(979), - [sym__raw_string_literal_start] = ACTIONS(979), - [sym_float_literal] = ACTIONS(979), - }, - [167] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_let_condition] = STATE(2808), - [sym__let_chain] = STATE(2848), - [sym__condition] = STATE(2559), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(167), - [sym_block_comment] = STATE(167), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(915), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [168] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(168), - [sym_block_comment] = STATE(168), - [aux_sym_enum_variant_list_repeat1] = STATE(212), + [aux_sym_enum_variant_list_repeat1] = STATE(199), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(981), + [anon_sym_RPAREN] = ACTIONS(969), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -35960,62 +35534,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [169] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(169), - [sym_block_comment] = STATE(169), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [165] = { + [sym_line_comment] = STATE(165), + [sym_block_comment] = STATE(165), + [sym_identifier] = ACTIONS(971), + [anon_sym_SEMI] = ACTIONS(973), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_RBRACK] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_RBRACE] = ACTIONS(973), + [anon_sym_EQ_GT] = ACTIONS(973), + [anon_sym_COLON] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(971), + [anon_sym_STAR] = ACTIONS(971), + [anon_sym_QMARK] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(971), + [anon_sym_i8] = ACTIONS(971), + [anon_sym_u16] = ACTIONS(971), + [anon_sym_i16] = ACTIONS(971), + [anon_sym_u32] = ACTIONS(971), + [anon_sym_i32] = ACTIONS(971), + [anon_sym_u64] = ACTIONS(971), + [anon_sym_i64] = ACTIONS(971), + [anon_sym_u128] = ACTIONS(971), + [anon_sym_i128] = ACTIONS(971), + [anon_sym_isize] = ACTIONS(971), + [anon_sym_usize] = ACTIONS(971), + [anon_sym_f32] = ACTIONS(971), + [anon_sym_f64] = ACTIONS(971), + [anon_sym_bool] = ACTIONS(971), + [anon_sym_str] = ACTIONS(971), + [anon_sym_char] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(971), + [anon_sym_SLASH] = ACTIONS(971), + [anon_sym_PERCENT] = ACTIONS(971), + [anon_sym_CARET] = ACTIONS(971), + [anon_sym_BANG] = ACTIONS(971), + [anon_sym_AMP] = ACTIONS(971), + [anon_sym_PIPE] = ACTIONS(971), + [anon_sym_AMP_AMP] = ACTIONS(973), + [anon_sym_PIPE_PIPE] = ACTIONS(973), + [anon_sym_LT_LT] = ACTIONS(971), + [anon_sym_GT_GT] = ACTIONS(971), + [anon_sym_PLUS_EQ] = ACTIONS(973), + [anon_sym_DASH_EQ] = ACTIONS(973), + [anon_sym_STAR_EQ] = ACTIONS(973), + [anon_sym_SLASH_EQ] = ACTIONS(973), + [anon_sym_PERCENT_EQ] = ACTIONS(973), + [anon_sym_CARET_EQ] = ACTIONS(973), + [anon_sym_AMP_EQ] = ACTIONS(973), + [anon_sym_PIPE_EQ] = ACTIONS(973), + [anon_sym_LT_LT_EQ] = ACTIONS(973), + [anon_sym_GT_GT_EQ] = ACTIONS(973), + [anon_sym_EQ] = ACTIONS(971), + [anon_sym_EQ_EQ] = ACTIONS(973), + [anon_sym_BANG_EQ] = ACTIONS(973), + [anon_sym_GT] = ACTIONS(971), + [anon_sym_LT] = ACTIONS(971), + [anon_sym_GT_EQ] = ACTIONS(973), + [anon_sym_LT_EQ] = ACTIONS(973), + [anon_sym_AT] = ACTIONS(973), + [anon_sym__] = ACTIONS(971), + [anon_sym_DOT] = ACTIONS(971), + [anon_sym_DOT_DOT] = ACTIONS(971), + [anon_sym_DOT_DOT_DOT] = ACTIONS(973), + [anon_sym_DOT_DOT_EQ] = ACTIONS(973), + [anon_sym_COMMA] = ACTIONS(973), + [anon_sym_COLON_COLON] = ACTIONS(973), + [anon_sym_DASH_GT] = ACTIONS(973), + [anon_sym_POUND] = ACTIONS(973), + [anon_sym_SQUOTE] = ACTIONS(971), + [anon_sym_as] = ACTIONS(971), + [anon_sym_async] = ACTIONS(971), + [anon_sym_await] = ACTIONS(971), + [anon_sym_break] = ACTIONS(971), + [anon_sym_const] = ACTIONS(971), + [anon_sym_continue] = ACTIONS(971), + [anon_sym_default] = ACTIONS(971), + [anon_sym_enum] = ACTIONS(971), + [anon_sym_fn] = ACTIONS(971), + [anon_sym_for] = ACTIONS(971), + [anon_sym_gen] = ACTIONS(971), + [anon_sym_if] = ACTIONS(971), + [anon_sym_impl] = ACTIONS(971), + [anon_sym_let] = ACTIONS(971), + [anon_sym_loop] = ACTIONS(971), + [anon_sym_match] = ACTIONS(971), + [anon_sym_mod] = ACTIONS(971), + [anon_sym_pub] = ACTIONS(971), + [anon_sym_return] = ACTIONS(971), + [anon_sym_static] = ACTIONS(971), + [anon_sym_struct] = ACTIONS(971), + [anon_sym_trait] = ACTIONS(971), + [anon_sym_type] = ACTIONS(971), + [anon_sym_union] = ACTIONS(971), + [anon_sym_unsafe] = ACTIONS(971), + [anon_sym_use] = ACTIONS(971), + [anon_sym_where] = ACTIONS(971), + [anon_sym_while] = ACTIONS(971), + [sym_mutable_specifier] = ACTIONS(971), + [sym_integer_literal] = ACTIONS(973), + [aux_sym_string_literal_token1] = ACTIONS(973), + [sym_char_literal] = ACTIONS(973), + [anon_sym_true] = ACTIONS(971), + [anon_sym_false] = ACTIONS(971), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(971), + [sym_super] = ACTIONS(971), + [sym_crate] = ACTIONS(971), + [sym_metavariable] = ACTIONS(973), + [sym__raw_string_literal_start] = ACTIONS(973), + [sym_float_literal] = ACTIONS(973), + }, + [166] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(166), + [sym_block_comment] = STATE(166), + [aux_sym_enum_variant_list_repeat1] = STATE(199), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(983), + [anon_sym_RBRACK] = ACTIONS(975), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -36076,62 +35766,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [170] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(170), - [sym_block_comment] = STATE(170), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [167] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(167), + [sym_block_comment] = STATE(167), + [aux_sym_enum_variant_list_repeat1] = STATE(199), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(985), + [anon_sym_RBRACK] = ACTIONS(977), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -36192,62 +35882,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [171] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(171), - [sym_block_comment] = STATE(171), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [168] = { + [sym_line_comment] = STATE(168), + [sym_block_comment] = STATE(168), + [sym_identifier] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(981), + [anon_sym_RPAREN] = ACTIONS(981), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_RBRACK] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(981), + [anon_sym_RBRACE] = ACTIONS(981), + [anon_sym_EQ_GT] = ACTIONS(981), + [anon_sym_COLON] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_PLUS] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(979), + [anon_sym_i8] = ACTIONS(979), + [anon_sym_u16] = ACTIONS(979), + [anon_sym_i16] = ACTIONS(979), + [anon_sym_u32] = ACTIONS(979), + [anon_sym_i32] = ACTIONS(979), + [anon_sym_u64] = ACTIONS(979), + [anon_sym_i64] = ACTIONS(979), + [anon_sym_u128] = ACTIONS(979), + [anon_sym_i128] = ACTIONS(979), + [anon_sym_isize] = ACTIONS(979), + [anon_sym_usize] = ACTIONS(979), + [anon_sym_f32] = ACTIONS(979), + [anon_sym_f64] = ACTIONS(979), + [anon_sym_bool] = ACTIONS(979), + [anon_sym_str] = ACTIONS(979), + [anon_sym_char] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(979), + [anon_sym_SLASH] = ACTIONS(979), + [anon_sym_PERCENT] = ACTIONS(979), + [anon_sym_CARET] = ACTIONS(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_PLUS_EQ] = ACTIONS(981), + [anon_sym_DASH_EQ] = ACTIONS(981), + [anon_sym_STAR_EQ] = ACTIONS(981), + [anon_sym_SLASH_EQ] = ACTIONS(981), + [anon_sym_PERCENT_EQ] = ACTIONS(981), + [anon_sym_CARET_EQ] = ACTIONS(981), + [anon_sym_AMP_EQ] = ACTIONS(981), + [anon_sym_PIPE_EQ] = ACTIONS(981), + [anon_sym_LT_LT_EQ] = ACTIONS(981), + [anon_sym_GT_GT_EQ] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(979), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_AT] = ACTIONS(981), + [anon_sym__] = ACTIONS(979), + [anon_sym_DOT] = ACTIONS(979), + [anon_sym_DOT_DOT] = ACTIONS(979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(981), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_COLON_COLON] = ACTIONS(981), + [anon_sym_DASH_GT] = ACTIONS(981), + [anon_sym_POUND] = ACTIONS(981), + [anon_sym_SQUOTE] = ACTIONS(979), + [anon_sym_as] = ACTIONS(979), + [anon_sym_async] = ACTIONS(979), + [anon_sym_await] = ACTIONS(979), + [anon_sym_break] = ACTIONS(979), + [anon_sym_const] = ACTIONS(979), + [anon_sym_continue] = ACTIONS(979), + [anon_sym_default] = ACTIONS(979), + [anon_sym_enum] = ACTIONS(979), + [anon_sym_fn] = ACTIONS(979), + [anon_sym_for] = ACTIONS(979), + [anon_sym_gen] = ACTIONS(979), + [anon_sym_if] = ACTIONS(979), + [anon_sym_impl] = ACTIONS(979), + [anon_sym_let] = ACTIONS(979), + [anon_sym_loop] = ACTIONS(979), + [anon_sym_match] = ACTIONS(979), + [anon_sym_mod] = ACTIONS(979), + [anon_sym_pub] = ACTIONS(979), + [anon_sym_return] = ACTIONS(979), + [anon_sym_static] = ACTIONS(979), + [anon_sym_struct] = ACTIONS(979), + [anon_sym_trait] = ACTIONS(979), + [anon_sym_type] = ACTIONS(979), + [anon_sym_union] = ACTIONS(979), + [anon_sym_unsafe] = ACTIONS(979), + [anon_sym_use] = ACTIONS(979), + [anon_sym_where] = ACTIONS(979), + [anon_sym_while] = ACTIONS(979), + [sym_mutable_specifier] = ACTIONS(979), + [sym_integer_literal] = ACTIONS(981), + [aux_sym_string_literal_token1] = ACTIONS(981), + [sym_char_literal] = ACTIONS(981), + [anon_sym_true] = ACTIONS(979), + [anon_sym_false] = ACTIONS(979), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(979), + [sym_super] = ACTIONS(979), + [sym_crate] = ACTIONS(979), + [sym_metavariable] = ACTIONS(981), + [sym__raw_string_literal_start] = ACTIONS(981), + [sym_float_literal] = ACTIONS(981), + }, + [169] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(169), + [sym_block_comment] = STATE(169), + [aux_sym_enum_variant_list_repeat1] = STATE(199), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(987), + [anon_sym_RBRACK] = ACTIONS(983), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -36308,61 +36114,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [170] = { + [sym_line_comment] = STATE(170), + [sym_block_comment] = STATE(170), + [sym_identifier] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(987), + [anon_sym_RPAREN] = ACTIONS(987), + [anon_sym_LBRACK] = ACTIONS(987), + [anon_sym_RBRACK] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_RBRACE] = ACTIONS(987), + [anon_sym_EQ_GT] = ACTIONS(987), + [anon_sym_COLON] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(985), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(985), + [anon_sym_i8] = ACTIONS(985), + [anon_sym_u16] = ACTIONS(985), + [anon_sym_i16] = ACTIONS(985), + [anon_sym_u32] = ACTIONS(985), + [anon_sym_i32] = ACTIONS(985), + [anon_sym_u64] = ACTIONS(985), + [anon_sym_i64] = ACTIONS(985), + [anon_sym_u128] = ACTIONS(985), + [anon_sym_i128] = ACTIONS(985), + [anon_sym_isize] = ACTIONS(985), + [anon_sym_usize] = ACTIONS(985), + [anon_sym_f32] = ACTIONS(985), + [anon_sym_f64] = ACTIONS(985), + [anon_sym_bool] = ACTIONS(985), + [anon_sym_str] = ACTIONS(985), + [anon_sym_char] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_PERCENT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(987), + [anon_sym_PIPE_PIPE] = ACTIONS(987), + [anon_sym_LT_LT] = ACTIONS(985), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_PLUS_EQ] = ACTIONS(987), + [anon_sym_DASH_EQ] = ACTIONS(987), + [anon_sym_STAR_EQ] = ACTIONS(987), + [anon_sym_SLASH_EQ] = ACTIONS(987), + [anon_sym_PERCENT_EQ] = ACTIONS(987), + [anon_sym_CARET_EQ] = ACTIONS(987), + [anon_sym_AMP_EQ] = ACTIONS(987), + [anon_sym_PIPE_EQ] = ACTIONS(987), + [anon_sym_LT_LT_EQ] = ACTIONS(987), + [anon_sym_GT_GT_EQ] = ACTIONS(987), + [anon_sym_EQ] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(987), + [anon_sym_BANG_EQ] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(987), + [anon_sym_LT_EQ] = ACTIONS(987), + [anon_sym_AT] = ACTIONS(987), + [anon_sym__] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(987), + [anon_sym_DOT_DOT_EQ] = ACTIONS(987), + [anon_sym_COMMA] = ACTIONS(987), + [anon_sym_COLON_COLON] = ACTIONS(987), + [anon_sym_DASH_GT] = ACTIONS(987), + [anon_sym_POUND] = ACTIONS(987), + [anon_sym_SQUOTE] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_async] = ACTIONS(985), + [anon_sym_await] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_default] = ACTIONS(985), + [anon_sym_enum] = ACTIONS(985), + [anon_sym_fn] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_gen] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_impl] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_pub] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_static] = ACTIONS(985), + [anon_sym_struct] = ACTIONS(985), + [anon_sym_trait] = ACTIONS(985), + [anon_sym_type] = ACTIONS(985), + [anon_sym_union] = ACTIONS(985), + [anon_sym_unsafe] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_where] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [sym_mutable_specifier] = ACTIONS(985), + [sym_integer_literal] = ACTIONS(987), + [aux_sym_string_literal_token1] = ACTIONS(987), + [sym_char_literal] = ACTIONS(987), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(985), + [sym_super] = ACTIONS(985), + [sym_crate] = ACTIONS(985), + [sym_metavariable] = ACTIONS(987), + [sym__raw_string_literal_start] = ACTIONS(987), + [sym_float_literal] = ACTIONS(987), + }, + [171] = { + [sym_line_comment] = STATE(171), + [sym_block_comment] = STATE(171), + [sym_identifier] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_RPAREN] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_RBRACK] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_EQ_GT] = ACTIONS(991), + [anon_sym_COLON] = ACTIONS(989), + [anon_sym_DOLLAR] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_QMARK] = ACTIONS(991), + [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_DASH] = ACTIONS(989), + [anon_sym_SLASH] = ACTIONS(989), + [anon_sym_PERCENT] = ACTIONS(989), + [anon_sym_CARET] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(991), + [anon_sym_PIPE_PIPE] = ACTIONS(991), + [anon_sym_LT_LT] = ACTIONS(989), + [anon_sym_GT_GT] = ACTIONS(989), + [anon_sym_PLUS_EQ] = ACTIONS(991), + [anon_sym_DASH_EQ] = ACTIONS(991), + [anon_sym_STAR_EQ] = ACTIONS(991), + [anon_sym_SLASH_EQ] = ACTIONS(991), + [anon_sym_PERCENT_EQ] = ACTIONS(991), + [anon_sym_CARET_EQ] = ACTIONS(991), + [anon_sym_AMP_EQ] = ACTIONS(991), + [anon_sym_PIPE_EQ] = ACTIONS(991), + [anon_sym_LT_LT_EQ] = ACTIONS(991), + [anon_sym_GT_GT_EQ] = ACTIONS(991), + [anon_sym_EQ] = ACTIONS(989), + [anon_sym_EQ_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ] = ACTIONS(991), + [anon_sym_GT] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(989), + [anon_sym_GT_EQ] = ACTIONS(991), + [anon_sym_LT_EQ] = ACTIONS(991), + [anon_sym_AT] = ACTIONS(991), + [anon_sym__] = ACTIONS(989), + [anon_sym_DOT] = ACTIONS(989), + [anon_sym_DOT_DOT] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(991), + [anon_sym_DOT_DOT_EQ] = ACTIONS(991), + [anon_sym_COMMA] = ACTIONS(991), + [anon_sym_COLON_COLON] = ACTIONS(991), + [anon_sym_DASH_GT] = ACTIONS(991), + [anon_sym_POUND] = ACTIONS(991), + [anon_sym_SQUOTE] = ACTIONS(989), + [anon_sym_as] = ACTIONS(989), + [anon_sym_async] = ACTIONS(989), + [anon_sym_await] = ACTIONS(989), + [anon_sym_break] = ACTIONS(989), + [anon_sym_const] = ACTIONS(989), + [anon_sym_continue] = ACTIONS(989), + [anon_sym_default] = ACTIONS(989), + [anon_sym_enum] = ACTIONS(989), + [anon_sym_fn] = ACTIONS(989), + [anon_sym_for] = ACTIONS(989), + [anon_sym_gen] = ACTIONS(989), + [anon_sym_if] = ACTIONS(989), + [anon_sym_impl] = ACTIONS(989), + [anon_sym_let] = ACTIONS(989), + [anon_sym_loop] = ACTIONS(989), + [anon_sym_match] = ACTIONS(989), + [anon_sym_mod] = ACTIONS(989), + [anon_sym_pub] = ACTIONS(989), + [anon_sym_return] = ACTIONS(989), + [anon_sym_static] = ACTIONS(989), + [anon_sym_struct] = ACTIONS(989), + [anon_sym_trait] = ACTIONS(989), + [anon_sym_type] = ACTIONS(989), + [anon_sym_union] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_use] = ACTIONS(989), + [anon_sym_where] = ACTIONS(989), + [anon_sym_while] = ACTIONS(989), + [sym_mutable_specifier] = ACTIONS(989), + [sym_integer_literal] = ACTIONS(991), + [aux_sym_string_literal_token1] = ACTIONS(991), + [sym_char_literal] = ACTIONS(991), + [anon_sym_true] = ACTIONS(989), + [anon_sym_false] = ACTIONS(989), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(989), + [sym_super] = ACTIONS(989), + [sym_crate] = ACTIONS(989), + [sym_metavariable] = ACTIONS(991), + [sym__raw_string_literal_start] = ACTIONS(991), + [sym_float_literal] = ACTIONS(991), + }, [172] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(172), [sym_block_comment] = STATE(172), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [aux_sym_enum_variant_list_repeat1] = STATE(199), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(989), + [anon_sym_RPAREN] = ACTIONS(993), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -36427,38 +36465,386 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [173] = { [sym_line_comment] = STATE(173), [sym_block_comment] = STATE(173), - [aux_sym__non_special_token_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(991), + [sym_identifier] = ACTIONS(995), + [anon_sym_SEMI] = ACTIONS(997), + [anon_sym_LPAREN] = ACTIONS(997), + [anon_sym_RPAREN] = ACTIONS(997), + [anon_sym_LBRACK] = ACTIONS(997), + [anon_sym_RBRACK] = ACTIONS(997), + [anon_sym_LBRACE] = ACTIONS(997), + [anon_sym_RBRACE] = ACTIONS(997), + [anon_sym_EQ_GT] = ACTIONS(997), + [anon_sym_COLON] = ACTIONS(995), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_PLUS] = ACTIONS(995), + [anon_sym_STAR] = ACTIONS(995), + [anon_sym_QMARK] = ACTIONS(997), + [anon_sym_u8] = ACTIONS(995), + [anon_sym_i8] = ACTIONS(995), + [anon_sym_u16] = ACTIONS(995), + [anon_sym_i16] = ACTIONS(995), + [anon_sym_u32] = ACTIONS(995), + [anon_sym_i32] = ACTIONS(995), + [anon_sym_u64] = ACTIONS(995), + [anon_sym_i64] = ACTIONS(995), + [anon_sym_u128] = ACTIONS(995), + [anon_sym_i128] = ACTIONS(995), + [anon_sym_isize] = ACTIONS(995), + [anon_sym_usize] = ACTIONS(995), + [anon_sym_f32] = ACTIONS(995), + [anon_sym_f64] = ACTIONS(995), + [anon_sym_bool] = ACTIONS(995), + [anon_sym_str] = ACTIONS(995), + [anon_sym_char] = ACTIONS(995), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_SLASH] = ACTIONS(995), + [anon_sym_PERCENT] = ACTIONS(995), + [anon_sym_CARET] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(995), + [anon_sym_PIPE] = ACTIONS(995), + [anon_sym_AMP_AMP] = ACTIONS(997), + [anon_sym_PIPE_PIPE] = ACTIONS(997), + [anon_sym_LT_LT] = ACTIONS(995), + [anon_sym_GT_GT] = ACTIONS(995), + [anon_sym_PLUS_EQ] = ACTIONS(997), + [anon_sym_DASH_EQ] = ACTIONS(997), + [anon_sym_STAR_EQ] = ACTIONS(997), + [anon_sym_SLASH_EQ] = ACTIONS(997), + [anon_sym_PERCENT_EQ] = ACTIONS(997), + [anon_sym_CARET_EQ] = ACTIONS(997), + [anon_sym_AMP_EQ] = ACTIONS(997), + [anon_sym_PIPE_EQ] = ACTIONS(997), + [anon_sym_LT_LT_EQ] = ACTIONS(997), + [anon_sym_GT_GT_EQ] = ACTIONS(997), + [anon_sym_EQ] = ACTIONS(995), + [anon_sym_EQ_EQ] = ACTIONS(997), + [anon_sym_BANG_EQ] = ACTIONS(997), + [anon_sym_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(995), + [anon_sym_GT_EQ] = ACTIONS(997), + [anon_sym_LT_EQ] = ACTIONS(997), + [anon_sym_AT] = ACTIONS(997), + [anon_sym__] = ACTIONS(995), + [anon_sym_DOT] = ACTIONS(995), + [anon_sym_DOT_DOT] = ACTIONS(995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(997), + [anon_sym_DOT_DOT_EQ] = ACTIONS(997), + [anon_sym_COMMA] = ACTIONS(997), + [anon_sym_COLON_COLON] = ACTIONS(997), + [anon_sym_DASH_GT] = ACTIONS(997), + [anon_sym_POUND] = ACTIONS(997), + [anon_sym_SQUOTE] = ACTIONS(995), + [anon_sym_as] = ACTIONS(995), + [anon_sym_async] = ACTIONS(995), + [anon_sym_await] = ACTIONS(995), + [anon_sym_break] = ACTIONS(995), + [anon_sym_const] = ACTIONS(995), + [anon_sym_continue] = ACTIONS(995), + [anon_sym_default] = ACTIONS(995), + [anon_sym_enum] = ACTIONS(995), + [anon_sym_fn] = ACTIONS(995), + [anon_sym_for] = ACTIONS(995), + [anon_sym_gen] = ACTIONS(995), + [anon_sym_if] = ACTIONS(995), + [anon_sym_impl] = ACTIONS(995), + [anon_sym_let] = ACTIONS(995), + [anon_sym_loop] = ACTIONS(995), + [anon_sym_match] = ACTIONS(995), + [anon_sym_mod] = ACTIONS(995), + [anon_sym_pub] = ACTIONS(995), + [anon_sym_return] = ACTIONS(995), + [anon_sym_static] = ACTIONS(995), + [anon_sym_struct] = ACTIONS(995), + [anon_sym_trait] = ACTIONS(995), + [anon_sym_type] = ACTIONS(995), + [anon_sym_union] = ACTIONS(995), + [anon_sym_unsafe] = ACTIONS(995), + [anon_sym_use] = ACTIONS(995), + [anon_sym_where] = ACTIONS(995), + [anon_sym_while] = ACTIONS(995), + [sym_mutable_specifier] = ACTIONS(995), + [sym_integer_literal] = ACTIONS(997), + [aux_sym_string_literal_token1] = ACTIONS(997), + [sym_char_literal] = ACTIONS(997), + [anon_sym_true] = ACTIONS(995), + [anon_sym_false] = ACTIONS(995), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(995), + [sym_super] = ACTIONS(995), + [sym_crate] = ACTIONS(995), + [sym_metavariable] = ACTIONS(997), + [sym__raw_string_literal_start] = ACTIONS(997), + [sym_float_literal] = ACTIONS(997), + }, + [174] = { + [sym_line_comment] = STATE(174), + [sym_block_comment] = STATE(174), + [sym_identifier] = ACTIONS(999), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1001), + [anon_sym_RPAREN] = ACTIONS(1001), + [anon_sym_LBRACK] = ACTIONS(1001), + [anon_sym_RBRACK] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1001), + [anon_sym_RBRACE] = ACTIONS(1001), + [anon_sym_EQ_GT] = ACTIONS(1001), + [anon_sym_COLON] = ACTIONS(999), + [anon_sym_DOLLAR] = ACTIONS(999), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_STAR] = ACTIONS(999), + [anon_sym_QMARK] = ACTIONS(1001), + [anon_sym_u8] = ACTIONS(999), + [anon_sym_i8] = ACTIONS(999), + [anon_sym_u16] = ACTIONS(999), + [anon_sym_i16] = ACTIONS(999), + [anon_sym_u32] = ACTIONS(999), + [anon_sym_i32] = ACTIONS(999), + [anon_sym_u64] = ACTIONS(999), + [anon_sym_i64] = ACTIONS(999), + [anon_sym_u128] = ACTIONS(999), + [anon_sym_i128] = ACTIONS(999), + [anon_sym_isize] = ACTIONS(999), + [anon_sym_usize] = ACTIONS(999), + [anon_sym_f32] = ACTIONS(999), + [anon_sym_f64] = ACTIONS(999), + [anon_sym_bool] = ACTIONS(999), + [anon_sym_str] = ACTIONS(999), + [anon_sym_char] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(999), + [anon_sym_PERCENT] = ACTIONS(999), + [anon_sym_CARET] = ACTIONS(999), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(999), + [anon_sym_AMP_AMP] = ACTIONS(1001), + [anon_sym_PIPE_PIPE] = ACTIONS(1001), + [anon_sym_LT_LT] = ACTIONS(999), + [anon_sym_GT_GT] = ACTIONS(999), + [anon_sym_PLUS_EQ] = ACTIONS(1001), + [anon_sym_DASH_EQ] = ACTIONS(1001), + [anon_sym_STAR_EQ] = ACTIONS(1001), + [anon_sym_SLASH_EQ] = ACTIONS(1001), + [anon_sym_PERCENT_EQ] = ACTIONS(1001), + [anon_sym_CARET_EQ] = ACTIONS(1001), + [anon_sym_AMP_EQ] = ACTIONS(1001), + [anon_sym_PIPE_EQ] = ACTIONS(1001), + [anon_sym_LT_LT_EQ] = ACTIONS(1001), + [anon_sym_GT_GT_EQ] = ACTIONS(1001), + [anon_sym_EQ] = ACTIONS(999), + [anon_sym_EQ_EQ] = ACTIONS(1001), + [anon_sym_BANG_EQ] = ACTIONS(1001), + [anon_sym_GT] = ACTIONS(999), + [anon_sym_LT] = ACTIONS(999), + [anon_sym_GT_EQ] = ACTIONS(1001), + [anon_sym_LT_EQ] = ACTIONS(1001), + [anon_sym_AT] = ACTIONS(1001), + [anon_sym__] = ACTIONS(999), + [anon_sym_DOT] = ACTIONS(999), + [anon_sym_DOT_DOT] = ACTIONS(999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1001), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1001), + [anon_sym_COMMA] = ACTIONS(1001), + [anon_sym_COLON_COLON] = ACTIONS(1001), + [anon_sym_DASH_GT] = ACTIONS(1001), + [anon_sym_POUND] = ACTIONS(1001), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_as] = ACTIONS(999), + [anon_sym_async] = ACTIONS(999), + [anon_sym_await] = ACTIONS(999), + [anon_sym_break] = ACTIONS(999), + [anon_sym_const] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(999), + [anon_sym_default] = ACTIONS(999), + [anon_sym_enum] = ACTIONS(999), + [anon_sym_fn] = ACTIONS(999), + [anon_sym_for] = ACTIONS(999), + [anon_sym_gen] = ACTIONS(999), + [anon_sym_if] = ACTIONS(999), + [anon_sym_impl] = ACTIONS(999), + [anon_sym_let] = ACTIONS(999), + [anon_sym_loop] = ACTIONS(999), + [anon_sym_match] = ACTIONS(999), + [anon_sym_mod] = ACTIONS(999), + [anon_sym_pub] = ACTIONS(999), + [anon_sym_return] = ACTIONS(999), + [anon_sym_static] = ACTIONS(999), + [anon_sym_struct] = ACTIONS(999), + [anon_sym_trait] = ACTIONS(999), + [anon_sym_type] = ACTIONS(999), + [anon_sym_union] = ACTIONS(999), + [anon_sym_unsafe] = ACTIONS(999), + [anon_sym_use] = ACTIONS(999), + [anon_sym_where] = ACTIONS(999), + [anon_sym_while] = ACTIONS(999), + [sym_mutable_specifier] = ACTIONS(999), + [sym_integer_literal] = ACTIONS(1001), + [aux_sym_string_literal_token1] = ACTIONS(1001), + [sym_char_literal] = ACTIONS(1001), + [anon_sym_true] = ACTIONS(999), + [anon_sym_false] = ACTIONS(999), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(999), + [sym_super] = ACTIONS(999), + [sym_crate] = ACTIONS(999), + [sym_metavariable] = ACTIONS(1001), + [sym__raw_string_literal_start] = ACTIONS(1001), + [sym_float_literal] = ACTIONS(1001), + }, + [175] = { + [sym_line_comment] = STATE(175), + [sym_block_comment] = STATE(175), + [sym_identifier] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(879), + [anon_sym_LPAREN] = ACTIONS(879), + [anon_sym_RPAREN] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(879), + [anon_sym_RBRACK] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(879), + [anon_sym_RBRACE] = ACTIONS(879), + [anon_sym_EQ_GT] = ACTIONS(879), + [anon_sym_COLON] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_QMARK] = ACTIONS(879), + [anon_sym_u8] = ACTIONS(877), + [anon_sym_i8] = ACTIONS(877), + [anon_sym_u16] = ACTIONS(877), + [anon_sym_i16] = ACTIONS(877), + [anon_sym_u32] = ACTIONS(877), + [anon_sym_i32] = ACTIONS(877), + [anon_sym_u64] = ACTIONS(877), + [anon_sym_i64] = ACTIONS(877), + [anon_sym_u128] = ACTIONS(877), + [anon_sym_i128] = ACTIONS(877), + [anon_sym_isize] = ACTIONS(877), + [anon_sym_usize] = ACTIONS(877), + [anon_sym_f32] = ACTIONS(877), + [anon_sym_f64] = ACTIONS(877), + [anon_sym_bool] = ACTIONS(877), + [anon_sym_str] = ACTIONS(877), + [anon_sym_char] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_PERCENT] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [anon_sym_BANG] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_AMP_AMP] = ACTIONS(879), + [anon_sym_PIPE_PIPE] = ACTIONS(879), + [anon_sym_LT_LT] = ACTIONS(877), + [anon_sym_GT_GT] = ACTIONS(877), + [anon_sym_PLUS_EQ] = ACTIONS(879), + [anon_sym_DASH_EQ] = ACTIONS(879), + [anon_sym_STAR_EQ] = ACTIONS(879), + [anon_sym_SLASH_EQ] = ACTIONS(879), + [anon_sym_PERCENT_EQ] = ACTIONS(879), + [anon_sym_CARET_EQ] = ACTIONS(879), + [anon_sym_AMP_EQ] = ACTIONS(879), + [anon_sym_PIPE_EQ] = ACTIONS(879), + [anon_sym_LT_LT_EQ] = ACTIONS(879), + [anon_sym_GT_GT_EQ] = ACTIONS(879), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(879), + [anon_sym_BANG_EQ] = ACTIONS(879), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_LT] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(879), + [anon_sym_LT_EQ] = ACTIONS(879), + [anon_sym_AT] = ACTIONS(879), + [anon_sym__] = ACTIONS(877), + [anon_sym_DOT] = ACTIONS(877), + [anon_sym_DOT_DOT] = ACTIONS(877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(879), + [anon_sym_DOT_DOT_EQ] = ACTIONS(879), + [anon_sym_COMMA] = ACTIONS(879), + [anon_sym_COLON_COLON] = ACTIONS(879), + [anon_sym_DASH_GT] = ACTIONS(879), + [anon_sym_POUND] = ACTIONS(879), + [anon_sym_SQUOTE] = ACTIONS(877), + [anon_sym_as] = ACTIONS(877), + [anon_sym_async] = ACTIONS(877), + [anon_sym_await] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_default] = ACTIONS(877), + [anon_sym_enum] = ACTIONS(877), + [anon_sym_fn] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_gen] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_impl] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_pub] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_static] = ACTIONS(877), + [anon_sym_struct] = ACTIONS(877), + [anon_sym_trait] = ACTIONS(877), + [anon_sym_type] = ACTIONS(877), + [anon_sym_union] = ACTIONS(877), + [anon_sym_unsafe] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [sym_mutable_specifier] = ACTIONS(877), + [sym_integer_literal] = ACTIONS(879), + [aux_sym_string_literal_token1] = ACTIONS(879), + [sym_char_literal] = ACTIONS(879), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(877), + [sym_super] = ACTIONS(877), + [sym_crate] = ACTIONS(877), + [sym_metavariable] = ACTIONS(879), + [sym__raw_string_literal_start] = ACTIONS(879), + [sym_float_literal] = ACTIONS(879), + }, + [176] = { + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), + [aux_sym__non_special_token_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1003), [anon_sym_SEMI] = ACTIONS(672), - [anon_sym_LPAREN] = ACTIONS(993), - [anon_sym_RPAREN] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_RBRACK] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_RBRACE] = ACTIONS(993), + [anon_sym_LPAREN] = ACTIONS(1005), + [anon_sym_RPAREN] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1005), + [anon_sym_RBRACK] = ACTIONS(1005), + [anon_sym_LBRACE] = ACTIONS(1005), + [anon_sym_RBRACE] = ACTIONS(1005), [anon_sym_EQ_GT] = ACTIONS(672), [anon_sym_COLON] = ACTIONS(682), - [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(1005), [anon_sym_PLUS] = ACTIONS(682), [anon_sym_STAR] = ACTIONS(682), [anon_sym_QMARK] = ACTIONS(672), - [anon_sym_u8] = ACTIONS(991), - [anon_sym_i8] = ACTIONS(991), - [anon_sym_u16] = ACTIONS(991), - [anon_sym_i16] = ACTIONS(991), - [anon_sym_u32] = ACTIONS(991), - [anon_sym_i32] = ACTIONS(991), - [anon_sym_u64] = ACTIONS(991), - [anon_sym_i64] = ACTIONS(991), - [anon_sym_u128] = ACTIONS(991), - [anon_sym_i128] = ACTIONS(991), - [anon_sym_isize] = ACTIONS(991), - [anon_sym_usize] = ACTIONS(991), - [anon_sym_f32] = ACTIONS(991), - [anon_sym_f64] = ACTIONS(991), - [anon_sym_bool] = ACTIONS(991), - [anon_sym_str] = ACTIONS(991), - [anon_sym_char] = ACTIONS(991), + [anon_sym_u8] = ACTIONS(1003), + [anon_sym_i8] = ACTIONS(1003), + [anon_sym_u16] = ACTIONS(1003), + [anon_sym_i16] = ACTIONS(1003), + [anon_sym_u32] = ACTIONS(1003), + [anon_sym_i32] = ACTIONS(1003), + [anon_sym_u64] = ACTIONS(1003), + [anon_sym_i64] = ACTIONS(1003), + [anon_sym_u128] = ACTIONS(1003), + [anon_sym_i128] = ACTIONS(1003), + [anon_sym_isize] = ACTIONS(1003), + [anon_sym_usize] = ACTIONS(1003), + [anon_sym_f32] = ACTIONS(1003), + [anon_sym_f64] = ACTIONS(1003), + [anon_sym_bool] = ACTIONS(1003), + [anon_sym_str] = ACTIONS(1003), + [anon_sym_char] = ACTIONS(1003), [anon_sym_DASH] = ACTIONS(682), [anon_sym_SLASH] = ACTIONS(682), [anon_sym_PERCENT] = ACTIONS(682), @@ -36497,105 +36883,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(672), [anon_sym_DASH_GT] = ACTIONS(672), [anon_sym_POUND] = ACTIONS(672), - [anon_sym_SQUOTE] = ACTIONS(991), - [anon_sym_as] = ACTIONS(991), - [anon_sym_async] = ACTIONS(991), - [anon_sym_await] = ACTIONS(991), - [anon_sym_break] = ACTIONS(991), - [anon_sym_const] = ACTIONS(991), - [anon_sym_continue] = ACTIONS(991), - [anon_sym_default] = ACTIONS(991), - [anon_sym_enum] = ACTIONS(991), - [anon_sym_fn] = ACTIONS(991), - [anon_sym_for] = ACTIONS(991), - [anon_sym_gen] = ACTIONS(991), - [anon_sym_if] = ACTIONS(991), - [anon_sym_impl] = ACTIONS(991), - [anon_sym_let] = ACTIONS(991), - [anon_sym_loop] = ACTIONS(991), - [anon_sym_match] = ACTIONS(991), - [anon_sym_mod] = ACTIONS(991), - [anon_sym_pub] = ACTIONS(991), - [anon_sym_return] = ACTIONS(991), - [anon_sym_static] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(991), - [anon_sym_trait] = ACTIONS(991), - [anon_sym_type] = ACTIONS(991), - [anon_sym_union] = ACTIONS(991), - [anon_sym_unsafe] = ACTIONS(991), - [anon_sym_use] = ACTIONS(991), - [anon_sym_where] = ACTIONS(991), - [anon_sym_while] = ACTIONS(991), - [sym_mutable_specifier] = ACTIONS(991), - [sym_integer_literal] = ACTIONS(993), - [aux_sym_string_literal_token1] = ACTIONS(993), - [sym_char_literal] = ACTIONS(993), - [anon_sym_true] = ACTIONS(991), - [anon_sym_false] = ACTIONS(991), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(991), - [sym_super] = ACTIONS(991), - [sym_crate] = ACTIONS(991), - [sym__raw_string_literal_start] = ACTIONS(993), - [sym_float_literal] = ACTIONS(993), + [anon_sym_SQUOTE] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1003), + [anon_sym_async] = ACTIONS(1003), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_break] = ACTIONS(1003), + [anon_sym_const] = ACTIONS(1003), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_default] = ACTIONS(1003), + [anon_sym_enum] = ACTIONS(1003), + [anon_sym_fn] = ACTIONS(1003), + [anon_sym_for] = ACTIONS(1003), + [anon_sym_gen] = ACTIONS(1003), + [anon_sym_if] = ACTIONS(1003), + [anon_sym_impl] = ACTIONS(1003), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_loop] = ACTIONS(1003), + [anon_sym_match] = ACTIONS(1003), + [anon_sym_mod] = ACTIONS(1003), + [anon_sym_pub] = ACTIONS(1003), + [anon_sym_return] = ACTIONS(1003), + [anon_sym_static] = ACTIONS(1003), + [anon_sym_struct] = ACTIONS(1003), + [anon_sym_trait] = ACTIONS(1003), + [anon_sym_type] = ACTIONS(1003), + [anon_sym_union] = ACTIONS(1003), + [anon_sym_unsafe] = ACTIONS(1003), + [anon_sym_use] = ACTIONS(1003), + [anon_sym_where] = ACTIONS(1003), + [anon_sym_while] = ACTIONS(1003), + [sym_mutable_specifier] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(1005), + [aux_sym_string_literal_token1] = ACTIONS(1005), + [sym_char_literal] = ACTIONS(1005), + [anon_sym_true] = ACTIONS(1003), + [anon_sym_false] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1003), + [sym_super] = ACTIONS(1003), + [sym_crate] = ACTIONS(1003), + [sym__raw_string_literal_start] = ACTIONS(1005), + [sym_float_literal] = ACTIONS(1005), }, - [174] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(174), - [sym_block_comment] = STATE(174), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [177] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1715), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), + [aux_sym_enum_variant_list_repeat1] = STATE(214), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1007), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(995), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -36656,61 +37042,525 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [175] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(175), - [sym_block_comment] = STATE(175), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [178] = { + [sym_line_comment] = STATE(178), + [sym_block_comment] = STATE(178), + [sym_identifier] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_RBRACK] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_COLON] = ACTIONS(859), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_u8] = ACTIONS(859), + [anon_sym_i8] = ACTIONS(859), + [anon_sym_u16] = ACTIONS(859), + [anon_sym_i16] = ACTIONS(859), + [anon_sym_u32] = ACTIONS(859), + [anon_sym_i32] = ACTIONS(859), + [anon_sym_u64] = ACTIONS(859), + [anon_sym_i64] = ACTIONS(859), + [anon_sym_u128] = ACTIONS(859), + [anon_sym_i128] = ACTIONS(859), + [anon_sym_isize] = ACTIONS(859), + [anon_sym_usize] = ACTIONS(859), + [anon_sym_f32] = ACTIONS(859), + [anon_sym_f64] = ACTIONS(859), + [anon_sym_bool] = ACTIONS(859), + [anon_sym_str] = ACTIONS(859), + [anon_sym_char] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_PLUS_EQ] = ACTIONS(861), + [anon_sym_DASH_EQ] = ACTIONS(861), + [anon_sym_STAR_EQ] = ACTIONS(861), + [anon_sym_SLASH_EQ] = ACTIONS(861), + [anon_sym_PERCENT_EQ] = ACTIONS(861), + [anon_sym_CARET_EQ] = ACTIONS(861), + [anon_sym_AMP_EQ] = ACTIONS(861), + [anon_sym_PIPE_EQ] = ACTIONS(861), + [anon_sym_LT_LT_EQ] = ACTIONS(861), + [anon_sym_GT_GT_EQ] = ACTIONS(861), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(861), + [anon_sym__] = ACTIONS(859), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_DOT_DOT] = ACTIONS(859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(861), + [anon_sym_COLON_COLON] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [anon_sym_POUND] = ACTIONS(861), + [anon_sym_SQUOTE] = ACTIONS(859), + [anon_sym_as] = ACTIONS(859), + [anon_sym_async] = ACTIONS(859), + [anon_sym_await] = ACTIONS(859), + [anon_sym_break] = ACTIONS(859), + [anon_sym_const] = ACTIONS(859), + [anon_sym_continue] = ACTIONS(859), + [anon_sym_default] = ACTIONS(859), + [anon_sym_enum] = ACTIONS(859), + [anon_sym_fn] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_gen] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_impl] = ACTIONS(859), + [anon_sym_let] = ACTIONS(859), + [anon_sym_loop] = ACTIONS(859), + [anon_sym_match] = ACTIONS(859), + [anon_sym_mod] = ACTIONS(859), + [anon_sym_pub] = ACTIONS(859), + [anon_sym_return] = ACTIONS(859), + [anon_sym_static] = ACTIONS(859), + [anon_sym_struct] = ACTIONS(859), + [anon_sym_trait] = ACTIONS(859), + [anon_sym_type] = ACTIONS(859), + [anon_sym_union] = ACTIONS(859), + [anon_sym_unsafe] = ACTIONS(859), + [anon_sym_use] = ACTIONS(859), + [anon_sym_where] = ACTIONS(859), + [anon_sym_while] = ACTIONS(859), + [sym_mutable_specifier] = ACTIONS(859), + [sym_integer_literal] = ACTIONS(861), + [aux_sym_string_literal_token1] = ACTIONS(861), + [sym_char_literal] = ACTIONS(861), + [anon_sym_true] = ACTIONS(859), + [anon_sym_false] = ACTIONS(859), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(859), + [sym_super] = ACTIONS(859), + [sym_crate] = ACTIONS(859), + [sym_metavariable] = ACTIONS(861), + [sym__raw_string_literal_start] = ACTIONS(861), + [sym_float_literal] = ACTIONS(861), + }, + [179] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1844), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_let_condition] = STATE(2945), + [sym__let_chain] = STATE(2946), + [sym__condition] = STATE(2634), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(179), + [sym_block_comment] = STATE(179), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(909), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(503), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [180] = { + [sym_line_comment] = STATE(180), + [sym_block_comment] = STATE(180), + [sym_identifier] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_RBRACK] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_EQ_GT] = ACTIONS(861), + [anon_sym_COLON] = ACTIONS(1009), + [anon_sym_DOLLAR] = ACTIONS(859), + [anon_sym_PLUS] = ACTIONS(859), + [anon_sym_STAR] = ACTIONS(859), + [anon_sym_QMARK] = ACTIONS(861), + [anon_sym_u8] = ACTIONS(859), + [anon_sym_i8] = ACTIONS(859), + [anon_sym_u16] = ACTIONS(859), + [anon_sym_i16] = ACTIONS(859), + [anon_sym_u32] = ACTIONS(859), + [anon_sym_i32] = ACTIONS(859), + [anon_sym_u64] = ACTIONS(859), + [anon_sym_i64] = ACTIONS(859), + [anon_sym_u128] = ACTIONS(859), + [anon_sym_i128] = ACTIONS(859), + [anon_sym_isize] = ACTIONS(859), + [anon_sym_usize] = ACTIONS(859), + [anon_sym_f32] = ACTIONS(859), + [anon_sym_f64] = ACTIONS(859), + [anon_sym_bool] = ACTIONS(859), + [anon_sym_str] = ACTIONS(859), + [anon_sym_char] = ACTIONS(859), + [anon_sym_DASH] = ACTIONS(859), + [anon_sym_SLASH] = ACTIONS(859), + [anon_sym_PERCENT] = ACTIONS(859), + [anon_sym_CARET] = ACTIONS(859), + [anon_sym_BANG] = ACTIONS(859), + [anon_sym_AMP] = ACTIONS(859), + [anon_sym_PIPE] = ACTIONS(859), + [anon_sym_AMP_AMP] = ACTIONS(861), + [anon_sym_PIPE_PIPE] = ACTIONS(861), + [anon_sym_LT_LT] = ACTIONS(859), + [anon_sym_GT_GT] = ACTIONS(859), + [anon_sym_PLUS_EQ] = ACTIONS(861), + [anon_sym_DASH_EQ] = ACTIONS(861), + [anon_sym_STAR_EQ] = ACTIONS(861), + [anon_sym_SLASH_EQ] = ACTIONS(861), + [anon_sym_PERCENT_EQ] = ACTIONS(861), + [anon_sym_CARET_EQ] = ACTIONS(861), + [anon_sym_AMP_EQ] = ACTIONS(861), + [anon_sym_PIPE_EQ] = ACTIONS(861), + [anon_sym_LT_LT_EQ] = ACTIONS(861), + [anon_sym_GT_GT_EQ] = ACTIONS(861), + [anon_sym_EQ] = ACTIONS(859), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_GT] = ACTIONS(859), + [anon_sym_LT] = ACTIONS(859), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_AT] = ACTIONS(861), + [anon_sym__] = ACTIONS(859), + [anon_sym_DOT] = ACTIONS(859), + [anon_sym_DOT_DOT] = ACTIONS(859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(861), + [anon_sym_COMMA] = ACTIONS(861), + [anon_sym_COLON_COLON] = ACTIONS(861), + [anon_sym_DASH_GT] = ACTIONS(861), + [anon_sym_POUND] = ACTIONS(861), + [anon_sym_SQUOTE] = ACTIONS(859), + [anon_sym_as] = ACTIONS(859), + [anon_sym_async] = ACTIONS(859), + [anon_sym_await] = ACTIONS(859), + [anon_sym_break] = ACTIONS(859), + [anon_sym_const] = ACTIONS(859), + [anon_sym_continue] = ACTIONS(859), + [anon_sym_default] = ACTIONS(859), + [anon_sym_enum] = ACTIONS(859), + [anon_sym_fn] = ACTIONS(859), + [anon_sym_for] = ACTIONS(859), + [anon_sym_gen] = ACTIONS(859), + [anon_sym_if] = ACTIONS(859), + [anon_sym_impl] = ACTIONS(859), + [anon_sym_let] = ACTIONS(859), + [anon_sym_loop] = ACTIONS(859), + [anon_sym_match] = ACTIONS(859), + [anon_sym_mod] = ACTIONS(859), + [anon_sym_pub] = ACTIONS(859), + [anon_sym_return] = ACTIONS(859), + [anon_sym_static] = ACTIONS(859), + [anon_sym_struct] = ACTIONS(859), + [anon_sym_trait] = ACTIONS(859), + [anon_sym_type] = ACTIONS(859), + [anon_sym_union] = ACTIONS(859), + [anon_sym_unsafe] = ACTIONS(859), + [anon_sym_use] = ACTIONS(859), + [anon_sym_where] = ACTIONS(859), + [anon_sym_while] = ACTIONS(859), + [sym_mutable_specifier] = ACTIONS(859), + [sym_integer_literal] = ACTIONS(861), + [aux_sym_string_literal_token1] = ACTIONS(861), + [sym_char_literal] = ACTIONS(861), + [anon_sym_true] = ACTIONS(859), + [anon_sym_false] = ACTIONS(859), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(859), + [sym_super] = ACTIONS(859), + [sym_crate] = ACTIONS(859), + [sym_metavariable] = ACTIONS(861), + [sym__raw_string_literal_start] = ACTIONS(861), + [sym_float_literal] = ACTIONS(861), + }, + [181] = { + [sym_line_comment] = STATE(181), + [sym_block_comment] = STATE(181), + [sym_identifier] = ACTIONS(1011), + [anon_sym_SEMI] = ACTIONS(1013), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_RPAREN] = ACTIONS(1013), + [anon_sym_LBRACK] = ACTIONS(1013), + [anon_sym_RBRACK] = ACTIONS(1013), + [anon_sym_LBRACE] = ACTIONS(1013), + [anon_sym_RBRACE] = ACTIONS(1013), + [anon_sym_EQ_GT] = ACTIONS(1013), + [anon_sym_COLON] = ACTIONS(1011), + [anon_sym_DOLLAR] = ACTIONS(1011), + [anon_sym_PLUS] = ACTIONS(1011), + [anon_sym_STAR] = ACTIONS(1011), + [anon_sym_QMARK] = ACTIONS(1013), + [anon_sym_u8] = ACTIONS(1011), + [anon_sym_i8] = ACTIONS(1011), + [anon_sym_u16] = ACTIONS(1011), + [anon_sym_i16] = ACTIONS(1011), + [anon_sym_u32] = ACTIONS(1011), + [anon_sym_i32] = ACTIONS(1011), + [anon_sym_u64] = ACTIONS(1011), + [anon_sym_i64] = ACTIONS(1011), + [anon_sym_u128] = ACTIONS(1011), + [anon_sym_i128] = ACTIONS(1011), + [anon_sym_isize] = ACTIONS(1011), + [anon_sym_usize] = ACTIONS(1011), + [anon_sym_f32] = ACTIONS(1011), + [anon_sym_f64] = ACTIONS(1011), + [anon_sym_bool] = ACTIONS(1011), + [anon_sym_str] = ACTIONS(1011), + [anon_sym_char] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1011), + [anon_sym_SLASH] = ACTIONS(1011), + [anon_sym_PERCENT] = ACTIONS(1011), + [anon_sym_CARET] = ACTIONS(1011), + [anon_sym_BANG] = ACTIONS(1011), + [anon_sym_AMP] = ACTIONS(1011), + [anon_sym_PIPE] = ACTIONS(1011), + [anon_sym_AMP_AMP] = ACTIONS(1013), + [anon_sym_PIPE_PIPE] = ACTIONS(1013), + [anon_sym_LT_LT] = ACTIONS(1011), + [anon_sym_GT_GT] = ACTIONS(1011), + [anon_sym_PLUS_EQ] = ACTIONS(1013), + [anon_sym_DASH_EQ] = ACTIONS(1013), + [anon_sym_STAR_EQ] = ACTIONS(1013), + [anon_sym_SLASH_EQ] = ACTIONS(1013), + [anon_sym_PERCENT_EQ] = ACTIONS(1013), + [anon_sym_CARET_EQ] = ACTIONS(1013), + [anon_sym_AMP_EQ] = ACTIONS(1013), + [anon_sym_PIPE_EQ] = ACTIONS(1013), + [anon_sym_LT_LT_EQ] = ACTIONS(1013), + [anon_sym_GT_GT_EQ] = ACTIONS(1013), + [anon_sym_EQ] = ACTIONS(1011), + [anon_sym_EQ_EQ] = ACTIONS(1013), + [anon_sym_BANG_EQ] = ACTIONS(1013), + [anon_sym_GT] = ACTIONS(1011), + [anon_sym_LT] = ACTIONS(1011), + [anon_sym_GT_EQ] = ACTIONS(1013), + [anon_sym_LT_EQ] = ACTIONS(1013), + [anon_sym_AT] = ACTIONS(1013), + [anon_sym__] = ACTIONS(1011), + [anon_sym_DOT] = ACTIONS(1011), + [anon_sym_DOT_DOT] = ACTIONS(1011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1013), + [anon_sym_COMMA] = ACTIONS(1013), + [anon_sym_COLON_COLON] = ACTIONS(1013), + [anon_sym_DASH_GT] = ACTIONS(1013), + [anon_sym_POUND] = ACTIONS(1013), + [anon_sym_SQUOTE] = ACTIONS(1011), + [anon_sym_as] = ACTIONS(1011), + [anon_sym_async] = ACTIONS(1011), + [anon_sym_await] = ACTIONS(1011), + [anon_sym_break] = ACTIONS(1011), + [anon_sym_const] = ACTIONS(1011), + [anon_sym_continue] = ACTIONS(1011), + [anon_sym_default] = ACTIONS(1011), + [anon_sym_enum] = ACTIONS(1011), + [anon_sym_fn] = ACTIONS(1011), + [anon_sym_for] = ACTIONS(1011), + [anon_sym_gen] = ACTIONS(1011), + [anon_sym_if] = ACTIONS(1011), + [anon_sym_impl] = ACTIONS(1011), + [anon_sym_let] = ACTIONS(1011), + [anon_sym_loop] = ACTIONS(1011), + [anon_sym_match] = ACTIONS(1011), + [anon_sym_mod] = ACTIONS(1011), + [anon_sym_pub] = ACTIONS(1011), + [anon_sym_return] = ACTIONS(1011), + [anon_sym_static] = ACTIONS(1011), + [anon_sym_struct] = ACTIONS(1011), + [anon_sym_trait] = ACTIONS(1011), + [anon_sym_type] = ACTIONS(1011), + [anon_sym_union] = ACTIONS(1011), + [anon_sym_unsafe] = ACTIONS(1011), + [anon_sym_use] = ACTIONS(1011), + [anon_sym_where] = ACTIONS(1011), + [anon_sym_while] = ACTIONS(1011), + [sym_mutable_specifier] = ACTIONS(1011), + [sym_integer_literal] = ACTIONS(1013), + [aux_sym_string_literal_token1] = ACTIONS(1013), + [sym_char_literal] = ACTIONS(1013), + [anon_sym_true] = ACTIONS(1011), + [anon_sym_false] = ACTIONS(1011), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1011), + [sym_super] = ACTIONS(1011), + [sym_crate] = ACTIONS(1011), + [sym_metavariable] = ACTIONS(1013), + [sym__raw_string_literal_start] = ACTIONS(1013), + [sym_float_literal] = ACTIONS(1013), + }, + [182] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(182), + [sym_block_comment] = STATE(182), + [aux_sym_enum_variant_list_repeat1] = STATE(199), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(997), + [anon_sym_RPAREN] = ACTIONS(1015), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -36772,62 +37622,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [176] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(176), - [sym_block_comment] = STATE(176), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [183] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(183), + [sym_block_comment] = STATE(183), + [aux_sym_enum_variant_list_repeat1] = STATE(199), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(999), + [anon_sym_RBRACK] = ACTIONS(1017), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -36888,177 +37738,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [177] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(177), - [sym_block_comment] = STATE(177), - [aux_sym_enum_variant_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(744), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [184] = { + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [sym_identifier] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_RPAREN] = ACTIONS(1021), + [anon_sym_LBRACK] = ACTIONS(1021), + [anon_sym_RBRACK] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_EQ_GT] = ACTIONS(1021), + [anon_sym_COLON] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_QMARK] = ACTIONS(1021), + [anon_sym_u8] = ACTIONS(1019), + [anon_sym_i8] = ACTIONS(1019), + [anon_sym_u16] = ACTIONS(1019), + [anon_sym_i16] = ACTIONS(1019), + [anon_sym_u32] = ACTIONS(1019), + [anon_sym_i32] = ACTIONS(1019), + [anon_sym_u64] = ACTIONS(1019), + [anon_sym_i64] = ACTIONS(1019), + [anon_sym_u128] = ACTIONS(1019), + [anon_sym_i128] = ACTIONS(1019), + [anon_sym_isize] = ACTIONS(1019), + [anon_sym_usize] = ACTIONS(1019), + [anon_sym_f32] = ACTIONS(1019), + [anon_sym_f64] = ACTIONS(1019), + [anon_sym_bool] = ACTIONS(1019), + [anon_sym_str] = ACTIONS(1019), + [anon_sym_char] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PERCENT] = ACTIONS(1019), + [anon_sym_CARET] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_PIPE] = ACTIONS(1019), + [anon_sym_AMP_AMP] = ACTIONS(1021), + [anon_sym_PIPE_PIPE] = ACTIONS(1021), + [anon_sym_LT_LT] = ACTIONS(1019), + [anon_sym_GT_GT] = ACTIONS(1019), + [anon_sym_PLUS_EQ] = ACTIONS(1021), + [anon_sym_DASH_EQ] = ACTIONS(1021), + [anon_sym_STAR_EQ] = ACTIONS(1021), + [anon_sym_SLASH_EQ] = ACTIONS(1021), + [anon_sym_PERCENT_EQ] = ACTIONS(1021), + [anon_sym_CARET_EQ] = ACTIONS(1021), + [anon_sym_AMP_EQ] = ACTIONS(1021), + [anon_sym_PIPE_EQ] = ACTIONS(1021), + [anon_sym_LT_LT_EQ] = ACTIONS(1021), + [anon_sym_GT_GT_EQ] = ACTIONS(1021), + [anon_sym_EQ] = ACTIONS(1019), + [anon_sym_EQ_EQ] = ACTIONS(1021), + [anon_sym_BANG_EQ] = ACTIONS(1021), + [anon_sym_GT] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(1019), + [anon_sym_GT_EQ] = ACTIONS(1021), + [anon_sym_LT_EQ] = ACTIONS(1021), + [anon_sym_AT] = ACTIONS(1021), + [anon_sym__] = ACTIONS(1019), + [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_DOT_DOT] = ACTIONS(1019), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1021), + [anon_sym_COMMA] = ACTIONS(1021), + [anon_sym_COLON_COLON] = ACTIONS(1021), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(1021), + [anon_sym_SQUOTE] = ACTIONS(1019), + [anon_sym_as] = ACTIONS(1019), + [anon_sym_async] = ACTIONS(1019), + [anon_sym_await] = ACTIONS(1019), + [anon_sym_break] = ACTIONS(1019), + [anon_sym_const] = ACTIONS(1019), + [anon_sym_continue] = ACTIONS(1019), + [anon_sym_default] = ACTIONS(1019), + [anon_sym_enum] = ACTIONS(1019), + [anon_sym_fn] = ACTIONS(1019), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_gen] = ACTIONS(1019), + [anon_sym_if] = ACTIONS(1019), + [anon_sym_impl] = ACTIONS(1019), + [anon_sym_let] = ACTIONS(1019), + [anon_sym_loop] = ACTIONS(1019), + [anon_sym_match] = ACTIONS(1019), + [anon_sym_mod] = ACTIONS(1019), + [anon_sym_pub] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(1019), + [anon_sym_static] = ACTIONS(1019), + [anon_sym_struct] = ACTIONS(1019), + [anon_sym_trait] = ACTIONS(1019), + [anon_sym_type] = ACTIONS(1019), + [anon_sym_union] = ACTIONS(1019), + [anon_sym_unsafe] = ACTIONS(1019), + [anon_sym_use] = ACTIONS(1019), + [anon_sym_where] = ACTIONS(1019), + [anon_sym_while] = ACTIONS(1019), + [sym_mutable_specifier] = ACTIONS(1019), + [sym_integer_literal] = ACTIONS(1021), + [aux_sym_string_literal_token1] = ACTIONS(1021), + [sym_char_literal] = ACTIONS(1021), + [anon_sym_true] = ACTIONS(1019), + [anon_sym_false] = ACTIONS(1019), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1019), + [sym_super] = ACTIONS(1019), + [sym_crate] = ACTIONS(1019), + [sym_metavariable] = ACTIONS(1021), + [sym__raw_string_literal_start] = ACTIONS(1021), + [sym_float_literal] = ACTIONS(1021), }, - [178] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(178), - [sym_block_comment] = STATE(178), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [185] = { + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [sym_identifier] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1025), + [anon_sym_LPAREN] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(1025), + [anon_sym_LBRACK] = ACTIONS(1025), + [anon_sym_RBRACK] = ACTIONS(1025), + [anon_sym_LBRACE] = ACTIONS(1025), + [anon_sym_RBRACE] = ACTIONS(1025), + [anon_sym_EQ_GT] = ACTIONS(1025), + [anon_sym_COLON] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1023), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_QMARK] = ACTIONS(1025), + [anon_sym_u8] = ACTIONS(1023), + [anon_sym_i8] = ACTIONS(1023), + [anon_sym_u16] = ACTIONS(1023), + [anon_sym_i16] = ACTIONS(1023), + [anon_sym_u32] = ACTIONS(1023), + [anon_sym_i32] = ACTIONS(1023), + [anon_sym_u64] = ACTIONS(1023), + [anon_sym_i64] = ACTIONS(1023), + [anon_sym_u128] = ACTIONS(1023), + [anon_sym_i128] = ACTIONS(1023), + [anon_sym_isize] = ACTIONS(1023), + [anon_sym_usize] = ACTIONS(1023), + [anon_sym_f32] = ACTIONS(1023), + [anon_sym_f64] = ACTIONS(1023), + [anon_sym_bool] = ACTIONS(1023), + [anon_sym_str] = ACTIONS(1023), + [anon_sym_char] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1023), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_PERCENT] = ACTIONS(1023), + [anon_sym_CARET] = ACTIONS(1023), + [anon_sym_BANG] = ACTIONS(1023), + [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_AMP_AMP] = ACTIONS(1025), + [anon_sym_PIPE_PIPE] = ACTIONS(1025), + [anon_sym_LT_LT] = ACTIONS(1023), + [anon_sym_GT_GT] = ACTIONS(1023), + [anon_sym_PLUS_EQ] = ACTIONS(1025), + [anon_sym_DASH_EQ] = ACTIONS(1025), + [anon_sym_STAR_EQ] = ACTIONS(1025), + [anon_sym_SLASH_EQ] = ACTIONS(1025), + [anon_sym_PERCENT_EQ] = ACTIONS(1025), + [anon_sym_CARET_EQ] = ACTIONS(1025), + [anon_sym_AMP_EQ] = ACTIONS(1025), + [anon_sym_PIPE_EQ] = ACTIONS(1025), + [anon_sym_LT_LT_EQ] = ACTIONS(1025), + [anon_sym_GT_GT_EQ] = ACTIONS(1025), + [anon_sym_EQ] = ACTIONS(1023), + [anon_sym_EQ_EQ] = ACTIONS(1025), + [anon_sym_BANG_EQ] = ACTIONS(1025), + [anon_sym_GT] = ACTIONS(1023), + [anon_sym_LT] = ACTIONS(1023), + [anon_sym_GT_EQ] = ACTIONS(1025), + [anon_sym_LT_EQ] = ACTIONS(1025), + [anon_sym_AT] = ACTIONS(1025), + [anon_sym__] = ACTIONS(1023), + [anon_sym_DOT] = ACTIONS(1023), + [anon_sym_DOT_DOT] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1025), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1025), + [anon_sym_COMMA] = ACTIONS(1025), + [anon_sym_COLON_COLON] = ACTIONS(1025), + [anon_sym_DASH_GT] = ACTIONS(1025), + [anon_sym_POUND] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1023), + [anon_sym_as] = ACTIONS(1023), + [anon_sym_async] = ACTIONS(1023), + [anon_sym_await] = ACTIONS(1023), + [anon_sym_break] = ACTIONS(1023), + [anon_sym_const] = ACTIONS(1023), + [anon_sym_continue] = ACTIONS(1023), + [anon_sym_default] = ACTIONS(1023), + [anon_sym_enum] = ACTIONS(1023), + [anon_sym_fn] = ACTIONS(1023), + [anon_sym_for] = ACTIONS(1023), + [anon_sym_gen] = ACTIONS(1023), + [anon_sym_if] = ACTIONS(1023), + [anon_sym_impl] = ACTIONS(1023), + [anon_sym_let] = ACTIONS(1023), + [anon_sym_loop] = ACTIONS(1023), + [anon_sym_match] = ACTIONS(1023), + [anon_sym_mod] = ACTIONS(1023), + [anon_sym_pub] = ACTIONS(1023), + [anon_sym_return] = ACTIONS(1023), + [anon_sym_static] = ACTIONS(1023), + [anon_sym_struct] = ACTIONS(1023), + [anon_sym_trait] = ACTIONS(1023), + [anon_sym_type] = ACTIONS(1023), + [anon_sym_union] = ACTIONS(1023), + [anon_sym_unsafe] = ACTIONS(1023), + [anon_sym_use] = ACTIONS(1023), + [anon_sym_where] = ACTIONS(1023), + [anon_sym_while] = ACTIONS(1023), + [sym_mutable_specifier] = ACTIONS(1023), + [sym_integer_literal] = ACTIONS(1025), + [aux_sym_string_literal_token1] = ACTIONS(1025), + [sym_char_literal] = ACTIONS(1025), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1023), + [sym_super] = ACTIONS(1023), + [sym_crate] = ACTIONS(1023), + [sym_metavariable] = ACTIONS(1025), + [sym__raw_string_literal_start] = ACTIONS(1025), + [sym_float_literal] = ACTIONS(1025), + }, + [186] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), + [aux_sym_enum_variant_list_repeat1] = STATE(199), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1003), + [anon_sym_RPAREN] = ACTIONS(1027), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -37120,412 +38086,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [179] = { - [sym_line_comment] = STATE(179), - [sym_block_comment] = STATE(179), - [sym_identifier] = ACTIONS(871), - [anon_sym_SEMI] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(873), - [anon_sym_RPAREN] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(873), - [anon_sym_RBRACK] = ACTIONS(873), - [anon_sym_LBRACE] = ACTIONS(873), - [anon_sym_RBRACE] = ACTIONS(873), - [anon_sym_EQ_GT] = ACTIONS(873), - [anon_sym_COLON] = ACTIONS(871), - [anon_sym_DOLLAR] = ACTIONS(871), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_STAR] = ACTIONS(871), - [anon_sym_QMARK] = ACTIONS(873), - [anon_sym_u8] = ACTIONS(871), - [anon_sym_i8] = ACTIONS(871), - [anon_sym_u16] = ACTIONS(871), - [anon_sym_i16] = ACTIONS(871), - [anon_sym_u32] = ACTIONS(871), - [anon_sym_i32] = ACTIONS(871), - [anon_sym_u64] = ACTIONS(871), - [anon_sym_i64] = ACTIONS(871), - [anon_sym_u128] = ACTIONS(871), - [anon_sym_i128] = ACTIONS(871), - [anon_sym_isize] = ACTIONS(871), - [anon_sym_usize] = ACTIONS(871), - [anon_sym_f32] = ACTIONS(871), - [anon_sym_f64] = ACTIONS(871), - [anon_sym_bool] = ACTIONS(871), - [anon_sym_str] = ACTIONS(871), - [anon_sym_char] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_SLASH] = ACTIONS(871), - [anon_sym_PERCENT] = ACTIONS(871), - [anon_sym_CARET] = ACTIONS(871), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(871), - [anon_sym_PIPE] = ACTIONS(871), - [anon_sym_AMP_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(873), - [anon_sym_LT_LT] = ACTIONS(871), - [anon_sym_GT_GT] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(873), - [anon_sym_DASH_EQ] = ACTIONS(873), - [anon_sym_STAR_EQ] = ACTIONS(873), - [anon_sym_SLASH_EQ] = ACTIONS(873), - [anon_sym_PERCENT_EQ] = ACTIONS(873), - [anon_sym_CARET_EQ] = ACTIONS(873), - [anon_sym_AMP_EQ] = ACTIONS(873), - [anon_sym_PIPE_EQ] = ACTIONS(873), - [anon_sym_LT_LT_EQ] = ACTIONS(873), - [anon_sym_GT_GT_EQ] = ACTIONS(873), - [anon_sym_EQ] = ACTIONS(871), - [anon_sym_EQ_EQ] = ACTIONS(873), - [anon_sym_BANG_EQ] = ACTIONS(873), - [anon_sym_GT] = ACTIONS(871), - [anon_sym_LT] = ACTIONS(871), - [anon_sym_GT_EQ] = ACTIONS(873), - [anon_sym_LT_EQ] = ACTIONS(873), - [anon_sym_AT] = ACTIONS(873), - [anon_sym__] = ACTIONS(871), - [anon_sym_DOT] = ACTIONS(871), - [anon_sym_DOT_DOT] = ACTIONS(871), - [anon_sym_DOT_DOT_DOT] = ACTIONS(873), - [anon_sym_DOT_DOT_EQ] = ACTIONS(873), - [anon_sym_COMMA] = ACTIONS(873), - [anon_sym_COLON_COLON] = ACTIONS(873), - [anon_sym_DASH_GT] = ACTIONS(873), - [anon_sym_POUND] = ACTIONS(873), - [anon_sym_SQUOTE] = ACTIONS(871), - [anon_sym_as] = ACTIONS(871), - [anon_sym_async] = ACTIONS(871), - [anon_sym_await] = ACTIONS(871), - [anon_sym_break] = ACTIONS(871), - [anon_sym_const] = ACTIONS(871), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_default] = ACTIONS(871), - [anon_sym_enum] = ACTIONS(871), - [anon_sym_fn] = ACTIONS(871), - [anon_sym_for] = ACTIONS(871), - [anon_sym_gen] = ACTIONS(871), - [anon_sym_if] = ACTIONS(871), - [anon_sym_impl] = ACTIONS(871), - [anon_sym_let] = ACTIONS(871), - [anon_sym_loop] = ACTIONS(871), - [anon_sym_match] = ACTIONS(871), - [anon_sym_mod] = ACTIONS(871), - [anon_sym_pub] = ACTIONS(871), - [anon_sym_return] = ACTIONS(871), - [anon_sym_static] = ACTIONS(871), - [anon_sym_struct] = ACTIONS(871), - [anon_sym_trait] = ACTIONS(871), - [anon_sym_type] = ACTIONS(871), - [anon_sym_union] = ACTIONS(871), - [anon_sym_unsafe] = ACTIONS(871), - [anon_sym_use] = ACTIONS(871), - [anon_sym_where] = ACTIONS(871), - [anon_sym_while] = ACTIONS(871), - [sym_mutable_specifier] = ACTIONS(871), - [sym_integer_literal] = ACTIONS(873), - [aux_sym_string_literal_token1] = ACTIONS(873), - [sym_char_literal] = ACTIONS(873), - [anon_sym_true] = ACTIONS(871), - [anon_sym_false] = ACTIONS(871), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(871), - [sym_super] = ACTIONS(871), - [sym_crate] = ACTIONS(871), - [sym_metavariable] = ACTIONS(873), - [sym__raw_string_literal_start] = ACTIONS(873), - [sym_float_literal] = ACTIONS(873), - }, - [180] = { - [sym_line_comment] = STATE(180), - [sym_block_comment] = STATE(180), - [sym_identifier] = ACTIONS(871), - [anon_sym_SEMI] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(873), - [anon_sym_RPAREN] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(873), - [anon_sym_RBRACK] = ACTIONS(873), - [anon_sym_LBRACE] = ACTIONS(873), - [anon_sym_RBRACE] = ACTIONS(873), - [anon_sym_EQ_GT] = ACTIONS(873), - [anon_sym_COLON] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(871), - [anon_sym_PLUS] = ACTIONS(871), - [anon_sym_STAR] = ACTIONS(871), - [anon_sym_QMARK] = ACTIONS(873), - [anon_sym_u8] = ACTIONS(871), - [anon_sym_i8] = ACTIONS(871), - [anon_sym_u16] = ACTIONS(871), - [anon_sym_i16] = ACTIONS(871), - [anon_sym_u32] = ACTIONS(871), - [anon_sym_i32] = ACTIONS(871), - [anon_sym_u64] = ACTIONS(871), - [anon_sym_i64] = ACTIONS(871), - [anon_sym_u128] = ACTIONS(871), - [anon_sym_i128] = ACTIONS(871), - [anon_sym_isize] = ACTIONS(871), - [anon_sym_usize] = ACTIONS(871), - [anon_sym_f32] = ACTIONS(871), - [anon_sym_f64] = ACTIONS(871), - [anon_sym_bool] = ACTIONS(871), - [anon_sym_str] = ACTIONS(871), - [anon_sym_char] = ACTIONS(871), - [anon_sym_DASH] = ACTIONS(871), - [anon_sym_SLASH] = ACTIONS(871), - [anon_sym_PERCENT] = ACTIONS(871), - [anon_sym_CARET] = ACTIONS(871), - [anon_sym_BANG] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(871), - [anon_sym_PIPE] = ACTIONS(871), - [anon_sym_AMP_AMP] = ACTIONS(873), - [anon_sym_PIPE_PIPE] = ACTIONS(873), - [anon_sym_LT_LT] = ACTIONS(871), - [anon_sym_GT_GT] = ACTIONS(871), - [anon_sym_PLUS_EQ] = ACTIONS(873), - [anon_sym_DASH_EQ] = ACTIONS(873), - [anon_sym_STAR_EQ] = ACTIONS(873), - [anon_sym_SLASH_EQ] = ACTIONS(873), - [anon_sym_PERCENT_EQ] = ACTIONS(873), - [anon_sym_CARET_EQ] = ACTIONS(873), - [anon_sym_AMP_EQ] = ACTIONS(873), - [anon_sym_PIPE_EQ] = ACTIONS(873), - [anon_sym_LT_LT_EQ] = ACTIONS(873), - [anon_sym_GT_GT_EQ] = ACTIONS(873), - [anon_sym_EQ] = ACTIONS(871), - [anon_sym_EQ_EQ] = ACTIONS(873), - [anon_sym_BANG_EQ] = ACTIONS(873), - [anon_sym_GT] = ACTIONS(871), - [anon_sym_LT] = ACTIONS(871), - [anon_sym_GT_EQ] = ACTIONS(873), - [anon_sym_LT_EQ] = ACTIONS(873), - [anon_sym_AT] = ACTIONS(873), - [anon_sym__] = ACTIONS(871), - [anon_sym_DOT] = ACTIONS(871), - [anon_sym_DOT_DOT] = ACTIONS(871), - [anon_sym_DOT_DOT_DOT] = ACTIONS(873), - [anon_sym_DOT_DOT_EQ] = ACTIONS(873), - [anon_sym_COMMA] = ACTIONS(873), - [anon_sym_COLON_COLON] = ACTIONS(873), - [anon_sym_DASH_GT] = ACTIONS(873), - [anon_sym_POUND] = ACTIONS(873), - [anon_sym_SQUOTE] = ACTIONS(871), - [anon_sym_as] = ACTIONS(871), - [anon_sym_async] = ACTIONS(871), - [anon_sym_await] = ACTIONS(871), - [anon_sym_break] = ACTIONS(871), - [anon_sym_const] = ACTIONS(871), - [anon_sym_continue] = ACTIONS(871), - [anon_sym_default] = ACTIONS(871), - [anon_sym_enum] = ACTIONS(871), - [anon_sym_fn] = ACTIONS(871), - [anon_sym_for] = ACTIONS(871), - [anon_sym_gen] = ACTIONS(871), - [anon_sym_if] = ACTIONS(871), - [anon_sym_impl] = ACTIONS(871), - [anon_sym_let] = ACTIONS(871), - [anon_sym_loop] = ACTIONS(871), - [anon_sym_match] = ACTIONS(871), - [anon_sym_mod] = ACTIONS(871), - [anon_sym_pub] = ACTIONS(871), - [anon_sym_return] = ACTIONS(871), - [anon_sym_static] = ACTIONS(871), - [anon_sym_struct] = ACTIONS(871), - [anon_sym_trait] = ACTIONS(871), - [anon_sym_type] = ACTIONS(871), - [anon_sym_union] = ACTIONS(871), - [anon_sym_unsafe] = ACTIONS(871), - [anon_sym_use] = ACTIONS(871), - [anon_sym_where] = ACTIONS(871), - [anon_sym_while] = ACTIONS(871), - [sym_mutable_specifier] = ACTIONS(871), - [sym_integer_literal] = ACTIONS(873), - [aux_sym_string_literal_token1] = ACTIONS(873), - [sym_char_literal] = ACTIONS(873), - [anon_sym_true] = ACTIONS(871), - [anon_sym_false] = ACTIONS(871), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(871), - [sym_super] = ACTIONS(871), - [sym_crate] = ACTIONS(871), - [sym_metavariable] = ACTIONS(873), - [sym__raw_string_literal_start] = ACTIONS(873), - [sym_float_literal] = ACTIONS(873), - }, - [181] = { - [sym_line_comment] = STATE(181), - [sym_block_comment] = STATE(181), - [sym_identifier] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_LPAREN] = ACTIONS(1009), - [anon_sym_RPAREN] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_RBRACK] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1007), - [anon_sym_DOLLAR] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_QMARK] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(1007), - [anon_sym_i8] = ACTIONS(1007), - [anon_sym_u16] = ACTIONS(1007), - [anon_sym_i16] = ACTIONS(1007), - [anon_sym_u32] = ACTIONS(1007), - [anon_sym_i32] = ACTIONS(1007), - [anon_sym_u64] = ACTIONS(1007), - [anon_sym_i64] = ACTIONS(1007), - [anon_sym_u128] = ACTIONS(1007), - [anon_sym_i128] = ACTIONS(1007), - [anon_sym_isize] = ACTIONS(1007), - [anon_sym_usize] = ACTIONS(1007), - [anon_sym_f32] = ACTIONS(1007), - [anon_sym_f64] = ACTIONS(1007), - [anon_sym_bool] = ACTIONS(1007), - [anon_sym_str] = ACTIONS(1007), - [anon_sym_char] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_SLASH] = ACTIONS(1007), - [anon_sym_PERCENT] = ACTIONS(1007), - [anon_sym_CARET] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_PIPE] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(1009), - [anon_sym_PIPE_PIPE] = ACTIONS(1009), - [anon_sym_LT_LT] = ACTIONS(1007), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_PLUS_EQ] = ACTIONS(1009), - [anon_sym_DASH_EQ] = ACTIONS(1009), - [anon_sym_STAR_EQ] = ACTIONS(1009), - [anon_sym_SLASH_EQ] = ACTIONS(1009), - [anon_sym_PERCENT_EQ] = ACTIONS(1009), - [anon_sym_CARET_EQ] = ACTIONS(1009), - [anon_sym_AMP_EQ] = ACTIONS(1009), - [anon_sym_PIPE_EQ] = ACTIONS(1009), - [anon_sym_LT_LT_EQ] = ACTIONS(1009), - [anon_sym_GT_GT_EQ] = ACTIONS(1009), - [anon_sym_EQ] = ACTIONS(1007), - [anon_sym_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(1009), - [anon_sym_GT] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1007), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(1009), - [anon_sym__] = ACTIONS(1007), - [anon_sym_DOT] = ACTIONS(1007), - [anon_sym_DOT_DOT] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1009), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1009), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_COLON_COLON] = ACTIONS(1009), - [anon_sym_DASH_GT] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1007), - [anon_sym_as] = ACTIONS(1007), - [anon_sym_async] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_break] = ACTIONS(1007), - [anon_sym_const] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_default] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1007), - [anon_sym_fn] = ACTIONS(1007), - [anon_sym_for] = ACTIONS(1007), - [anon_sym_gen] = ACTIONS(1007), - [anon_sym_if] = ACTIONS(1007), - [anon_sym_impl] = ACTIONS(1007), - [anon_sym_let] = ACTIONS(1007), - [anon_sym_loop] = ACTIONS(1007), - [anon_sym_match] = ACTIONS(1007), - [anon_sym_mod] = ACTIONS(1007), - [anon_sym_pub] = ACTIONS(1007), - [anon_sym_return] = ACTIONS(1007), - [anon_sym_static] = ACTIONS(1007), - [anon_sym_struct] = ACTIONS(1007), - [anon_sym_trait] = ACTIONS(1007), - [anon_sym_type] = ACTIONS(1007), - [anon_sym_union] = ACTIONS(1007), - [anon_sym_unsafe] = ACTIONS(1007), - [anon_sym_use] = ACTIONS(1007), - [anon_sym_where] = ACTIONS(1007), - [anon_sym_while] = ACTIONS(1007), - [sym_mutable_specifier] = ACTIONS(1007), - [sym_integer_literal] = ACTIONS(1009), - [aux_sym_string_literal_token1] = ACTIONS(1009), - [sym_char_literal] = ACTIONS(1009), - [anon_sym_true] = ACTIONS(1007), - [anon_sym_false] = ACTIONS(1007), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1007), - [sym_super] = ACTIONS(1007), - [sym_crate] = ACTIONS(1007), - [sym_metavariable] = ACTIONS(1009), - [sym__raw_string_literal_start] = ACTIONS(1009), - [sym_float_literal] = ACTIONS(1009), - }, - [182] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_let_condition] = STATE(2808), - [sym__let_chain] = STATE(2848), - [sym__condition] = STATE(2624), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(182), - [sym_block_comment] = STATE(182), + [187] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1844), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_let_condition] = STATE(2945), + [sym__let_chain] = STATE(2946), + [sym__condition] = STATE(2545), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(187), + [sym_block_comment] = STATE(187), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -37543,32 +38161,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(917), + [anon_sym_let] = ACTIONS(911), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -37577,114 +38195,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [183] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(183), - [sym_block_comment] = STATE(183), - [aux_sym_enum_variant_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(339), + [188] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1844), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_let_condition] = STATE(2945), + [sym__let_chain] = STATE(2946), + [sym__condition] = STATE(2590), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(188), + [sym_block_comment] = STATE(188), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1011), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(744), + [anon_sym_DOT_DOT] = ACTIONS(909), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(911), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -37693,300 +38311,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [184] = { - [sym_line_comment] = STATE(184), - [sym_block_comment] = STATE(184), - [aux_sym__non_special_token_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(887), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_LPAREN] = ACTIONS(892), - [anon_sym_RPAREN] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(892), - [anon_sym_RBRACK] = ACTIONS(892), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_RBRACE] = ACTIONS(892), - [anon_sym_EQ_GT] = ACTIONS(1013), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_u8] = ACTIONS(887), - [anon_sym_i8] = ACTIONS(887), - [anon_sym_u16] = ACTIONS(887), - [anon_sym_i16] = ACTIONS(887), - [anon_sym_u32] = ACTIONS(887), - [anon_sym_i32] = ACTIONS(887), - [anon_sym_u64] = ACTIONS(887), - [anon_sym_i64] = ACTIONS(887), - [anon_sym_u128] = ACTIONS(887), - [anon_sym_i128] = ACTIONS(887), - [anon_sym_isize] = ACTIONS(887), - [anon_sym_usize] = ACTIONS(887), - [anon_sym_f32] = ACTIONS(887), - [anon_sym_f64] = ACTIONS(887), - [anon_sym_bool] = ACTIONS(887), - [anon_sym_str] = ACTIONS(887), - [anon_sym_char] = ACTIONS(887), - [anon_sym_DASH] = ACTIONS(1016), - [anon_sym_SLASH] = ACTIONS(1016), - [anon_sym_PERCENT] = ACTIONS(1016), - [anon_sym_CARET] = ACTIONS(1016), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_AMP] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_AMP_AMP] = ACTIONS(1013), - [anon_sym_PIPE_PIPE] = ACTIONS(1013), - [anon_sym_LT_LT] = ACTIONS(1016), - [anon_sym_GT_GT] = ACTIONS(1016), - [anon_sym_PLUS_EQ] = ACTIONS(1013), - [anon_sym_DASH_EQ] = ACTIONS(1013), - [anon_sym_STAR_EQ] = ACTIONS(1013), - [anon_sym_SLASH_EQ] = ACTIONS(1013), - [anon_sym_PERCENT_EQ] = ACTIONS(1013), - [anon_sym_CARET_EQ] = ACTIONS(1013), - [anon_sym_AMP_EQ] = ACTIONS(1013), - [anon_sym_PIPE_EQ] = ACTIONS(1013), - [anon_sym_LT_LT_EQ] = ACTIONS(1013), - [anon_sym_GT_GT_EQ] = ACTIONS(1013), - [anon_sym_EQ] = ACTIONS(1016), - [anon_sym_EQ_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ] = ACTIONS(1013), - [anon_sym_GT] = ACTIONS(1016), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_GT_EQ] = ACTIONS(1013), - [anon_sym_LT_EQ] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(1013), - [anon_sym__] = ACTIONS(1016), - [anon_sym_DOT] = ACTIONS(1016), - [anon_sym_DOT_DOT] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1013), - [anon_sym_COMMA] = ACTIONS(1013), - [anon_sym_COLON_COLON] = ACTIONS(1013), - [anon_sym_DASH_GT] = ACTIONS(1013), - [anon_sym_POUND] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(887), - [anon_sym_as] = ACTIONS(887), - [anon_sym_async] = ACTIONS(887), - [anon_sym_await] = ACTIONS(887), - [anon_sym_break] = ACTIONS(887), - [anon_sym_const] = ACTIONS(887), - [anon_sym_continue] = ACTIONS(887), - [anon_sym_default] = ACTIONS(887), - [anon_sym_enum] = ACTIONS(887), - [anon_sym_fn] = ACTIONS(887), - [anon_sym_for] = ACTIONS(887), - [anon_sym_gen] = ACTIONS(887), - [anon_sym_if] = ACTIONS(887), - [anon_sym_impl] = ACTIONS(887), - [anon_sym_let] = ACTIONS(887), - [anon_sym_loop] = ACTIONS(887), - [anon_sym_match] = ACTIONS(887), - [anon_sym_mod] = ACTIONS(887), - [anon_sym_pub] = ACTIONS(887), - [anon_sym_return] = ACTIONS(887), - [anon_sym_static] = ACTIONS(887), - [anon_sym_struct] = ACTIONS(887), - [anon_sym_trait] = ACTIONS(887), - [anon_sym_type] = ACTIONS(887), - [anon_sym_union] = ACTIONS(887), - [anon_sym_unsafe] = ACTIONS(887), - [anon_sym_use] = ACTIONS(887), - [anon_sym_where] = ACTIONS(887), - [anon_sym_while] = ACTIONS(887), - [sym_mutable_specifier] = ACTIONS(887), - [sym_integer_literal] = ACTIONS(892), - [aux_sym_string_literal_token1] = ACTIONS(892), - [sym_char_literal] = ACTIONS(892), - [anon_sym_true] = ACTIONS(887), - [anon_sym_false] = ACTIONS(887), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(887), - [sym_super] = ACTIONS(887), - [sym_crate] = ACTIONS(887), - [sym__raw_string_literal_start] = ACTIONS(892), - [sym_float_literal] = ACTIONS(892), - }, - [185] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_let_condition] = STATE(3097), - [sym__let_chain] = STATE(3100), - [sym__condition] = STATE(3450), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), - [sym_line_comment] = STATE(185), - [sym_block_comment] = STATE(185), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(1025), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [186] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(186), - [sym_block_comment] = STATE(186), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [189] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(189), + [sym_block_comment] = STATE(189), + [aux_sym_enum_variant_list_repeat1] = STATE(198), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(1029), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -38048,107 +38434,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [187] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(187), - [sym_block_comment] = STATE(187), - [aux_sym_enum_variant_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(339), + [190] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1844), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_let_condition] = STATE(2945), + [sym__let_chain] = STATE(2946), + [sym__condition] = STATE(2663), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(190), + [sym_block_comment] = STATE(190), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1029), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(744), + [anon_sym_DOT_DOT] = ACTIONS(909), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(911), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -38157,71 +38543,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [188] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_let_condition] = STATE(2808), - [sym__let_chain] = STATE(2848), - [sym__condition] = STATE(2623), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(188), - [sym_block_comment] = STATE(188), + [191] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1844), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_let_condition] = STATE(2945), + [sym__let_chain] = STATE(2946), + [sym__condition] = STATE(2558), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(191), + [sym_block_comment] = STATE(191), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -38239,32 +38625,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(917), + [anon_sym_let] = ACTIONS(911), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -38273,71 +38659,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [189] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_let_condition] = STATE(2808), - [sym__let_chain] = STATE(2848), - [sym__condition] = STATE(2626), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(189), - [sym_block_comment] = STATE(189), + [192] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1844), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_let_condition] = STATE(2945), + [sym__let_chain] = STATE(2946), + [sym__condition] = STATE(2561), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(192), + [sym_block_comment] = STATE(192), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -38355,32 +38741,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(917), + [anon_sym_let] = ACTIONS(911), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -38389,71 +38775,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [190] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_let_condition] = STATE(2808), - [sym__let_chain] = STATE(2848), - [sym__condition] = STATE(2536), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(190), - [sym_block_comment] = STATE(190), + [193] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1844), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_let_condition] = STATE(2945), + [sym__let_chain] = STATE(2946), + [sym__condition] = STATE(2587), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(193), + [sym_block_comment] = STATE(193), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -38471,32 +38857,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(917), + [anon_sym_let] = ACTIONS(911), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -38505,71 +38891,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [191] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_let_condition] = STATE(2808), - [sym__let_chain] = STATE(2848), - [sym__condition] = STATE(2596), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(191), - [sym_block_comment] = STATE(191), + [194] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1844), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_let_condition] = STATE(2945), + [sym__let_chain] = STATE(2946), + [sym__condition] = STATE(2606), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(194), + [sym_block_comment] = STATE(194), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -38587,32 +38973,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(917), + [anon_sym_let] = ACTIONS(911), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -38621,71 +39007,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [192] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_let_condition] = STATE(2808), - [sym__let_chain] = STATE(2848), - [sym__condition] = STATE(2597), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(192), - [sym_block_comment] = STATE(192), + [195] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1844), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_let_condition] = STATE(2945), + [sym__let_chain] = STATE(2946), + [sym__condition] = STATE(2607), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(195), + [sym_block_comment] = STATE(195), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -38703,32 +39089,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(917), + [anon_sym_let] = ACTIONS(911), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -38737,71 +39123,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [193] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_let_condition] = STATE(2808), - [sym__let_chain] = STATE(2848), + [196] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1844), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_let_condition] = STATE(2945), + [sym__let_chain] = STATE(2946), [sym__condition] = STATE(2616), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(193), - [sym_block_comment] = STATE(193), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(196), + [sym_block_comment] = STATE(196), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -38819,32 +39205,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(917), + [anon_sym_let] = ACTIONS(911), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -38853,114 +39239,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [194] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_let_condition] = STATE(2808), - [sym__let_chain] = STATE(2848), - [sym__condition] = STATE(2634), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(194), - [sym_block_comment] = STATE(194), - [sym_identifier] = ACTIONS(465), + [197] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(197), + [sym_block_comment] = STATE(197), + [aux_sym_enum_variant_list_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1031), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(915), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(917), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -38969,68 +39355,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [195] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1847), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(195), - [sym_block_comment] = STATE(195), - [aux_sym_enum_variant_list_repeat1] = STATE(206), + [198] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1867), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(198), + [sym_block_comment] = STATE(198), + [aux_sym_enum_variant_list_repeat1] = STATE(994), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1031), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -39092,107 +39477,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [196] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_let_condition] = STATE(2808), - [sym__let_chain] = STATE(2848), - [sym__condition] = STATE(2635), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(196), - [sym_block_comment] = STATE(196), - [sym_identifier] = ACTIONS(465), + [199] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1633), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(199), + [sym_block_comment] = STATE(199), + [aux_sym_enum_variant_list_repeat1] = STATE(994), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(915), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(917), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -39201,247 +39585,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [197] = { - [sym_line_comment] = STATE(197), - [sym_block_comment] = STATE(197), - [sym_identifier] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(881), - [anon_sym_RPAREN] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(881), - [anon_sym_RBRACK] = ACTIONS(881), - [anon_sym_LBRACE] = ACTIONS(881), - [anon_sym_RBRACE] = ACTIONS(881), - [anon_sym_EQ_GT] = ACTIONS(881), - [anon_sym_COLON] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_QMARK] = ACTIONS(881), - [anon_sym_u8] = ACTIONS(879), - [anon_sym_i8] = ACTIONS(879), - [anon_sym_u16] = ACTIONS(879), - [anon_sym_i16] = ACTIONS(879), - [anon_sym_u32] = ACTIONS(879), - [anon_sym_i32] = ACTIONS(879), - [anon_sym_u64] = ACTIONS(879), - [anon_sym_i64] = ACTIONS(879), - [anon_sym_u128] = ACTIONS(879), - [anon_sym_i128] = ACTIONS(879), - [anon_sym_isize] = ACTIONS(879), - [anon_sym_usize] = ACTIONS(879), - [anon_sym_f32] = ACTIONS(879), - [anon_sym_f64] = ACTIONS(879), - [anon_sym_bool] = ACTIONS(879), - [anon_sym_str] = ACTIONS(879), - [anon_sym_char] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(879), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_PERCENT] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(879), - [anon_sym_BANG] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(879), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_AMP_AMP] = ACTIONS(881), - [anon_sym_PIPE_PIPE] = ACTIONS(881), - [anon_sym_LT_LT] = ACTIONS(879), - [anon_sym_GT_GT] = ACTIONS(879), - [anon_sym_PLUS_EQ] = ACTIONS(881), - [anon_sym_DASH_EQ] = ACTIONS(881), - [anon_sym_STAR_EQ] = ACTIONS(881), - [anon_sym_SLASH_EQ] = ACTIONS(881), - [anon_sym_PERCENT_EQ] = ACTIONS(881), - [anon_sym_CARET_EQ] = ACTIONS(881), - [anon_sym_AMP_EQ] = ACTIONS(881), - [anon_sym_PIPE_EQ] = ACTIONS(881), - [anon_sym_LT_LT_EQ] = ACTIONS(881), - [anon_sym_GT_GT_EQ] = ACTIONS(881), - [anon_sym_EQ] = ACTIONS(879), - [anon_sym_EQ_EQ] = ACTIONS(881), - [anon_sym_BANG_EQ] = ACTIONS(881), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_LT] = ACTIONS(879), - [anon_sym_GT_EQ] = ACTIONS(881), - [anon_sym_LT_EQ] = ACTIONS(881), - [anon_sym_AT] = ACTIONS(881), - [anon_sym__] = ACTIONS(879), - [anon_sym_DOT] = ACTIONS(879), - [anon_sym_DOT_DOT] = ACTIONS(879), - [anon_sym_DOT_DOT_DOT] = ACTIONS(881), - [anon_sym_DOT_DOT_EQ] = ACTIONS(881), - [anon_sym_COMMA] = ACTIONS(881), - [anon_sym_COLON_COLON] = ACTIONS(881), - [anon_sym_DASH_GT] = ACTIONS(881), - [anon_sym_POUND] = ACTIONS(881), - [anon_sym_SQUOTE] = ACTIONS(879), - [anon_sym_as] = ACTIONS(879), - [anon_sym_async] = ACTIONS(879), - [anon_sym_await] = ACTIONS(879), - [anon_sym_break] = ACTIONS(879), - [anon_sym_const] = ACTIONS(879), - [anon_sym_continue] = ACTIONS(879), - [anon_sym_default] = ACTIONS(879), - [anon_sym_enum] = ACTIONS(879), - [anon_sym_fn] = ACTIONS(879), - [anon_sym_for] = ACTIONS(879), - [anon_sym_gen] = ACTIONS(879), - [anon_sym_if] = ACTIONS(879), - [anon_sym_impl] = ACTIONS(879), - [anon_sym_let] = ACTIONS(879), - [anon_sym_loop] = ACTIONS(879), - [anon_sym_match] = ACTIONS(879), - [anon_sym_mod] = ACTIONS(879), - [anon_sym_pub] = ACTIONS(879), - [anon_sym_return] = ACTIONS(879), - [anon_sym_static] = ACTIONS(879), - [anon_sym_struct] = ACTIONS(879), - [anon_sym_trait] = ACTIONS(879), - [anon_sym_type] = ACTIONS(879), - [anon_sym_union] = ACTIONS(879), - [anon_sym_unsafe] = ACTIONS(879), - [anon_sym_use] = ACTIONS(879), - [anon_sym_where] = ACTIONS(879), - [anon_sym_while] = ACTIONS(879), - [sym_mutable_specifier] = ACTIONS(879), - [sym_integer_literal] = ACTIONS(881), - [aux_sym_string_literal_token1] = ACTIONS(881), - [sym_char_literal] = ACTIONS(881), - [anon_sym_true] = ACTIONS(879), - [anon_sym_false] = ACTIONS(879), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(879), - [sym_super] = ACTIONS(879), - [sym_crate] = ACTIONS(879), - [sym_metavariable] = ACTIONS(881), - [sym__raw_string_literal_start] = ACTIONS(881), - [sym_float_literal] = ACTIONS(881), - }, - [198] = { - [sym_line_comment] = STATE(198), - [sym_block_comment] = STATE(198), - [sym_identifier] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_RBRACK] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_EQ_GT] = ACTIONS(971), - [anon_sym_COLON] = ACTIONS(969), - [anon_sym_DOLLAR] = ACTIONS(971), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_STAR] = ACTIONS(969), - [anon_sym_QMARK] = ACTIONS(971), - [anon_sym_u8] = ACTIONS(969), - [anon_sym_i8] = ACTIONS(969), - [anon_sym_u16] = ACTIONS(969), - [anon_sym_i16] = ACTIONS(969), - [anon_sym_u32] = ACTIONS(969), - [anon_sym_i32] = ACTIONS(969), - [anon_sym_u64] = ACTIONS(969), - [anon_sym_i64] = ACTIONS(969), - [anon_sym_u128] = ACTIONS(969), - [anon_sym_i128] = ACTIONS(969), - [anon_sym_isize] = ACTIONS(969), - [anon_sym_usize] = ACTIONS(969), - [anon_sym_f32] = ACTIONS(969), - [anon_sym_f64] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(969), - [anon_sym_str] = ACTIONS(969), - [anon_sym_char] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_AMP] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(969), - [anon_sym_PLUS_EQ] = ACTIONS(971), - [anon_sym_DASH_EQ] = ACTIONS(971), - [anon_sym_STAR_EQ] = ACTIONS(971), - [anon_sym_SLASH_EQ] = ACTIONS(971), - [anon_sym_PERCENT_EQ] = ACTIONS(971), - [anon_sym_CARET_EQ] = ACTIONS(971), - [anon_sym_AMP_EQ] = ACTIONS(971), - [anon_sym_PIPE_EQ] = ACTIONS(971), - [anon_sym_LT_LT_EQ] = ACTIONS(971), - [anon_sym_GT_GT_EQ] = ACTIONS(971), - [anon_sym_EQ] = ACTIONS(969), - [anon_sym_EQ_EQ] = ACTIONS(971), - [anon_sym_BANG_EQ] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT_EQ] = ACTIONS(971), - [anon_sym_LT_EQ] = ACTIONS(971), - [anon_sym_AT] = ACTIONS(971), - [anon_sym__] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(971), - [anon_sym_DOT_DOT_EQ] = ACTIONS(971), - [anon_sym_COMMA] = ACTIONS(971), - [anon_sym_COLON_COLON] = ACTIONS(971), - [anon_sym_DASH_GT] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(971), - [anon_sym_SQUOTE] = ACTIONS(969), - [anon_sym_as] = ACTIONS(969), - [anon_sym_async] = ACTIONS(969), - [anon_sym_await] = ACTIONS(969), - [anon_sym_break] = ACTIONS(969), - [anon_sym_const] = ACTIONS(969), - [anon_sym_continue] = ACTIONS(969), - [anon_sym_default] = ACTIONS(969), - [anon_sym_enum] = ACTIONS(969), - [anon_sym_fn] = ACTIONS(969), - [anon_sym_for] = ACTIONS(969), - [anon_sym_gen] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_impl] = ACTIONS(969), - [anon_sym_let] = ACTIONS(969), - [anon_sym_loop] = ACTIONS(969), - [anon_sym_match] = ACTIONS(969), - [anon_sym_mod] = ACTIONS(969), - [anon_sym_pub] = ACTIONS(969), - [anon_sym_return] = ACTIONS(969), - [anon_sym_static] = ACTIONS(969), - [anon_sym_struct] = ACTIONS(969), - [anon_sym_trait] = ACTIONS(969), - [anon_sym_type] = ACTIONS(969), - [anon_sym_union] = ACTIONS(969), - [anon_sym_unsafe] = ACTIONS(969), - [anon_sym_use] = ACTIONS(969), - [anon_sym_where] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [sym_mutable_specifier] = ACTIONS(969), - [sym_integer_literal] = ACTIONS(971), - [aux_sym_string_literal_token1] = ACTIONS(971), - [sym_char_literal] = ACTIONS(971), - [anon_sym_true] = ACTIONS(969), - [anon_sym_false] = ACTIONS(969), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(969), - [sym_super] = ACTIONS(969), - [sym_crate] = ACTIONS(969), - [sym__raw_string_literal_start] = ACTIONS(971), - [sym_float_literal] = ACTIONS(971), - }, - [199] = { - [sym_line_comment] = STATE(199), - [sym_block_comment] = STATE(199), + [200] = { + [sym_line_comment] = STATE(200), + [sym_block_comment] = STATE(200), [sym_identifier] = ACTIONS(1033), [anon_sym_SEMI] = ACTIONS(1035), [anon_sym_LPAREN] = ACTIONS(1035), @@ -39554,58 +39707,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1035), [sym_float_literal] = ACTIONS(1035), }, - [200] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1596), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(200), - [sym_block_comment] = STATE(200), - [aux_sym_enum_variant_list_repeat1] = STATE(913), + [201] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(201), + [sym_block_comment] = STATE(201), + [aux_sym_enum_variant_list_repeat1] = STATE(199), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -39669,350 +39822,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [201] = { - [sym_line_comment] = STATE(201), - [sym_block_comment] = STATE(201), - [sym_identifier] = ACTIONS(897), - [anon_sym_SEMI] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(899), - [anon_sym_RPAREN] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(899), - [anon_sym_LBRACE] = ACTIONS(899), - [anon_sym_RBRACE] = ACTIONS(899), - [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_COLON] = ACTIONS(897), - [anon_sym_DOLLAR] = ACTIONS(899), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(897), - [anon_sym_QMARK] = ACTIONS(899), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_SLASH] = ACTIONS(897), - [anon_sym_PERCENT] = ACTIONS(897), - [anon_sym_CARET] = ACTIONS(897), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_AMP] = ACTIONS(897), - [anon_sym_PIPE] = ACTIONS(897), - [anon_sym_AMP_AMP] = ACTIONS(899), - [anon_sym_PIPE_PIPE] = ACTIONS(899), - [anon_sym_LT_LT] = ACTIONS(897), - [anon_sym_GT_GT] = ACTIONS(897), - [anon_sym_PLUS_EQ] = ACTIONS(899), - [anon_sym_DASH_EQ] = ACTIONS(899), - [anon_sym_STAR_EQ] = ACTIONS(899), - [anon_sym_SLASH_EQ] = ACTIONS(899), - [anon_sym_PERCENT_EQ] = ACTIONS(899), - [anon_sym_CARET_EQ] = ACTIONS(899), - [anon_sym_AMP_EQ] = ACTIONS(899), - [anon_sym_PIPE_EQ] = ACTIONS(899), - [anon_sym_LT_LT_EQ] = ACTIONS(899), - [anon_sym_GT_GT_EQ] = ACTIONS(899), - [anon_sym_EQ] = ACTIONS(897), - [anon_sym_EQ_EQ] = ACTIONS(899), - [anon_sym_BANG_EQ] = ACTIONS(899), - [anon_sym_GT] = ACTIONS(897), - [anon_sym_LT] = ACTIONS(897), - [anon_sym_GT_EQ] = ACTIONS(899), - [anon_sym_LT_EQ] = ACTIONS(899), - [anon_sym_AT] = ACTIONS(899), - [anon_sym__] = ACTIONS(897), - [anon_sym_DOT] = ACTIONS(897), - [anon_sym_DOT_DOT] = ACTIONS(897), - [anon_sym_DOT_DOT_DOT] = ACTIONS(899), - [anon_sym_DOT_DOT_EQ] = ACTIONS(899), - [anon_sym_COMMA] = ACTIONS(899), - [anon_sym_COLON_COLON] = ACTIONS(899), - [anon_sym_DASH_GT] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(899), - [anon_sym_SQUOTE] = ACTIONS(897), - [anon_sym_as] = ACTIONS(897), - [anon_sym_async] = ACTIONS(897), - [anon_sym_await] = ACTIONS(897), - [anon_sym_break] = ACTIONS(897), - [anon_sym_const] = ACTIONS(897), - [anon_sym_continue] = ACTIONS(897), - [anon_sym_default] = ACTIONS(897), - [anon_sym_enum] = ACTIONS(897), - [anon_sym_fn] = ACTIONS(897), - [anon_sym_for] = ACTIONS(897), - [anon_sym_gen] = ACTIONS(897), - [anon_sym_if] = ACTIONS(897), - [anon_sym_impl] = ACTIONS(897), - [anon_sym_let] = ACTIONS(897), - [anon_sym_loop] = ACTIONS(897), - [anon_sym_match] = ACTIONS(897), - [anon_sym_mod] = ACTIONS(897), - [anon_sym_pub] = ACTIONS(897), - [anon_sym_return] = ACTIONS(897), - [anon_sym_static] = ACTIONS(897), - [anon_sym_struct] = ACTIONS(897), - [anon_sym_trait] = ACTIONS(897), - [anon_sym_type] = ACTIONS(897), - [anon_sym_union] = ACTIONS(897), - [anon_sym_unsafe] = ACTIONS(897), - [anon_sym_use] = ACTIONS(897), - [anon_sym_where] = ACTIONS(897), - [anon_sym_while] = ACTIONS(897), - [sym_mutable_specifier] = ACTIONS(897), - [sym_integer_literal] = ACTIONS(899), - [aux_sym_string_literal_token1] = ACTIONS(899), - [sym_char_literal] = ACTIONS(899), - [anon_sym_true] = ACTIONS(897), - [anon_sym_false] = ACTIONS(897), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(897), - [sym_super] = ACTIONS(897), - [sym_crate] = ACTIONS(897), - [sym__raw_string_literal_start] = ACTIONS(899), - [sym_float_literal] = ACTIONS(899), - }, [202] = { [sym_line_comment] = STATE(202), [sym_block_comment] = STATE(202), - [sym_identifier] = ACTIONS(961), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_LPAREN] = ACTIONS(963), - [anon_sym_RPAREN] = ACTIONS(963), - [anon_sym_LBRACK] = ACTIONS(963), - [anon_sym_RBRACK] = ACTIONS(963), - [anon_sym_LBRACE] = ACTIONS(963), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_EQ_GT] = ACTIONS(963), - [anon_sym_COLON] = ACTIONS(961), - [anon_sym_DOLLAR] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(961), - [anon_sym_STAR] = ACTIONS(961), - [anon_sym_QMARK] = ACTIONS(963), - [anon_sym_u8] = ACTIONS(961), - [anon_sym_i8] = ACTIONS(961), - [anon_sym_u16] = ACTIONS(961), - [anon_sym_i16] = ACTIONS(961), - [anon_sym_u32] = ACTIONS(961), - [anon_sym_i32] = ACTIONS(961), - [anon_sym_u64] = ACTIONS(961), - [anon_sym_i64] = ACTIONS(961), - [anon_sym_u128] = ACTIONS(961), - [anon_sym_i128] = ACTIONS(961), - [anon_sym_isize] = ACTIONS(961), - [anon_sym_usize] = ACTIONS(961), - [anon_sym_f32] = ACTIONS(961), - [anon_sym_f64] = ACTIONS(961), - [anon_sym_bool] = ACTIONS(961), - [anon_sym_str] = ACTIONS(961), - [anon_sym_char] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(961), - [anon_sym_SLASH] = ACTIONS(961), - [anon_sym_PERCENT] = ACTIONS(961), - [anon_sym_CARET] = ACTIONS(961), - [anon_sym_BANG] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(961), - [anon_sym_AMP_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(963), - [anon_sym_LT_LT] = ACTIONS(961), - [anon_sym_GT_GT] = ACTIONS(961), - [anon_sym_PLUS_EQ] = ACTIONS(963), - [anon_sym_DASH_EQ] = ACTIONS(963), - [anon_sym_STAR_EQ] = ACTIONS(963), - [anon_sym_SLASH_EQ] = ACTIONS(963), - [anon_sym_PERCENT_EQ] = ACTIONS(963), - [anon_sym_CARET_EQ] = ACTIONS(963), - [anon_sym_AMP_EQ] = ACTIONS(963), - [anon_sym_PIPE_EQ] = ACTIONS(963), - [anon_sym_LT_LT_EQ] = ACTIONS(963), - [anon_sym_GT_GT_EQ] = ACTIONS(963), - [anon_sym_EQ] = ACTIONS(961), - [anon_sym_EQ_EQ] = ACTIONS(963), - [anon_sym_BANG_EQ] = ACTIONS(963), - [anon_sym_GT] = ACTIONS(961), - [anon_sym_LT] = ACTIONS(961), - [anon_sym_GT_EQ] = ACTIONS(963), - [anon_sym_LT_EQ] = ACTIONS(963), - [anon_sym_AT] = ACTIONS(963), - [anon_sym__] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT] = ACTIONS(961), - [anon_sym_DOT_DOT_DOT] = ACTIONS(963), - [anon_sym_DOT_DOT_EQ] = ACTIONS(963), - [anon_sym_COMMA] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(963), - [anon_sym_DASH_GT] = ACTIONS(963), - [anon_sym_POUND] = ACTIONS(963), - [anon_sym_SQUOTE] = ACTIONS(961), - [anon_sym_as] = ACTIONS(961), - [anon_sym_async] = ACTIONS(961), - [anon_sym_await] = ACTIONS(961), - [anon_sym_break] = ACTIONS(961), - [anon_sym_const] = ACTIONS(961), - [anon_sym_continue] = ACTIONS(961), - [anon_sym_default] = ACTIONS(961), - [anon_sym_enum] = ACTIONS(961), - [anon_sym_fn] = ACTIONS(961), - [anon_sym_for] = ACTIONS(961), - [anon_sym_gen] = ACTIONS(961), - [anon_sym_if] = ACTIONS(961), - [anon_sym_impl] = ACTIONS(961), - [anon_sym_let] = ACTIONS(961), - [anon_sym_loop] = ACTIONS(961), - [anon_sym_match] = ACTIONS(961), - [anon_sym_mod] = ACTIONS(961), - [anon_sym_pub] = ACTIONS(961), - [anon_sym_return] = ACTIONS(961), - [anon_sym_static] = ACTIONS(961), - [anon_sym_struct] = ACTIONS(961), - [anon_sym_trait] = ACTIONS(961), - [anon_sym_type] = ACTIONS(961), - [anon_sym_union] = ACTIONS(961), - [anon_sym_unsafe] = ACTIONS(961), - [anon_sym_use] = ACTIONS(961), - [anon_sym_where] = ACTIONS(961), - [anon_sym_while] = ACTIONS(961), - [sym_mutable_specifier] = ACTIONS(961), - [sym_integer_literal] = ACTIONS(963), - [aux_sym_string_literal_token1] = ACTIONS(963), - [sym_char_literal] = ACTIONS(963), - [anon_sym_true] = ACTIONS(961), - [anon_sym_false] = ACTIONS(961), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(961), - [sym_super] = ACTIONS(961), - [sym_crate] = ACTIONS(961), - [sym__raw_string_literal_start] = ACTIONS(963), - [sym_float_literal] = ACTIONS(963), + [sym_identifier] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(987), + [anon_sym_RPAREN] = ACTIONS(987), + [anon_sym_LBRACK] = ACTIONS(987), + [anon_sym_RBRACK] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_RBRACE] = ACTIONS(987), + [anon_sym_EQ_GT] = ACTIONS(987), + [anon_sym_COLON] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(987), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(985), + [anon_sym_i8] = ACTIONS(985), + [anon_sym_u16] = ACTIONS(985), + [anon_sym_i16] = ACTIONS(985), + [anon_sym_u32] = ACTIONS(985), + [anon_sym_i32] = ACTIONS(985), + [anon_sym_u64] = ACTIONS(985), + [anon_sym_i64] = ACTIONS(985), + [anon_sym_u128] = ACTIONS(985), + [anon_sym_i128] = ACTIONS(985), + [anon_sym_isize] = ACTIONS(985), + [anon_sym_usize] = ACTIONS(985), + [anon_sym_f32] = ACTIONS(985), + [anon_sym_f64] = ACTIONS(985), + [anon_sym_bool] = ACTIONS(985), + [anon_sym_str] = ACTIONS(985), + [anon_sym_char] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_PERCENT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(987), + [anon_sym_PIPE_PIPE] = ACTIONS(987), + [anon_sym_LT_LT] = ACTIONS(985), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_PLUS_EQ] = ACTIONS(987), + [anon_sym_DASH_EQ] = ACTIONS(987), + [anon_sym_STAR_EQ] = ACTIONS(987), + [anon_sym_SLASH_EQ] = ACTIONS(987), + [anon_sym_PERCENT_EQ] = ACTIONS(987), + [anon_sym_CARET_EQ] = ACTIONS(987), + [anon_sym_AMP_EQ] = ACTIONS(987), + [anon_sym_PIPE_EQ] = ACTIONS(987), + [anon_sym_LT_LT_EQ] = ACTIONS(987), + [anon_sym_GT_GT_EQ] = ACTIONS(987), + [anon_sym_EQ] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(987), + [anon_sym_BANG_EQ] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(987), + [anon_sym_LT_EQ] = ACTIONS(987), + [anon_sym_AT] = ACTIONS(987), + [anon_sym__] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(987), + [anon_sym_DOT_DOT_EQ] = ACTIONS(987), + [anon_sym_COMMA] = ACTIONS(987), + [anon_sym_COLON_COLON] = ACTIONS(987), + [anon_sym_DASH_GT] = ACTIONS(987), + [anon_sym_POUND] = ACTIONS(987), + [anon_sym_SQUOTE] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_async] = ACTIONS(985), + [anon_sym_await] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_default] = ACTIONS(985), + [anon_sym_enum] = ACTIONS(985), + [anon_sym_fn] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_gen] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_impl] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_pub] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_static] = ACTIONS(985), + [anon_sym_struct] = ACTIONS(985), + [anon_sym_trait] = ACTIONS(985), + [anon_sym_type] = ACTIONS(985), + [anon_sym_union] = ACTIONS(985), + [anon_sym_unsafe] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_where] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [sym_mutable_specifier] = ACTIONS(985), + [sym_integer_literal] = ACTIONS(987), + [aux_sym_string_literal_token1] = ACTIONS(987), + [sym_char_literal] = ACTIONS(987), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(985), + [sym_super] = ACTIONS(985), + [sym_crate] = ACTIONS(985), + [sym__raw_string_literal_start] = ACTIONS(987), + [sym_float_literal] = ACTIONS(987), }, [203] = { [sym_line_comment] = STATE(203), [sym_block_comment] = STATE(203), - [sym_identifier] = ACTIONS(991), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_LPAREN] = ACTIONS(993), - [anon_sym_RPAREN] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_RBRACK] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_RBRACE] = ACTIONS(993), - [anon_sym_EQ_GT] = ACTIONS(993), - [anon_sym_COLON] = ACTIONS(991), - [anon_sym_DOLLAR] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(991), - [anon_sym_STAR] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(993), - [anon_sym_u8] = ACTIONS(991), - [anon_sym_i8] = ACTIONS(991), - [anon_sym_u16] = ACTIONS(991), - [anon_sym_i16] = ACTIONS(991), - [anon_sym_u32] = ACTIONS(991), - [anon_sym_i32] = ACTIONS(991), - [anon_sym_u64] = ACTIONS(991), - [anon_sym_i64] = ACTIONS(991), - [anon_sym_u128] = ACTIONS(991), - [anon_sym_i128] = ACTIONS(991), - [anon_sym_isize] = ACTIONS(991), - [anon_sym_usize] = ACTIONS(991), - [anon_sym_f32] = ACTIONS(991), - [anon_sym_f64] = ACTIONS(991), - [anon_sym_bool] = ACTIONS(991), - [anon_sym_str] = ACTIONS(991), - [anon_sym_char] = ACTIONS(991), - [anon_sym_DASH] = ACTIONS(991), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_PERCENT] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(991), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(991), - [anon_sym_GT_GT] = ACTIONS(991), - [anon_sym_PLUS_EQ] = ACTIONS(993), - [anon_sym_DASH_EQ] = ACTIONS(993), - [anon_sym_STAR_EQ] = ACTIONS(993), - [anon_sym_SLASH_EQ] = ACTIONS(993), - [anon_sym_PERCENT_EQ] = ACTIONS(993), - [anon_sym_CARET_EQ] = ACTIONS(993), - [anon_sym_AMP_EQ] = ACTIONS(993), - [anon_sym_PIPE_EQ] = ACTIONS(993), - [anon_sym_LT_LT_EQ] = ACTIONS(993), - [anon_sym_GT_GT_EQ] = ACTIONS(993), - [anon_sym_EQ] = ACTIONS(991), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_GT] = ACTIONS(991), - [anon_sym_LT] = ACTIONS(991), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_AT] = ACTIONS(993), - [anon_sym__] = ACTIONS(991), - [anon_sym_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_DOT_DOT_EQ] = ACTIONS(993), - [anon_sym_COMMA] = ACTIONS(993), - [anon_sym_COLON_COLON] = ACTIONS(993), - [anon_sym_DASH_GT] = ACTIONS(993), - [anon_sym_POUND] = ACTIONS(993), - [anon_sym_SQUOTE] = ACTIONS(991), - [anon_sym_as] = ACTIONS(991), - [anon_sym_async] = ACTIONS(991), - [anon_sym_await] = ACTIONS(991), - [anon_sym_break] = ACTIONS(991), - [anon_sym_const] = ACTIONS(991), - [anon_sym_continue] = ACTIONS(991), - [anon_sym_default] = ACTIONS(991), - [anon_sym_enum] = ACTIONS(991), - [anon_sym_fn] = ACTIONS(991), - [anon_sym_for] = ACTIONS(991), - [anon_sym_gen] = ACTIONS(991), - [anon_sym_if] = ACTIONS(991), - [anon_sym_impl] = ACTIONS(991), - [anon_sym_let] = ACTIONS(991), - [anon_sym_loop] = ACTIONS(991), - [anon_sym_match] = ACTIONS(991), - [anon_sym_mod] = ACTIONS(991), - [anon_sym_pub] = ACTIONS(991), - [anon_sym_return] = ACTIONS(991), - [anon_sym_static] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(991), - [anon_sym_trait] = ACTIONS(991), - [anon_sym_type] = ACTIONS(991), - [anon_sym_union] = ACTIONS(991), - [anon_sym_unsafe] = ACTIONS(991), - [anon_sym_use] = ACTIONS(991), - [anon_sym_where] = ACTIONS(991), - [anon_sym_while] = ACTIONS(991), - [sym_mutable_specifier] = ACTIONS(991), - [sym_integer_literal] = ACTIONS(993), - [aux_sym_string_literal_token1] = ACTIONS(993), - [sym_char_literal] = ACTIONS(993), - [anon_sym_true] = ACTIONS(991), - [anon_sym_false] = ACTIONS(991), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(991), - [sym_super] = ACTIONS(991), - [sym_crate] = ACTIONS(991), - [sym__raw_string_literal_start] = ACTIONS(993), - [sym_float_literal] = ACTIONS(993), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_RPAREN] = ACTIONS(921), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_RBRACK] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_RBRACE] = ACTIONS(921), + [anon_sym_EQ_GT] = ACTIONS(921), + [anon_sym_COLON] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_u8] = ACTIONS(919), + [anon_sym_i8] = ACTIONS(919), + [anon_sym_u16] = ACTIONS(919), + [anon_sym_i16] = ACTIONS(919), + [anon_sym_u32] = ACTIONS(919), + [anon_sym_i32] = ACTIONS(919), + [anon_sym_u64] = ACTIONS(919), + [anon_sym_i64] = ACTIONS(919), + [anon_sym_u128] = ACTIONS(919), + [anon_sym_i128] = ACTIONS(919), + [anon_sym_isize] = ACTIONS(919), + [anon_sym_usize] = ACTIONS(919), + [anon_sym_f32] = ACTIONS(919), + [anon_sym_f64] = ACTIONS(919), + [anon_sym_bool] = ACTIONS(919), + [anon_sym_str] = ACTIONS(919), + [anon_sym_char] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_SLASH] = ACTIONS(919), + [anon_sym_PERCENT] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_AMP] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_LT_LT] = ACTIONS(919), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_AMP_EQ] = ACTIONS(921), + [anon_sym_PIPE_EQ] = ACTIONS(921), + [anon_sym_LT_LT_EQ] = ACTIONS(921), + [anon_sym_GT_GT_EQ] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(921), + [anon_sym__] = ACTIONS(919), + [anon_sym_DOT] = ACTIONS(919), + [anon_sym_DOT_DOT] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(921), + [anon_sym_DOT_DOT_EQ] = ACTIONS(921), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_COLON_COLON] = ACTIONS(921), + [anon_sym_DASH_GT] = ACTIONS(921), + [anon_sym_POUND] = ACTIONS(921), + [anon_sym_SQUOTE] = ACTIONS(919), + [anon_sym_as] = ACTIONS(919), + [anon_sym_async] = ACTIONS(919), + [anon_sym_await] = ACTIONS(919), + [anon_sym_break] = ACTIONS(919), + [anon_sym_const] = ACTIONS(919), + [anon_sym_continue] = ACTIONS(919), + [anon_sym_default] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(919), + [anon_sym_fn] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_gen] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_impl] = ACTIONS(919), + [anon_sym_let] = ACTIONS(919), + [anon_sym_loop] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mod] = ACTIONS(919), + [anon_sym_pub] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_static] = ACTIONS(919), + [anon_sym_struct] = ACTIONS(919), + [anon_sym_trait] = ACTIONS(919), + [anon_sym_type] = ACTIONS(919), + [anon_sym_union] = ACTIONS(919), + [anon_sym_unsafe] = ACTIONS(919), + [anon_sym_use] = ACTIONS(919), + [anon_sym_where] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [sym_mutable_specifier] = ACTIONS(919), + [sym_integer_literal] = ACTIONS(921), + [aux_sym_string_literal_token1] = ACTIONS(921), + [sym_char_literal] = ACTIONS(921), + [anon_sym_true] = ACTIONS(919), + [anon_sym_false] = ACTIONS(919), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(919), + [sym_super] = ACTIONS(919), + [sym_crate] = ACTIONS(919), + [sym__raw_string_literal_start] = ACTIONS(921), + [sym_float_literal] = ACTIONS(921), }, [204] = { [sym_line_comment] = STATE(204), @@ -40130,172 +40168,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1039), }, [205] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1618), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(205), [sym_block_comment] = STATE(205), - [sym_identifier] = ACTIONS(1041), - [anon_sym_SEMI] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(1043), - [anon_sym_RPAREN] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1043), - [anon_sym_RBRACK] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(1043), - [anon_sym_RBRACE] = ACTIONS(1043), - [anon_sym_EQ_GT] = ACTIONS(1043), - [anon_sym_COLON] = ACTIONS(1041), - [anon_sym_DOLLAR] = ACTIONS(1043), - [anon_sym_PLUS] = ACTIONS(1041), - [anon_sym_STAR] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_u8] = ACTIONS(1041), - [anon_sym_i8] = ACTIONS(1041), - [anon_sym_u16] = ACTIONS(1041), - [anon_sym_i16] = ACTIONS(1041), - [anon_sym_u32] = ACTIONS(1041), - [anon_sym_i32] = ACTIONS(1041), - [anon_sym_u64] = ACTIONS(1041), - [anon_sym_i64] = ACTIONS(1041), - [anon_sym_u128] = ACTIONS(1041), - [anon_sym_i128] = ACTIONS(1041), - [anon_sym_isize] = ACTIONS(1041), - [anon_sym_usize] = ACTIONS(1041), - [anon_sym_f32] = ACTIONS(1041), - [anon_sym_f64] = ACTIONS(1041), - [anon_sym_bool] = ACTIONS(1041), - [anon_sym_str] = ACTIONS(1041), - [anon_sym_char] = ACTIONS(1041), - [anon_sym_DASH] = ACTIONS(1041), - [anon_sym_SLASH] = ACTIONS(1041), - [anon_sym_PERCENT] = ACTIONS(1041), - [anon_sym_CARET] = ACTIONS(1041), - [anon_sym_BANG] = ACTIONS(1041), - [anon_sym_AMP] = ACTIONS(1041), - [anon_sym_PIPE] = ACTIONS(1041), - [anon_sym_AMP_AMP] = ACTIONS(1043), - [anon_sym_PIPE_PIPE] = ACTIONS(1043), - [anon_sym_LT_LT] = ACTIONS(1041), - [anon_sym_GT_GT] = ACTIONS(1041), - [anon_sym_PLUS_EQ] = ACTIONS(1043), - [anon_sym_DASH_EQ] = ACTIONS(1043), - [anon_sym_STAR_EQ] = ACTIONS(1043), - [anon_sym_SLASH_EQ] = ACTIONS(1043), - [anon_sym_PERCENT_EQ] = ACTIONS(1043), - [anon_sym_CARET_EQ] = ACTIONS(1043), - [anon_sym_AMP_EQ] = ACTIONS(1043), - [anon_sym_PIPE_EQ] = ACTIONS(1043), - [anon_sym_LT_LT_EQ] = ACTIONS(1043), - [anon_sym_GT_GT_EQ] = ACTIONS(1043), - [anon_sym_EQ] = ACTIONS(1041), - [anon_sym_EQ_EQ] = ACTIONS(1043), - [anon_sym_BANG_EQ] = ACTIONS(1043), - [anon_sym_GT] = ACTIONS(1041), - [anon_sym_LT] = ACTIONS(1041), - [anon_sym_GT_EQ] = ACTIONS(1043), - [anon_sym_LT_EQ] = ACTIONS(1043), - [anon_sym_AT] = ACTIONS(1043), - [anon_sym__] = ACTIONS(1041), - [anon_sym_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), - [anon_sym_COMMA] = ACTIONS(1043), - [anon_sym_COLON_COLON] = ACTIONS(1043), - [anon_sym_DASH_GT] = ACTIONS(1043), - [anon_sym_POUND] = ACTIONS(1043), - [anon_sym_SQUOTE] = ACTIONS(1041), - [anon_sym_as] = ACTIONS(1041), - [anon_sym_async] = ACTIONS(1041), - [anon_sym_await] = ACTIONS(1041), - [anon_sym_break] = ACTIONS(1041), - [anon_sym_const] = ACTIONS(1041), - [anon_sym_continue] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_enum] = ACTIONS(1041), - [anon_sym_fn] = ACTIONS(1041), - [anon_sym_for] = ACTIONS(1041), - [anon_sym_gen] = ACTIONS(1041), - [anon_sym_if] = ACTIONS(1041), - [anon_sym_impl] = ACTIONS(1041), - [anon_sym_let] = ACTIONS(1041), - [anon_sym_loop] = ACTIONS(1041), - [anon_sym_match] = ACTIONS(1041), - [anon_sym_mod] = ACTIONS(1041), - [anon_sym_pub] = ACTIONS(1041), - [anon_sym_return] = ACTIONS(1041), - [anon_sym_static] = ACTIONS(1041), - [anon_sym_struct] = ACTIONS(1041), - [anon_sym_trait] = ACTIONS(1041), - [anon_sym_type] = ACTIONS(1041), - [anon_sym_union] = ACTIONS(1041), - [anon_sym_unsafe] = ACTIONS(1041), - [anon_sym_use] = ACTIONS(1041), - [anon_sym_where] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(1041), - [sym_mutable_specifier] = ACTIONS(1041), - [sym_integer_literal] = ACTIONS(1043), - [aux_sym_string_literal_token1] = ACTIONS(1043), - [sym_char_literal] = ACTIONS(1043), - [anon_sym_true] = ACTIONS(1041), - [anon_sym_false] = ACTIONS(1041), + [aux_sym_enum_variant_list_repeat1] = STATE(994), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(744), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1041), - [sym_super] = ACTIONS(1041), - [sym_crate] = ACTIONS(1041), - [sym__raw_string_literal_start] = ACTIONS(1043), - [sym_float_literal] = ACTIONS(1043), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [206] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1851), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1585), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(206), [sym_block_comment] = STATE(206), - [aux_sym_enum_variant_list_repeat1] = STATE(913), + [aux_sym_enum_variant_list_repeat1] = STATE(994), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -40362,72 +40400,417 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [207] = { [sym_line_comment] = STATE(207), [sym_block_comment] = STATE(207), - [sym_identifier] = ACTIONS(965), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_RPAREN] = ACTIONS(967), - [anon_sym_LBRACK] = ACTIONS(967), - [anon_sym_RBRACK] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_EQ_GT] = ACTIONS(967), - [anon_sym_COLON] = ACTIONS(965), - [anon_sym_DOLLAR] = ACTIONS(967), - [anon_sym_PLUS] = ACTIONS(965), - [anon_sym_STAR] = ACTIONS(965), - [anon_sym_QMARK] = ACTIONS(967), - [anon_sym_u8] = ACTIONS(965), - [anon_sym_i8] = ACTIONS(965), - [anon_sym_u16] = ACTIONS(965), - [anon_sym_i16] = ACTIONS(965), - [anon_sym_u32] = ACTIONS(965), - [anon_sym_i32] = ACTIONS(965), - [anon_sym_u64] = ACTIONS(965), - [anon_sym_i64] = ACTIONS(965), - [anon_sym_u128] = ACTIONS(965), - [anon_sym_i128] = ACTIONS(965), - [anon_sym_isize] = ACTIONS(965), - [anon_sym_usize] = ACTIONS(965), - [anon_sym_f32] = ACTIONS(965), - [anon_sym_f64] = ACTIONS(965), - [anon_sym_bool] = ACTIONS(965), - [anon_sym_str] = ACTIONS(965), - [anon_sym_char] = ACTIONS(965), - [anon_sym_DASH] = ACTIONS(965), - [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_PERCENT] = ACTIONS(965), - [anon_sym_CARET] = ACTIONS(965), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_AMP] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [anon_sym_LT_LT] = ACTIONS(965), - [anon_sym_GT_GT] = ACTIONS(965), - [anon_sym_PLUS_EQ] = ACTIONS(967), - [anon_sym_DASH_EQ] = ACTIONS(967), - [anon_sym_STAR_EQ] = ACTIONS(967), - [anon_sym_SLASH_EQ] = ACTIONS(967), - [anon_sym_PERCENT_EQ] = ACTIONS(967), - [anon_sym_CARET_EQ] = ACTIONS(967), - [anon_sym_AMP_EQ] = ACTIONS(967), - [anon_sym_PIPE_EQ] = ACTIONS(967), - [anon_sym_LT_LT_EQ] = ACTIONS(967), - [anon_sym_GT_GT_EQ] = ACTIONS(967), - [anon_sym_EQ] = ACTIONS(965), - [anon_sym_EQ_EQ] = ACTIONS(967), - [anon_sym_BANG_EQ] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(965), - [anon_sym_GT_EQ] = ACTIONS(967), - [anon_sym_LT_EQ] = ACTIONS(967), - [anon_sym_AT] = ACTIONS(967), - [anon_sym__] = ACTIONS(965), - [anon_sym_DOT] = ACTIONS(965), - [anon_sym_DOT_DOT] = ACTIONS(965), - [anon_sym_DOT_DOT_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT_EQ] = ACTIONS(967), - [anon_sym_COMMA] = ACTIONS(967), + [sym_identifier] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1005), + [anon_sym_RPAREN] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1005), + [anon_sym_RBRACK] = ACTIONS(1005), + [anon_sym_LBRACE] = ACTIONS(1005), + [anon_sym_RBRACE] = ACTIONS(1005), + [anon_sym_EQ_GT] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1003), + [anon_sym_DOLLAR] = ACTIONS(1005), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_STAR] = ACTIONS(1003), + [anon_sym_QMARK] = ACTIONS(1005), + [anon_sym_u8] = ACTIONS(1003), + [anon_sym_i8] = ACTIONS(1003), + [anon_sym_u16] = ACTIONS(1003), + [anon_sym_i16] = ACTIONS(1003), + [anon_sym_u32] = ACTIONS(1003), + [anon_sym_i32] = ACTIONS(1003), + [anon_sym_u64] = ACTIONS(1003), + [anon_sym_i64] = ACTIONS(1003), + [anon_sym_u128] = ACTIONS(1003), + [anon_sym_i128] = ACTIONS(1003), + [anon_sym_isize] = ACTIONS(1003), + [anon_sym_usize] = ACTIONS(1003), + [anon_sym_f32] = ACTIONS(1003), + [anon_sym_f64] = ACTIONS(1003), + [anon_sym_bool] = ACTIONS(1003), + [anon_sym_str] = ACTIONS(1003), + [anon_sym_char] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_SLASH] = ACTIONS(1003), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1003), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_AMP_AMP] = ACTIONS(1005), + [anon_sym_PIPE_PIPE] = ACTIONS(1005), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_PLUS_EQ] = ACTIONS(1005), + [anon_sym_DASH_EQ] = ACTIONS(1005), + [anon_sym_STAR_EQ] = ACTIONS(1005), + [anon_sym_SLASH_EQ] = ACTIONS(1005), + [anon_sym_PERCENT_EQ] = ACTIONS(1005), + [anon_sym_CARET_EQ] = ACTIONS(1005), + [anon_sym_AMP_EQ] = ACTIONS(1005), + [anon_sym_PIPE_EQ] = ACTIONS(1005), + [anon_sym_LT_LT_EQ] = ACTIONS(1005), + [anon_sym_GT_GT_EQ] = ACTIONS(1005), + [anon_sym_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1005), + [anon_sym_BANG_EQ] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1005), + [anon_sym_LT_EQ] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(1005), + [anon_sym__] = ACTIONS(1003), + [anon_sym_DOT] = ACTIONS(1003), + [anon_sym_DOT_DOT] = ACTIONS(1003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1005), + [anon_sym_COMMA] = ACTIONS(1005), + [anon_sym_COLON_COLON] = ACTIONS(1005), + [anon_sym_DASH_GT] = ACTIONS(1005), + [anon_sym_POUND] = ACTIONS(1005), + [anon_sym_SQUOTE] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1003), + [anon_sym_async] = ACTIONS(1003), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_break] = ACTIONS(1003), + [anon_sym_const] = ACTIONS(1003), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_default] = ACTIONS(1003), + [anon_sym_enum] = ACTIONS(1003), + [anon_sym_fn] = ACTIONS(1003), + [anon_sym_for] = ACTIONS(1003), + [anon_sym_gen] = ACTIONS(1003), + [anon_sym_if] = ACTIONS(1003), + [anon_sym_impl] = ACTIONS(1003), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_loop] = ACTIONS(1003), + [anon_sym_match] = ACTIONS(1003), + [anon_sym_mod] = ACTIONS(1003), + [anon_sym_pub] = ACTIONS(1003), + [anon_sym_return] = ACTIONS(1003), + [anon_sym_static] = ACTIONS(1003), + [anon_sym_struct] = ACTIONS(1003), + [anon_sym_trait] = ACTIONS(1003), + [anon_sym_type] = ACTIONS(1003), + [anon_sym_union] = ACTIONS(1003), + [anon_sym_unsafe] = ACTIONS(1003), + [anon_sym_use] = ACTIONS(1003), + [anon_sym_where] = ACTIONS(1003), + [anon_sym_while] = ACTIONS(1003), + [sym_mutable_specifier] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(1005), + [aux_sym_string_literal_token1] = ACTIONS(1005), + [sym_char_literal] = ACTIONS(1005), + [anon_sym_true] = ACTIONS(1003), + [anon_sym_false] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1003), + [sym_super] = ACTIONS(1003), + [sym_crate] = ACTIONS(1003), + [sym__raw_string_literal_start] = ACTIONS(1005), + [sym_float_literal] = ACTIONS(1005), + }, + [208] = { + [sym_line_comment] = STATE(208), + [sym_block_comment] = STATE(208), + [sym_identifier] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_RPAREN] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_RBRACK] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_EQ_GT] = ACTIONS(991), + [anon_sym_COLON] = ACTIONS(989), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_QMARK] = ACTIONS(991), + [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_DASH] = ACTIONS(989), + [anon_sym_SLASH] = ACTIONS(989), + [anon_sym_PERCENT] = ACTIONS(989), + [anon_sym_CARET] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(991), + [anon_sym_PIPE_PIPE] = ACTIONS(991), + [anon_sym_LT_LT] = ACTIONS(989), + [anon_sym_GT_GT] = ACTIONS(989), + [anon_sym_PLUS_EQ] = ACTIONS(991), + [anon_sym_DASH_EQ] = ACTIONS(991), + [anon_sym_STAR_EQ] = ACTIONS(991), + [anon_sym_SLASH_EQ] = ACTIONS(991), + [anon_sym_PERCENT_EQ] = ACTIONS(991), + [anon_sym_CARET_EQ] = ACTIONS(991), + [anon_sym_AMP_EQ] = ACTIONS(991), + [anon_sym_PIPE_EQ] = ACTIONS(991), + [anon_sym_LT_LT_EQ] = ACTIONS(991), + [anon_sym_GT_GT_EQ] = ACTIONS(991), + [anon_sym_EQ] = ACTIONS(989), + [anon_sym_EQ_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ] = ACTIONS(991), + [anon_sym_GT] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(989), + [anon_sym_GT_EQ] = ACTIONS(991), + [anon_sym_LT_EQ] = ACTIONS(991), + [anon_sym_AT] = ACTIONS(991), + [anon_sym__] = ACTIONS(989), + [anon_sym_DOT] = ACTIONS(989), + [anon_sym_DOT_DOT] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(991), + [anon_sym_DOT_DOT_EQ] = ACTIONS(991), + [anon_sym_COMMA] = ACTIONS(991), + [anon_sym_COLON_COLON] = ACTIONS(991), + [anon_sym_DASH_GT] = ACTIONS(991), + [anon_sym_POUND] = ACTIONS(991), + [anon_sym_SQUOTE] = ACTIONS(989), + [anon_sym_as] = ACTIONS(989), + [anon_sym_async] = ACTIONS(989), + [anon_sym_await] = ACTIONS(989), + [anon_sym_break] = ACTIONS(989), + [anon_sym_const] = ACTIONS(989), + [anon_sym_continue] = ACTIONS(989), + [anon_sym_default] = ACTIONS(989), + [anon_sym_enum] = ACTIONS(989), + [anon_sym_fn] = ACTIONS(989), + [anon_sym_for] = ACTIONS(989), + [anon_sym_gen] = ACTIONS(989), + [anon_sym_if] = ACTIONS(989), + [anon_sym_impl] = ACTIONS(989), + [anon_sym_let] = ACTIONS(989), + [anon_sym_loop] = ACTIONS(989), + [anon_sym_match] = ACTIONS(989), + [anon_sym_mod] = ACTIONS(989), + [anon_sym_pub] = ACTIONS(989), + [anon_sym_return] = ACTIONS(989), + [anon_sym_static] = ACTIONS(989), + [anon_sym_struct] = ACTIONS(989), + [anon_sym_trait] = ACTIONS(989), + [anon_sym_type] = ACTIONS(989), + [anon_sym_union] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_use] = ACTIONS(989), + [anon_sym_where] = ACTIONS(989), + [anon_sym_while] = ACTIONS(989), + [sym_mutable_specifier] = ACTIONS(989), + [sym_integer_literal] = ACTIONS(991), + [aux_sym_string_literal_token1] = ACTIONS(991), + [sym_char_literal] = ACTIONS(991), + [anon_sym_true] = ACTIONS(989), + [anon_sym_false] = ACTIONS(989), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(989), + [sym_super] = ACTIONS(989), + [sym_crate] = ACTIONS(989), + [sym__raw_string_literal_start] = ACTIONS(991), + [sym_float_literal] = ACTIONS(991), + }, + [209] = { + [sym_line_comment] = STATE(209), + [sym_block_comment] = STATE(209), + [sym_identifier] = ACTIONS(897), + [anon_sym_SEMI] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(899), + [anon_sym_RPAREN] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_RBRACK] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_COLON] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(899), + [anon_sym_PLUS] = ACTIONS(897), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_QMARK] = ACTIONS(899), + [anon_sym_u8] = ACTIONS(897), + [anon_sym_i8] = ACTIONS(897), + [anon_sym_u16] = ACTIONS(897), + [anon_sym_i16] = ACTIONS(897), + [anon_sym_u32] = ACTIONS(897), + [anon_sym_i32] = ACTIONS(897), + [anon_sym_u64] = ACTIONS(897), + [anon_sym_i64] = ACTIONS(897), + [anon_sym_u128] = ACTIONS(897), + [anon_sym_i128] = ACTIONS(897), + [anon_sym_isize] = ACTIONS(897), + [anon_sym_usize] = ACTIONS(897), + [anon_sym_f32] = ACTIONS(897), + [anon_sym_f64] = ACTIONS(897), + [anon_sym_bool] = ACTIONS(897), + [anon_sym_str] = ACTIONS(897), + [anon_sym_char] = ACTIONS(897), + [anon_sym_DASH] = ACTIONS(897), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(897), + [anon_sym_BANG] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_AMP_AMP] = ACTIONS(899), + [anon_sym_PIPE_PIPE] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(897), + [anon_sym_PLUS_EQ] = ACTIONS(899), + [anon_sym_DASH_EQ] = ACTIONS(899), + [anon_sym_STAR_EQ] = ACTIONS(899), + [anon_sym_SLASH_EQ] = ACTIONS(899), + [anon_sym_PERCENT_EQ] = ACTIONS(899), + [anon_sym_CARET_EQ] = ACTIONS(899), + [anon_sym_AMP_EQ] = ACTIONS(899), + [anon_sym_PIPE_EQ] = ACTIONS(899), + [anon_sym_LT_LT_EQ] = ACTIONS(899), + [anon_sym_GT_GT_EQ] = ACTIONS(899), + [anon_sym_EQ] = ACTIONS(897), + [anon_sym_EQ_EQ] = ACTIONS(899), + [anon_sym_BANG_EQ] = ACTIONS(899), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT_EQ] = ACTIONS(899), + [anon_sym_LT_EQ] = ACTIONS(899), + [anon_sym_AT] = ACTIONS(899), + [anon_sym__] = ACTIONS(897), + [anon_sym_DOT] = ACTIONS(897), + [anon_sym_DOT_DOT] = ACTIONS(897), + [anon_sym_DOT_DOT_DOT] = ACTIONS(899), + [anon_sym_DOT_DOT_EQ] = ACTIONS(899), + [anon_sym_COMMA] = ACTIONS(899), + [anon_sym_COLON_COLON] = ACTIONS(899), + [anon_sym_DASH_GT] = ACTIONS(899), + [anon_sym_POUND] = ACTIONS(899), + [anon_sym_SQUOTE] = ACTIONS(897), + [anon_sym_as] = ACTIONS(897), + [anon_sym_async] = ACTIONS(897), + [anon_sym_await] = ACTIONS(897), + [anon_sym_break] = ACTIONS(897), + [anon_sym_const] = ACTIONS(897), + [anon_sym_continue] = ACTIONS(897), + [anon_sym_default] = ACTIONS(897), + [anon_sym_enum] = ACTIONS(897), + [anon_sym_fn] = ACTIONS(897), + [anon_sym_for] = ACTIONS(897), + [anon_sym_gen] = ACTIONS(897), + [anon_sym_if] = ACTIONS(897), + [anon_sym_impl] = ACTIONS(897), + [anon_sym_let] = ACTIONS(897), + [anon_sym_loop] = ACTIONS(897), + [anon_sym_match] = ACTIONS(897), + [anon_sym_mod] = ACTIONS(897), + [anon_sym_pub] = ACTIONS(897), + [anon_sym_return] = ACTIONS(897), + [anon_sym_static] = ACTIONS(897), + [anon_sym_struct] = ACTIONS(897), + [anon_sym_trait] = ACTIONS(897), + [anon_sym_type] = ACTIONS(897), + [anon_sym_union] = ACTIONS(897), + [anon_sym_unsafe] = ACTIONS(897), + [anon_sym_use] = ACTIONS(897), + [anon_sym_where] = ACTIONS(897), + [anon_sym_while] = ACTIONS(897), + [sym_mutable_specifier] = ACTIONS(897), + [sym_integer_literal] = ACTIONS(899), + [aux_sym_string_literal_token1] = ACTIONS(899), + [sym_char_literal] = ACTIONS(899), + [anon_sym_true] = ACTIONS(897), + [anon_sym_false] = ACTIONS(897), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(897), + [sym_super] = ACTIONS(897), + [sym_crate] = ACTIONS(897), + [sym__raw_string_literal_start] = ACTIONS(899), + [sym_float_literal] = ACTIONS(899), + }, + [210] = { + [sym_line_comment] = STATE(210), + [sym_block_comment] = STATE(210), + [sym_identifier] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(967), + [anon_sym_RBRACK] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_EQ_GT] = ACTIONS(967), + [anon_sym_COLON] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(965), + [anon_sym_i8] = ACTIONS(965), + [anon_sym_u16] = ACTIONS(965), + [anon_sym_i16] = ACTIONS(965), + [anon_sym_u32] = ACTIONS(965), + [anon_sym_i32] = ACTIONS(965), + [anon_sym_u64] = ACTIONS(965), + [anon_sym_i64] = ACTIONS(965), + [anon_sym_u128] = ACTIONS(965), + [anon_sym_i128] = ACTIONS(965), + [anon_sym_isize] = ACTIONS(965), + [anon_sym_usize] = ACTIONS(965), + [anon_sym_f32] = ACTIONS(965), + [anon_sym_f64] = ACTIONS(965), + [anon_sym_bool] = ACTIONS(965), + [anon_sym_str] = ACTIONS(965), + [anon_sym_char] = ACTIONS(965), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_PERCENT] = ACTIONS(965), + [anon_sym_CARET] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(965), + [anon_sym_PIPE] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(965), + [anon_sym_GT_GT] = ACTIONS(965), + [anon_sym_PLUS_EQ] = ACTIONS(967), + [anon_sym_DASH_EQ] = ACTIONS(967), + [anon_sym_STAR_EQ] = ACTIONS(967), + [anon_sym_SLASH_EQ] = ACTIONS(967), + [anon_sym_PERCENT_EQ] = ACTIONS(967), + [anon_sym_CARET_EQ] = ACTIONS(967), + [anon_sym_AMP_EQ] = ACTIONS(967), + [anon_sym_PIPE_EQ] = ACTIONS(967), + [anon_sym_LT_LT_EQ] = ACTIONS(967), + [anon_sym_GT_GT_EQ] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_EQ_EQ] = ACTIONS(967), + [anon_sym_BANG_EQ] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(965), + [anon_sym_GT_EQ] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(967), + [anon_sym_AT] = ACTIONS(967), + [anon_sym__] = ACTIONS(965), + [anon_sym_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(967), + [anon_sym_COMMA] = ACTIONS(967), [anon_sym_COLON_COLON] = ACTIONS(967), [anon_sym_DASH_GT] = ACTIONS(967), [anon_sym_POUND] = ACTIONS(967), @@ -40474,580 +40857,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(967), [sym_float_literal] = ACTIONS(967), }, - [208] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1640), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(208), - [sym_block_comment] = STATE(208), - [aux_sym_enum_variant_list_repeat1] = STATE(913), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(744), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [209] = { - [sym_line_comment] = STATE(209), - [sym_block_comment] = STATE(209), - [sym_identifier] = ACTIONS(977), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_LPAREN] = ACTIONS(979), - [anon_sym_RPAREN] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_RBRACK] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(979), - [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_EQ_GT] = ACTIONS(979), - [anon_sym_COLON] = ACTIONS(977), - [anon_sym_DOLLAR] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(977), - [anon_sym_STAR] = ACTIONS(977), - [anon_sym_QMARK] = ACTIONS(979), - [anon_sym_u8] = ACTIONS(977), - [anon_sym_i8] = ACTIONS(977), - [anon_sym_u16] = ACTIONS(977), - [anon_sym_i16] = ACTIONS(977), - [anon_sym_u32] = ACTIONS(977), - [anon_sym_i32] = ACTIONS(977), - [anon_sym_u64] = ACTIONS(977), - [anon_sym_i64] = ACTIONS(977), - [anon_sym_u128] = ACTIONS(977), - [anon_sym_i128] = ACTIONS(977), - [anon_sym_isize] = ACTIONS(977), - [anon_sym_usize] = ACTIONS(977), - [anon_sym_f32] = ACTIONS(977), - [anon_sym_f64] = ACTIONS(977), - [anon_sym_bool] = ACTIONS(977), - [anon_sym_str] = ACTIONS(977), - [anon_sym_char] = ACTIONS(977), - [anon_sym_DASH] = ACTIONS(977), - [anon_sym_SLASH] = ACTIONS(977), - [anon_sym_PERCENT] = ACTIONS(977), - [anon_sym_CARET] = ACTIONS(977), - [anon_sym_BANG] = ACTIONS(977), - [anon_sym_AMP] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(977), - [anon_sym_AMP_AMP] = ACTIONS(979), - [anon_sym_PIPE_PIPE] = ACTIONS(979), - [anon_sym_LT_LT] = ACTIONS(977), - [anon_sym_GT_GT] = ACTIONS(977), - [anon_sym_PLUS_EQ] = ACTIONS(979), - [anon_sym_DASH_EQ] = ACTIONS(979), - [anon_sym_STAR_EQ] = ACTIONS(979), - [anon_sym_SLASH_EQ] = ACTIONS(979), - [anon_sym_PERCENT_EQ] = ACTIONS(979), - [anon_sym_CARET_EQ] = ACTIONS(979), - [anon_sym_AMP_EQ] = ACTIONS(979), - [anon_sym_PIPE_EQ] = ACTIONS(979), - [anon_sym_LT_LT_EQ] = ACTIONS(979), - [anon_sym_GT_GT_EQ] = ACTIONS(979), - [anon_sym_EQ] = ACTIONS(977), - [anon_sym_EQ_EQ] = ACTIONS(979), - [anon_sym_BANG_EQ] = ACTIONS(979), - [anon_sym_GT] = ACTIONS(977), - [anon_sym_LT] = ACTIONS(977), - [anon_sym_GT_EQ] = ACTIONS(979), - [anon_sym_LT_EQ] = ACTIONS(979), - [anon_sym_AT] = ACTIONS(979), - [anon_sym__] = ACTIONS(977), - [anon_sym_DOT] = ACTIONS(977), - [anon_sym_DOT_DOT] = ACTIONS(977), - [anon_sym_DOT_DOT_DOT] = ACTIONS(979), - [anon_sym_DOT_DOT_EQ] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(979), - [anon_sym_POUND] = ACTIONS(979), - [anon_sym_SQUOTE] = ACTIONS(977), - [anon_sym_as] = ACTIONS(977), - [anon_sym_async] = ACTIONS(977), - [anon_sym_await] = ACTIONS(977), - [anon_sym_break] = ACTIONS(977), - [anon_sym_const] = ACTIONS(977), - [anon_sym_continue] = ACTIONS(977), - [anon_sym_default] = ACTIONS(977), - [anon_sym_enum] = ACTIONS(977), - [anon_sym_fn] = ACTIONS(977), - [anon_sym_for] = ACTIONS(977), - [anon_sym_gen] = ACTIONS(977), - [anon_sym_if] = ACTIONS(977), - [anon_sym_impl] = ACTIONS(977), - [anon_sym_let] = ACTIONS(977), - [anon_sym_loop] = ACTIONS(977), - [anon_sym_match] = ACTIONS(977), - [anon_sym_mod] = ACTIONS(977), - [anon_sym_pub] = ACTIONS(977), - [anon_sym_return] = ACTIONS(977), - [anon_sym_static] = ACTIONS(977), - [anon_sym_struct] = ACTIONS(977), - [anon_sym_trait] = ACTIONS(977), - [anon_sym_type] = ACTIONS(977), - [anon_sym_union] = ACTIONS(977), - [anon_sym_unsafe] = ACTIONS(977), - [anon_sym_use] = ACTIONS(977), - [anon_sym_where] = ACTIONS(977), - [anon_sym_while] = ACTIONS(977), - [sym_mutable_specifier] = ACTIONS(977), - [sym_integer_literal] = ACTIONS(979), - [aux_sym_string_literal_token1] = ACTIONS(979), - [sym_char_literal] = ACTIONS(979), - [anon_sym_true] = ACTIONS(977), - [anon_sym_false] = ACTIONS(977), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(977), - [sym_super] = ACTIONS(977), - [sym_crate] = ACTIONS(977), - [sym__raw_string_literal_start] = ACTIONS(979), - [sym_float_literal] = ACTIONS(979), - }, - [210] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(210), - [sym_block_comment] = STATE(210), - [aux_sym_enum_variant_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(744), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, [211] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1591), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(211), [sym_block_comment] = STATE(211), - [aux_sym_enum_variant_list_repeat1] = STATE(913), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(744), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(979), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(981), + [anon_sym_RPAREN] = ACTIONS(981), + [anon_sym_LBRACK] = ACTIONS(981), + [anon_sym_RBRACK] = ACTIONS(981), + [anon_sym_LBRACE] = ACTIONS(981), + [anon_sym_RBRACE] = ACTIONS(981), + [anon_sym_EQ_GT] = ACTIONS(981), + [anon_sym_COLON] = ACTIONS(979), + [anon_sym_DOLLAR] = ACTIONS(981), + [anon_sym_PLUS] = ACTIONS(979), + [anon_sym_STAR] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(979), + [anon_sym_i8] = ACTIONS(979), + [anon_sym_u16] = ACTIONS(979), + [anon_sym_i16] = ACTIONS(979), + [anon_sym_u32] = ACTIONS(979), + [anon_sym_i32] = ACTIONS(979), + [anon_sym_u64] = ACTIONS(979), + [anon_sym_i64] = ACTIONS(979), + [anon_sym_u128] = ACTIONS(979), + [anon_sym_i128] = ACTIONS(979), + [anon_sym_isize] = ACTIONS(979), + [anon_sym_usize] = ACTIONS(979), + [anon_sym_f32] = ACTIONS(979), + [anon_sym_f64] = ACTIONS(979), + [anon_sym_bool] = ACTIONS(979), + [anon_sym_str] = ACTIONS(979), + [anon_sym_char] = ACTIONS(979), + [anon_sym_DASH] = ACTIONS(979), + [anon_sym_SLASH] = ACTIONS(979), + [anon_sym_PERCENT] = ACTIONS(979), + [anon_sym_CARET] = ACTIONS(979), + [anon_sym_BANG] = ACTIONS(979), + [anon_sym_AMP] = ACTIONS(979), + [anon_sym_PIPE] = ACTIONS(979), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(979), + [anon_sym_GT_GT] = ACTIONS(979), + [anon_sym_PLUS_EQ] = ACTIONS(981), + [anon_sym_DASH_EQ] = ACTIONS(981), + [anon_sym_STAR_EQ] = ACTIONS(981), + [anon_sym_SLASH_EQ] = ACTIONS(981), + [anon_sym_PERCENT_EQ] = ACTIONS(981), + [anon_sym_CARET_EQ] = ACTIONS(981), + [anon_sym_AMP_EQ] = ACTIONS(981), + [anon_sym_PIPE_EQ] = ACTIONS(981), + [anon_sym_LT_LT_EQ] = ACTIONS(981), + [anon_sym_GT_GT_EQ] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(979), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(979), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_AT] = ACTIONS(981), + [anon_sym__] = ACTIONS(979), + [anon_sym_DOT] = ACTIONS(979), + [anon_sym_DOT_DOT] = ACTIONS(979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(981), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_COLON_COLON] = ACTIONS(981), + [anon_sym_DASH_GT] = ACTIONS(981), + [anon_sym_POUND] = ACTIONS(981), + [anon_sym_SQUOTE] = ACTIONS(979), + [anon_sym_as] = ACTIONS(979), + [anon_sym_async] = ACTIONS(979), + [anon_sym_await] = ACTIONS(979), + [anon_sym_break] = ACTIONS(979), + [anon_sym_const] = ACTIONS(979), + [anon_sym_continue] = ACTIONS(979), + [anon_sym_default] = ACTIONS(979), + [anon_sym_enum] = ACTIONS(979), + [anon_sym_fn] = ACTIONS(979), + [anon_sym_for] = ACTIONS(979), + [anon_sym_gen] = ACTIONS(979), + [anon_sym_if] = ACTIONS(979), + [anon_sym_impl] = ACTIONS(979), + [anon_sym_let] = ACTIONS(979), + [anon_sym_loop] = ACTIONS(979), + [anon_sym_match] = ACTIONS(979), + [anon_sym_mod] = ACTIONS(979), + [anon_sym_pub] = ACTIONS(979), + [anon_sym_return] = ACTIONS(979), + [anon_sym_static] = ACTIONS(979), + [anon_sym_struct] = ACTIONS(979), + [anon_sym_trait] = ACTIONS(979), + [anon_sym_type] = ACTIONS(979), + [anon_sym_union] = ACTIONS(979), + [anon_sym_unsafe] = ACTIONS(979), + [anon_sym_use] = ACTIONS(979), + [anon_sym_where] = ACTIONS(979), + [anon_sym_while] = ACTIONS(979), + [sym_mutable_specifier] = ACTIONS(979), + [sym_integer_literal] = ACTIONS(981), + [aux_sym_string_literal_token1] = ACTIONS(981), + [sym_char_literal] = ACTIONS(981), + [anon_sym_true] = ACTIONS(979), + [anon_sym_false] = ACTIONS(979), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(979), + [sym_super] = ACTIONS(979), + [sym_crate] = ACTIONS(979), + [sym__raw_string_literal_start] = ACTIONS(981), + [sym_float_literal] = ACTIONS(981), }, [212] = { - [sym_attribute_item] = STATE(1007), - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1869), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), [sym_line_comment] = STATE(212), [sym_block_comment] = STATE(212), - [aux_sym_enum_variant_list_repeat1] = STATE(913), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(744), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [sym_identifier] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_RPAREN] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_RBRACK] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_EQ_GT] = ACTIONS(1043), + [anon_sym_COLON] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(1041), + [anon_sym_i8] = ACTIONS(1041), + [anon_sym_u16] = ACTIONS(1041), + [anon_sym_i16] = ACTIONS(1041), + [anon_sym_u32] = ACTIONS(1041), + [anon_sym_i32] = ACTIONS(1041), + [anon_sym_u64] = ACTIONS(1041), + [anon_sym_i64] = ACTIONS(1041), + [anon_sym_u128] = ACTIONS(1041), + [anon_sym_i128] = ACTIONS(1041), + [anon_sym_isize] = ACTIONS(1041), + [anon_sym_usize] = ACTIONS(1041), + [anon_sym_f32] = ACTIONS(1041), + [anon_sym_f64] = ACTIONS(1041), + [anon_sym_bool] = ACTIONS(1041), + [anon_sym_str] = ACTIONS(1041), + [anon_sym_char] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1041), + [anon_sym_PIPE] = ACTIONS(1041), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1041), + [anon_sym_GT_GT] = ACTIONS(1041), + [anon_sym_PLUS_EQ] = ACTIONS(1043), + [anon_sym_DASH_EQ] = ACTIONS(1043), + [anon_sym_STAR_EQ] = ACTIONS(1043), + [anon_sym_SLASH_EQ] = ACTIONS(1043), + [anon_sym_PERCENT_EQ] = ACTIONS(1043), + [anon_sym_CARET_EQ] = ACTIONS(1043), + [anon_sym_AMP_EQ] = ACTIONS(1043), + [anon_sym_PIPE_EQ] = ACTIONS(1043), + [anon_sym_LT_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_GT_EQ] = ACTIONS(1043), + [anon_sym_EQ] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_AT] = ACTIONS(1043), + [anon_sym__] = ACTIONS(1041), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), + [anon_sym_COMMA] = ACTIONS(1043), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym_DASH_GT] = ACTIONS(1043), + [anon_sym_POUND] = ACTIONS(1043), + [anon_sym_SQUOTE] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_async] = ACTIONS(1041), + [anon_sym_await] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_enum] = ACTIONS(1041), + [anon_sym_fn] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_gen] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_impl] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_pub] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_struct] = ACTIONS(1041), + [anon_sym_trait] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_union] = ACTIONS(1041), + [anon_sym_unsafe] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_where] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [sym_mutable_specifier] = ACTIONS(1041), + [sym_integer_literal] = ACTIONS(1043), + [aux_sym_string_literal_token1] = ACTIONS(1043), + [sym_char_literal] = ACTIONS(1043), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(1041), + [sym_super] = ACTIONS(1041), + [sym_crate] = ACTIONS(1041), + [sym__raw_string_literal_start] = ACTIONS(1043), + [sym_float_literal] = ACTIONS(1043), }, [213] = { [sym_line_comment] = STATE(213), @@ -41165,174 +41203,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1047), }, [214] = { + [sym_attribute_item] = STATE(1011), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1869), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(214), [sym_block_comment] = STATE(214), - [sym_identifier] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_RBRACK] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(975), - [anon_sym_PLUS] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(973), - [anon_sym_i8] = ACTIONS(973), - [anon_sym_u16] = ACTIONS(973), - [anon_sym_i16] = ACTIONS(973), - [anon_sym_u32] = ACTIONS(973), - [anon_sym_i32] = ACTIONS(973), - [anon_sym_u64] = ACTIONS(973), - [anon_sym_i64] = ACTIONS(973), - [anon_sym_u128] = ACTIONS(973), - [anon_sym_i128] = ACTIONS(973), - [anon_sym_isize] = ACTIONS(973), - [anon_sym_usize] = ACTIONS(973), - [anon_sym_f32] = ACTIONS(973), - [anon_sym_f64] = ACTIONS(973), - [anon_sym_bool] = ACTIONS(973), - [anon_sym_str] = ACTIONS(973), - [anon_sym_char] = ACTIONS(973), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(973), - [anon_sym_PERCENT] = ACTIONS(973), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [anon_sym_LT_LT] = ACTIONS(973), - [anon_sym_GT_GT] = ACTIONS(973), - [anon_sym_PLUS_EQ] = ACTIONS(975), - [anon_sym_DASH_EQ] = ACTIONS(975), - [anon_sym_STAR_EQ] = ACTIONS(975), - [anon_sym_SLASH_EQ] = ACTIONS(975), - [anon_sym_PERCENT_EQ] = ACTIONS(975), - [anon_sym_CARET_EQ] = ACTIONS(975), - [anon_sym_AMP_EQ] = ACTIONS(975), - [anon_sym_PIPE_EQ] = ACTIONS(975), - [anon_sym_LT_LT_EQ] = ACTIONS(975), - [anon_sym_GT_GT_EQ] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(973), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT_EQ] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_AT] = ACTIONS(975), - [anon_sym__] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_DOT_DOT] = ACTIONS(973), - [anon_sym_DOT_DOT_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT_EQ] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_COLON_COLON] = ACTIONS(975), - [anon_sym_DASH_GT] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_SQUOTE] = ACTIONS(973), - [anon_sym_as] = ACTIONS(973), - [anon_sym_async] = ACTIONS(973), - [anon_sym_await] = ACTIONS(973), - [anon_sym_break] = ACTIONS(973), - [anon_sym_const] = ACTIONS(973), - [anon_sym_continue] = ACTIONS(973), - [anon_sym_default] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(973), - [anon_sym_fn] = ACTIONS(973), - [anon_sym_for] = ACTIONS(973), - [anon_sym_gen] = ACTIONS(973), - [anon_sym_if] = ACTIONS(973), - [anon_sym_impl] = ACTIONS(973), - [anon_sym_let] = ACTIONS(973), - [anon_sym_loop] = ACTIONS(973), - [anon_sym_match] = ACTIONS(973), - [anon_sym_mod] = ACTIONS(973), - [anon_sym_pub] = ACTIONS(973), - [anon_sym_return] = ACTIONS(973), - [anon_sym_static] = ACTIONS(973), - [anon_sym_struct] = ACTIONS(973), - [anon_sym_trait] = ACTIONS(973), - [anon_sym_type] = ACTIONS(973), - [anon_sym_union] = ACTIONS(973), - [anon_sym_unsafe] = ACTIONS(973), - [anon_sym_use] = ACTIONS(973), - [anon_sym_where] = ACTIONS(973), - [anon_sym_while] = ACTIONS(973), - [sym_mutable_specifier] = ACTIONS(973), - [sym_integer_literal] = ACTIONS(975), - [aux_sym_string_literal_token1] = ACTIONS(975), - [sym_char_literal] = ACTIONS(975), - [anon_sym_true] = ACTIONS(973), - [anon_sym_false] = ACTIONS(973), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(973), - [sym_super] = ACTIONS(973), - [sym_crate] = ACTIONS(973), - [sym__raw_string_literal_start] = ACTIONS(975), - [sym_float_literal] = ACTIONS(975), - }, - [215] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1664), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(215), - [sym_block_comment] = STATE(215), - [aux_sym_tuple_expression_repeat1] = STATE(219), + [aux_sym_enum_variant_list_repeat1] = STATE(994), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1049), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -41360,6 +41283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(744), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -41393,170 +41317,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [216] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1624), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1429), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(216), - [sym_block_comment] = STATE(216), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1051), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [217] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1494), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1175), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(217), - [sym_block_comment] = STATE(217), + [215] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1656), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1434), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(215), + [sym_block_comment] = STATE(215), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -41584,10 +41394,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1057), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1049), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1061), + [anon_sym_DASH_GT] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -41621,105 +41431,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [218] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1761), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(218), - [sym_block_comment] = STATE(218), - [aux_sym_tuple_expression_repeat1] = STATE(227), - [sym_identifier] = ACTIONS(339), + [216] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1631), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1414), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(216), + [sym_block_comment] = STATE(216), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1063), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym__] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1057), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -41728,112 +41538,340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [217] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_let_condition] = STATE(2712), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym_line_comment] = STATE(217), + [sym_block_comment] = STATE(217), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_let] = ACTIONS(963), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [218] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1884), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_let_condition] = STATE(2712), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym_line_comment] = STATE(218), + [sym_block_comment] = STATE(218), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(961), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_let] = ACTIONS(963), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, [219] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1625), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1401), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(219), [sym_block_comment] = STATE(219), - [aux_sym_tuple_expression_repeat1] = STATE(227), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1065), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym__] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1063), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -41842,68 +41880,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [220] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1728), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1714), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1429), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1434), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(220), [sym_block_comment] = STATE(220), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -41921,33 +41959,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1051), - [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym__] = ACTIONS(1049), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1055), + [anon_sym_DASH_GT] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -41956,68 +41994,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [221] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1781), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1744), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1175), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1414), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(221), [sym_block_comment] = STATE(221), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -42035,33 +42073,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1057), - [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym__] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1061), + [anon_sym_DASH_GT] = ACTIONS(1057), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -42070,182 +42108,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [222] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1756), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1801), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1401), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(222), [sym_block_comment] = STATE(222), - [aux_sym_tuple_expression_repeat1] = STATE(227), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1073), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [223] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(223), - [sym_block_comment] = STATE(223), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -42263,33 +42187,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1075), - [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym__] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1077), + [anon_sym_DASH_GT] = ACTIONS(1063), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -42298,112 +42222,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [224] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1629), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1175), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(224), - [sym_block_comment] = STATE(224), - [sym_identifier] = ACTIONS(465), + [223] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1663), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1414), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(223), + [sym_block_comment] = STATE(223), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1057), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1061), + [anon_sym__] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1057), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -42412,67 +42336,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [225] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1756), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(225), - [sym_block_comment] = STATE(225), - [aux_sym_tuple_expression_repeat1] = STATE(218), + [224] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1682), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1401), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1073), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42493,13 +42415,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1061), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1063), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42533,288 +42457,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [226] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1601), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_let_condition] = STATE(2507), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(226), - [sym_block_comment] = STATE(226), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [227] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(227), - [sym_block_comment] = STATE(227), - [aux_sym_tuple_expression_repeat1] = STATE(227), - [sym_identifier] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(1082), - [anon_sym_RPAREN] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1090), - [anon_sym_STAR] = ACTIONS(1093), - [anon_sym_u8] = ACTIONS(1096), - [anon_sym_i8] = ACTIONS(1096), - [anon_sym_u16] = ACTIONS(1096), - [anon_sym_i16] = ACTIONS(1096), - [anon_sym_u32] = ACTIONS(1096), - [anon_sym_i32] = ACTIONS(1096), - [anon_sym_u64] = ACTIONS(1096), - [anon_sym_i64] = ACTIONS(1096), - [anon_sym_u128] = ACTIONS(1096), - [anon_sym_i128] = ACTIONS(1096), - [anon_sym_isize] = ACTIONS(1096), - [anon_sym_usize] = ACTIONS(1096), - [anon_sym_f32] = ACTIONS(1096), - [anon_sym_f64] = ACTIONS(1096), - [anon_sym_bool] = ACTIONS(1096), - [anon_sym_str] = ACTIONS(1096), - [anon_sym_char] = ACTIONS(1096), - [anon_sym_DASH] = ACTIONS(1093), - [anon_sym_BANG] = ACTIONS(1093), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_PIPE] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1105), - [anon_sym_DOT_DOT] = ACTIONS(1108), - [anon_sym_COLON_COLON] = ACTIONS(1111), - [anon_sym_SQUOTE] = ACTIONS(1114), - [anon_sym_async] = ACTIONS(1117), - [anon_sym_break] = ACTIONS(1120), - [anon_sym_const] = ACTIONS(1123), - [anon_sym_continue] = ACTIONS(1126), - [anon_sym_default] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1132), - [anon_sym_gen] = ACTIONS(1135), - [anon_sym_if] = ACTIONS(1138), - [anon_sym_loop] = ACTIONS(1141), - [anon_sym_match] = ACTIONS(1144), - [anon_sym_return] = ACTIONS(1147), - [anon_sym_static] = ACTIONS(1150), - [anon_sym_union] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1153), - [anon_sym_while] = ACTIONS(1156), - [anon_sym_yield] = ACTIONS(1159), - [anon_sym_move] = ACTIONS(1162), - [anon_sym_try] = ACTIONS(1165), - [sym_integer_literal] = ACTIONS(1168), - [aux_sym_string_literal_token1] = ACTIONS(1171), - [sym_char_literal] = ACTIONS(1168), - [anon_sym_true] = ACTIONS(1174), - [anon_sym_false] = ACTIONS(1174), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1177), - [sym_super] = ACTIONS(1180), - [sym_crate] = ACTIONS(1180), - [sym_metavariable] = ACTIONS(1183), - [sym__raw_string_literal_start] = ACTIONS(1186), - [sym_float_literal] = ACTIONS(1168), - }, - [228] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1675), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(228), - [sym_block_comment] = STATE(228), - [aux_sym_tuple_expression_repeat1] = STATE(227), + [225] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1406), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(225), + [sym_block_comment] = STATE(225), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1189), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42840,7 +42534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -42858,6 +42552,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(1073), + [anon_sym_raw] = ACTIONS(1075), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -42875,60 +42571,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [229] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(229), - [sym_block_comment] = STATE(229), - [aux_sym_tuple_expression_repeat1] = STATE(228), + [226] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1787), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(226), + [sym_block_comment] = STATE(226), + [aux_sym_tuple_expression_repeat1] = STATE(243), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1065), + [anon_sym_RPAREN] = ACTIONS(1077), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42989,176 +42685,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [230] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1785), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_let_condition] = STATE(2507), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(230), - [sym_block_comment] = STATE(230), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [227] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1698), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1850), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym_line_comment] = STATE(227), + [sym_block_comment] = STATE(227), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(915), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym__] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1081), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(917), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [231] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1693), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_let_condition] = STATE(2507), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), - [sym_line_comment] = STATE(231), - [sym_block_comment] = STATE(231), + [228] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1701), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1704), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym_line_comment] = STATE(228), + [sym_block_comment] = STATE(228), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_STAR] = ACTIONS(957), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -43176,13 +42871,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym__] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1085), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -43192,7 +42889,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(427), [anon_sym_gen] = ACTIONS(429), [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(1025), [anon_sym_loop] = ACTIONS(433), [anon_sym_match] = ACTIONS(435), [anon_sym_return] = ACTIONS(437), @@ -43217,58 +42913,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [232] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1429), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(232), - [sym_block_comment] = STATE(232), + [229] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1872), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(229), + [sym_block_comment] = STATE(229), + [aux_sym_tuple_expression_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(1087), + [anon_sym_LPAREN] = ACTIONS(1090), + [anon_sym_RPAREN] = ACTIONS(1093), + [anon_sym_LBRACK] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1098), + [anon_sym_STAR] = ACTIONS(1101), + [anon_sym_u8] = ACTIONS(1104), + [anon_sym_i8] = ACTIONS(1104), + [anon_sym_u16] = ACTIONS(1104), + [anon_sym_i16] = ACTIONS(1104), + [anon_sym_u32] = ACTIONS(1104), + [anon_sym_i32] = ACTIONS(1104), + [anon_sym_u64] = ACTIONS(1104), + [anon_sym_i64] = ACTIONS(1104), + [anon_sym_u128] = ACTIONS(1104), + [anon_sym_i128] = ACTIONS(1104), + [anon_sym_isize] = ACTIONS(1104), + [anon_sym_usize] = ACTIONS(1104), + [anon_sym_f32] = ACTIONS(1104), + [anon_sym_f64] = ACTIONS(1104), + [anon_sym_bool] = ACTIONS(1104), + [anon_sym_str] = ACTIONS(1104), + [anon_sym_char] = ACTIONS(1104), + [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_PIPE] = ACTIONS(1110), + [anon_sym_LT] = ACTIONS(1113), + [anon_sym_DOT_DOT] = ACTIONS(1116), + [anon_sym_COLON_COLON] = ACTIONS(1119), + [anon_sym_SQUOTE] = ACTIONS(1122), + [anon_sym_async] = ACTIONS(1125), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_const] = ACTIONS(1131), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1137), + [anon_sym_for] = ACTIONS(1140), + [anon_sym_gen] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1146), + [anon_sym_loop] = ACTIONS(1149), + [anon_sym_match] = ACTIONS(1152), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(1158), + [anon_sym_union] = ACTIONS(1137), + [anon_sym_unsafe] = ACTIONS(1161), + [anon_sym_while] = ACTIONS(1164), + [anon_sym_yield] = ACTIONS(1167), + [anon_sym_move] = ACTIONS(1170), + [anon_sym_try] = ACTIONS(1173), + [sym_integer_literal] = ACTIONS(1176), + [aux_sym_string_literal_token1] = ACTIONS(1179), + [sym_char_literal] = ACTIONS(1176), + [anon_sym_true] = ACTIONS(1182), + [anon_sym_false] = ACTIONS(1182), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1185), + [sym_super] = ACTIONS(1188), + [sym_crate] = ACTIONS(1188), + [sym_metavariable] = ACTIONS(1191), + [sym__raw_string_literal_start] = ACTIONS(1194), + [sym_float_literal] = ACTIONS(1176), + }, + [230] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1706), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1816), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym_line_comment] = STATE(230), + [sym_block_comment] = STATE(230), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1197), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1199), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [231] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1660), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(231), + [sym_block_comment] = STATE(231), + [aux_sym_tuple_expression_repeat1] = STATE(229), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1201), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43289,15 +43215,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1051), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1055), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -43331,58 +43255,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [232] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1406), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(232), + [sym_block_comment] = STATE(232), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(503), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(1203), + [anon_sym_raw] = ACTIONS(1205), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, [233] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1175), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1735), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(233), [sym_block_comment] = STATE(233), + [aux_sym_tuple_expression_repeat1] = STATE(234), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1207), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43403,15 +43443,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1057), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1061), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -43446,218 +43484,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [234] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1870), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_let_condition] = STATE(2507), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1742), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(234), [sym_block_comment] = STATE(234), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(1025), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [235] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1605), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(235), - [sym_block_comment] = STATE(235), - [sym_identifier] = ACTIONS(465), + [aux_sym_tuple_expression_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1209), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1075), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_DASH_GT] = ACTIONS(1077), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -43666,65 +43590,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [236] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1705), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(236), - [sym_block_comment] = STATE(236), + [235] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1742), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(235), + [sym_block_comment] = STATE(235), + [aux_sym_tuple_expression_repeat1] = STATE(236), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1209), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43745,15 +43671,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1075), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1077), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -43787,60 +43711,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [237] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1750), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(237), - [sym_block_comment] = STATE(237), - [aux_sym_tuple_expression_repeat1] = STATE(222), + [236] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), + [aux_sym_tuple_expression_repeat1] = STATE(229), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1193), + [anon_sym_RPAREN] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43901,56 +43825,398 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [237] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1406), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1069), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(1213), + [anon_sym_raw] = ACTIONS(1215), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, [238] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1500), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1429), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1637), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_let_condition] = STATE(2712), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(238), [sym_block_comment] = STATE(238), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(503), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [239] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1708), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_let_condition] = STATE(2712), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(239), + [sym_block_comment] = STATE(239), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(909), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(503), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [240] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1494), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1401), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(240), + [sym_block_comment] = STATE(240), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -43978,10 +44244,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1051), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1055), + [anon_sym_DASH_GT] = ACTIONS(1063), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -44015,56 +44281,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [239] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1509), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1463), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(239), - [sym_block_comment] = STATE(239), + [241] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1507), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1414), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(241), + [sym_block_comment] = STATE(241), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -44092,10 +44358,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1075), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1077), + [anon_sym_DASH_GT] = ACTIONS(1057), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -44129,289 +44395,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [240] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1719), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1670), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), - [sym_line_comment] = STATE(240), - [sym_block_comment] = STATE(240), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1197), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [241] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1842), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), - [sym_line_comment] = STATE(241), - [sym_block_comment] = STATE(241), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1199), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1201), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, [242] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1726), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1725), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1827), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), [sym_line_comment] = STATE(242), [sym_block_comment] = STATE(242), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_STAR] = ACTIONS(957), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -44429,15 +44467,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1203), - [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1205), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -44454,6 +44490,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(425), [anon_sym_unsafe] = ACTIONS(441), [anon_sym_while] = ACTIONS(443), + [sym_mutable_specifier] = ACTIONS(1217), + [anon_sym_raw] = ACTIONS(1219), [anon_sym_yield] = ACTIONS(445), [anon_sym_move] = ACTIONS(447), [anon_sym_try] = ACTIONS(449), @@ -44472,103 +44510,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [243] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1245), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1717), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(243), [sym_block_comment] = STATE(243), - [sym_identifier] = ACTIONS(465), + [aux_sym_tuple_expression_repeat1] = STATE(229), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1221), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1071), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1207), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -44577,181 +44616,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [244] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1735), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1717), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(244), [sym_block_comment] = STATE(244), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), + [aux_sym_tuple_expression_repeat1] = STATE(231), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [sym_mutable_specifier] = ACTIONS(1209), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [245] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1245), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1638), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1434), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(245), [sym_block_comment] = STATE(245), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -44769,32 +44809,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(501), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym__] = ACTIONS(1049), + [anon_sym_DOT_DOT] = ACTIONS(1055), [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1211), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -44803,61 +44844,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [246] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1245), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1515), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1434), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(246), [sym_block_comment] = STATE(246), [sym_identifier] = ACTIONS(339), @@ -44882,13 +44923,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1049), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1051), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -44905,7 +44948,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1213), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -44924,102 +44966,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [247] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1791), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1745), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(477), + [sym_match_expression] = STATE(477), + [sym_while_expression] = STATE(477), + [sym_loop_expression] = STATE(477), + [sym_for_expression] = STATE(477), + [sym_const_block] = STATE(477), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3605), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(477), + [sym_async_block] = STATE(477), + [sym_gen_block] = STATE(477), + [sym_try_block] = STATE(477), + [sym_block] = STATE(477), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(247), [sym_block_comment] = STATE(247), - [sym_identifier] = ACTIONS(465), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(1223), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(1225), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(1227), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_gen] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1233), + [anon_sym_loop] = ACTIONS(1235), + [anon_sym_match] = ACTIONS(1237), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1241), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1243), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [248] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1502), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(248), + [sym_block_comment] = STATE(248), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1215), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -45028,1412 +45182,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [248] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), - [sym_line_comment] = STATE(248), - [sym_block_comment] = STATE(248), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, [249] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1693), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1461), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(249), [sym_block_comment] = STATE(249), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [250] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1694), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), - [sym_line_comment] = STATE(250), - [sym_block_comment] = STATE(250), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [251] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1695), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), - [sym_line_comment] = STATE(251), - [sym_block_comment] = STATE(251), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [252] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1696), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), - [sym_line_comment] = STATE(252), - [sym_block_comment] = STATE(252), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [253] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1697), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), - [sym_line_comment] = STATE(253), - [sym_block_comment] = STATE(253), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [254] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1698), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), - [sym_line_comment] = STATE(254), - [sym_block_comment] = STATE(254), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [255] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1816), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(255), - [sym_block_comment] = STATE(255), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1215), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [256] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1602), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(256), - [sym_block_comment] = STATE(256), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [257] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1609), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(257), - [sym_block_comment] = STATE(257), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [258] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1612), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(258), - [sym_block_comment] = STATE(258), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [259] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1619), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(259), - [sym_block_comment] = STATE(259), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [260] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1620), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(260), - [sym_block_comment] = STATE(260), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -46451,31 +45261,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -46484,63 +45294,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [261] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1496), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(261), - [sym_block_comment] = STATE(261), + [250] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1859), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(250), + [sym_block_comment] = STATE(250), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46568,7 +45378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -46603,173 +45413,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [262] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1861), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_for_expression] = STATE(465), - [sym_const_block] = STATE(465), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3595), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(465), - [sym_async_block] = STATE(465), - [sym_gen_block] = STATE(465), - [sym_try_block] = STATE(465), - [sym_block] = STATE(465), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(262), - [sym_block_comment] = STATE(262), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1221), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1223), - [anon_sym_gen] = ACTIONS(1225), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_loop] = ACTIONS(1229), - [anon_sym_match] = ACTIONS(1231), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_while] = ACTIONS(1235), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1237), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [263] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1631), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(263), - [sym_block_comment] = STATE(263), + [251] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1776), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(251), + [sym_block_comment] = STATE(251), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -46787,31 +45485,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -46820,63 +45518,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [264] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1867), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(264), - [sym_block_comment] = STATE(264), + [252] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1786), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(252), + [sym_block_comment] = STATE(252), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46939,56 +45637,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [265] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1837), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(265), - [sym_block_comment] = STATE(265), + [253] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1836), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(253), + [sym_block_comment] = STATE(253), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47051,103 +45749,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [266] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1816), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(266), - [sym_block_comment] = STATE(266), - [sym_identifier] = ACTIONS(465), + [254] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1837), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(254), + [sym_block_comment] = STATE(254), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1071), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -47156,63 +45854,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [267] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1491), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(267), - [sym_block_comment] = STATE(267), + [255] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1503), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(255), + [sym_block_comment] = STATE(255), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47240,7 +45938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47275,56 +45973,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [268] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1448), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(268), - [sym_block_comment] = STATE(268), + [256] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1504), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(256), + [sym_block_comment] = STATE(256), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47352,7 +46050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47387,61 +46085,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [269] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), - [sym_line_comment] = STATE(269), - [sym_block_comment] = STATE(269), + [257] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1853), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym_line_comment] = STATE(257), + [sym_block_comment] = STATE(257), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_STAR] = ACTIONS(957), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -47459,12 +46157,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1023), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -47499,56 +46197,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [270] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1496), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(270), - [sym_block_comment] = STATE(270), + [258] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1856), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym_line_comment] = STATE(258), + [sym_block_comment] = STATE(258), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(961), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [259] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1505), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(259), + [sym_block_comment] = STATE(259), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47576,7 +46386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47611,61 +46421,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [271] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), - [sym_line_comment] = STATE(271), - [sym_block_comment] = STATE(271), + [260] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1666), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym_line_comment] = STATE(260), + [sym_block_comment] = STATE(260), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_STAR] = ACTIONS(957), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -47683,12 +46493,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -47723,61 +46533,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [272] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1881), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), - [sym_line_comment] = STATE(272), - [sym_block_comment] = STATE(272), + [261] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1795), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym_line_comment] = STATE(261), + [sym_block_comment] = STATE(261), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_STAR] = ACTIONS(957), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -47795,12 +46605,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1023), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -47835,392 +46645,1064 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [273] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1242), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(273), - [sym_block_comment] = STATE(273), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [262] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1667), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym_line_comment] = STATE(262), + [sym_block_comment] = STATE(262), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [274] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1242), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(274), - [sym_block_comment] = STATE(274), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [263] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1668), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym_line_comment] = STATE(263), + [sym_block_comment] = STATE(263), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [275] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1492), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(275), - [sym_block_comment] = STATE(275), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [264] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1669), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym_line_comment] = STATE(264), + [sym_block_comment] = STATE(264), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [276] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1493), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(276), - [sym_block_comment] = STATE(276), + [265] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1670), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym_line_comment] = STATE(265), + [sym_block_comment] = STATE(265), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [266] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym_line_comment] = STATE(266), + [sym_block_comment] = STATE(266), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [267] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1672), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym_line_comment] = STATE(267), + [sym_block_comment] = STATE(267), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [268] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym_line_comment] = STATE(268), + [sym_block_comment] = STATE(268), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [269] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1674), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym_line_comment] = STATE(269), + [sym_block_comment] = STATE(269), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [270] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1675), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym_line_comment] = STATE(270), + [sym_block_comment] = STATE(270), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [271] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1506), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(271), + [sym_block_comment] = STATE(271), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48248,7 +47730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48283,103 +47765,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [277] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1488), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(277), - [sym_block_comment] = STATE(277), - [sym_identifier] = ACTIONS(339), + [272] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1768), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(272), + [sym_block_comment] = STATE(272), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1245), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -48388,63 +47870,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [278] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1841), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(278), - [sym_block_comment] = STATE(278), + [273] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1508), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(273), + [sym_block_comment] = STATE(273), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48472,7 +47954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48507,61 +47989,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [279] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1734), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), - [sym_line_comment] = STATE(279), - [sym_block_comment] = STATE(279), + [274] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1778), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym_line_comment] = STATE(274), + [sym_block_comment] = STATE(274), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_STAR] = ACTIONS(957), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -48579,12 +48061,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1191), + [anon_sym_DOT_DOT] = ACTIONS(1059), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -48619,56 +48101,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [280] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1855), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(280), - [sym_block_comment] = STATE(280), + [275] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1874), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(275), + [sym_block_comment] = STATE(275), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48731,56 +48213,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [281] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1852), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(281), - [sym_block_comment] = STATE(281), + [276] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1747), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(276), + [sym_block_comment] = STATE(276), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1245), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [277] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1512), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(277), + [sym_block_comment] = STATE(277), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48843,56 +48437,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [282] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1883), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(282), - [sym_block_comment] = STATE(282), + [278] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1877), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(278), + [sym_block_comment] = STATE(278), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48955,56 +48549,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [283] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1862), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(283), - [sym_block_comment] = STATE(283), + [279] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1404), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(279), + [sym_block_comment] = STATE(279), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49032,7 +48626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49067,60 +48661,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [284] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1879), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(456), - [sym_match_expression] = STATE(456), - [sym_while_expression] = STATE(456), - [sym_loop_expression] = STATE(456), - [sym_for_expression] = STATE(456), - [sym_const_block] = STATE(456), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3595), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(456), - [sym_async_block] = STATE(456), - [sym_gen_block] = STATE(456), - [sym_try_block] = STATE(456), - [sym_block] = STATE(456), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(284), - [sym_block_comment] = STATE(284), + [280] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1871), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(280), + [sym_block_comment] = STATE(280), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49147,24 +48741,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1219), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1223), - [anon_sym_gen] = ACTIONS(1225), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_loop] = ACTIONS(1229), - [anon_sym_match] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_while] = ACTIONS(1235), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1237), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -49179,168 +48773,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [285] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(285), - [sym_block_comment] = STATE(285), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1215), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [286] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1880), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(286), - [sym_block_comment] = STATE(286), + [281] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1510), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(281), + [sym_block_comment] = STATE(281), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49368,7 +48850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49403,56 +48885,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [287] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1858), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(287), - [sym_block_comment] = STATE(287), + [282] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1442), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(282), + [sym_block_comment] = STATE(282), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49480,7 +48962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49515,61 +48997,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [288] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1448), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(288), - [sym_block_comment] = STATE(288), + [283] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1641), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(283), + [sym_block_comment] = STATE(283), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -49587,31 +49069,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1055), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49620,68 +49102,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [289] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1790), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), + [284] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1460), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(289), - [sym_block_comment] = STATE(289), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(284), + [sym_block_comment] = STATE(284), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -49699,31 +49181,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49732,110 +49214,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [290] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1414), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(290), - [sym_block_comment] = STATE(290), - [sym_identifier] = ACTIONS(465), + [285] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1883), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(285), + [sym_block_comment] = STATE(285), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1071), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49844,68 +49326,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [291] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1793), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), + [286] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1768), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(291), - [sym_block_comment] = STATE(291), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(286), + [sym_block_comment] = STATE(286), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -49923,31 +49405,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49956,110 +49438,334 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [292] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1794), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(292), - [sym_block_comment] = STATE(292), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(27), + [287] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1676), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1071), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(961), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [288] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1676), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [289] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1881), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -50068,68 +49774,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [293] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1783), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(293), - [sym_block_comment] = STATE(293), + [290] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1404), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -50147,31 +49853,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(1055), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -50180,63 +49886,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [294] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1828), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(294), - [sym_block_comment] = STATE(294), + [291] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1493), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50264,7 +49970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -50299,103 +50005,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [295] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1795), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(295), - [sym_block_comment] = STATE(295), - [sym_identifier] = ACTIONS(465), + [292] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1694), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1071), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -50404,68 +50110,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [296] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1601), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(296), - [sym_block_comment] = STATE(296), + [293] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1461), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -50483,31 +50189,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1055), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -50516,63 +50222,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [297] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1774), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(297), - [sym_block_comment] = STATE(297), + [294] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1743), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50635,56 +50341,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [298] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1782), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(298), - [sym_block_comment] = STATE(298), + [295] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1632), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(503), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [296] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1878), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(296), + [sym_block_comment] = STATE(296), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50747,103 +50565,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [299] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1799), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(299), - [sym_block_comment] = STATE(299), - [sym_identifier] = ACTIONS(465), + [297] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1461), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(1071), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -50852,110 +50670,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [300] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1242), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(300), - [sym_block_comment] = STATE(300), - [sym_identifier] = ACTIONS(465), + [298] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1880), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1071), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -50964,110 +50782,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [301] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1802), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(301), - [sym_block_comment] = STATE(301), - [sym_identifier] = ACTIONS(465), + [299] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1750), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1071), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51076,110 +50894,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [302] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1810), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(302), - [sym_block_comment] = STATE(302), - [sym_identifier] = ACTIONS(465), + [300] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1499), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(1071), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51188,68 +51006,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [303] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1811), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), + [301] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1756), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(303), - [sym_block_comment] = STATE(303), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -51267,31 +51085,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51300,222 +51118,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [304] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1812), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(304), - [sym_block_comment] = STATE(304), - [sym_identifier] = ACTIONS(465), + [302] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1764), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1071), - [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [305] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1566), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(305), - [sym_block_comment] = STATE(305), - [sym_identifier] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_u8] = ACTIONS(467), - [anon_sym_i8] = ACTIONS(467), - [anon_sym_u16] = ACTIONS(467), - [anon_sym_i16] = ACTIONS(467), - [anon_sym_u32] = ACTIONS(467), - [anon_sym_i32] = ACTIONS(467), - [anon_sym_u64] = ACTIONS(467), - [anon_sym_i64] = ACTIONS(467), - [anon_sym_u128] = ACTIONS(467), - [anon_sym_i128] = ACTIONS(467), - [anon_sym_isize] = ACTIONS(467), - [anon_sym_usize] = ACTIONS(467), - [anon_sym_f32] = ACTIONS(467), - [anon_sym_f64] = ACTIONS(467), - [anon_sym_bool] = ACTIONS(467), - [anon_sym_str] = ACTIONS(467), - [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(915), - [anon_sym_COLON_COLON] = ACTIONS(471), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51524,68 +51230,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [306] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1631), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(306), - [sym_block_comment] = STATE(306), + [303] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1558), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(303), + [sym_block_comment] = STATE(303), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -51603,31 +51309,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51636,63 +51342,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [307] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1490), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(307), - [sym_block_comment] = STATE(307), + [304] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1460), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(304), + [sym_block_comment] = STATE(304), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51720,7 +51426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -51755,61 +51461,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [308] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1448), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(308), - [sym_block_comment] = STATE(308), + [305] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1442), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(305), + [sym_block_comment] = STATE(305), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -51827,31 +51533,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51860,63 +51566,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [309] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1495), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(309), - [sym_block_comment] = STATE(309), + [306] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1711), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51944,7 +51650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -51979,56 +51685,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [310] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1873), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(310), - [sym_block_comment] = STATE(310), + [307] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1512), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(307), + [sym_block_comment] = STATE(307), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52056,7 +51762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -52091,56 +51797,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [311] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1871), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(311), - [sym_block_comment] = STATE(311), + [308] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1726), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(308), + [sym_block_comment] = STATE(308), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52203,103 +51909,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [312] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1733), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(312), - [sym_block_comment] = STATE(312), - [sym_identifier] = ACTIONS(339), + [309] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1404), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(309), + [sym_block_comment] = STATE(309), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1069), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52308,110 +52014,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [313] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1746), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(313), - [sym_block_comment] = STATE(313), - [sym_identifier] = ACTIONS(339), + [310] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1757), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(310), + [sym_block_comment] = STATE(310), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1069), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52420,67 +52126,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [314] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1747), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(456), - [sym_match_expression] = STATE(456), - [sym_while_expression] = STATE(456), - [sym_loop_expression] = STATE(456), - [sym_for_expression] = STATE(456), - [sym_const_block] = STATE(456), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3595), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(456), - [sym_async_block] = STATE(456), - [sym_gen_block] = STATE(456), - [sym_try_block] = STATE(456), - [sym_block] = STATE(456), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(314), - [sym_block_comment] = STATE(314), + [311] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1731), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(482), + [sym_match_expression] = STATE(482), + [sym_while_expression] = STATE(482), + [sym_loop_expression] = STATE(482), + [sym_for_expression] = STATE(482), + [sym_const_block] = STATE(482), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3605), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(482), + [sym_async_block] = STATE(482), + [sym_gen_block] = STATE(482), + [sym_try_block] = STATE(482), + [sym_block] = STATE(482), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(311), + [sym_block_comment] = STATE(311), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1217), + [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52507,24 +52213,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1219), + [anon_sym_async] = ACTIONS(1225), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1227), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1223), - [anon_sym_gen] = ACTIONS(1225), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_loop] = ACTIONS(1229), - [anon_sym_match] = ACTIONS(1231), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_gen] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1233), + [anon_sym_loop] = ACTIONS(1235), + [anon_sym_match] = ACTIONS(1237), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_while] = ACTIONS(1235), + [anon_sym_unsafe] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1241), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1237), + [anon_sym_try] = ACTIONS(1243), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -52539,56 +52245,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [315] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1882), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(315), - [sym_block_comment] = STATE(315), + [312] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1888), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52651,56 +52357,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [316] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(316), - [sym_block_comment] = STATE(316), + [313] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1868), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52763,103 +52469,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [317] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1764), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(317), - [sym_block_comment] = STATE(317), - [sym_identifier] = ACTIONS(339), + [314] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1579), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(909), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52868,68 +52574,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [318] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1593), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(318), - [sym_block_comment] = STATE(318), + [315] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1758), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -52947,31 +52653,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52980,68 +52686,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [319] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1564), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(319), - [sym_block_comment] = STATE(319), + [316] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1759), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -53059,31 +52765,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -53092,63 +52798,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [320] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1505), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(320), - [sym_block_comment] = STATE(320), + [317] = { + [sym_else_clause] = STATE(378), + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [ts_builtin_sym_end] = ACTIONS(1247), + [sym_identifier] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym_macro_rules_BANG] = ACTIONS(1247), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_LBRACK] = ACTIONS(1247), + [anon_sym_LBRACE] = ACTIONS(1247), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_u8] = ACTIONS(1249), + [anon_sym_i8] = ACTIONS(1249), + [anon_sym_u16] = ACTIONS(1249), + [anon_sym_i16] = ACTIONS(1249), + [anon_sym_u32] = ACTIONS(1249), + [anon_sym_i32] = ACTIONS(1249), + [anon_sym_u64] = ACTIONS(1249), + [anon_sym_i64] = ACTIONS(1249), + [anon_sym_u128] = ACTIONS(1249), + [anon_sym_i128] = ACTIONS(1249), + [anon_sym_isize] = ACTIONS(1249), + [anon_sym_usize] = ACTIONS(1249), + [anon_sym_f32] = ACTIONS(1249), + [anon_sym_f64] = ACTIONS(1249), + [anon_sym_bool] = ACTIONS(1249), + [anon_sym_str] = ACTIONS(1249), + [anon_sym_char] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_PERCENT] = ACTIONS(1249), + [anon_sym_CARET] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1247), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1249), + [anon_sym_PLUS_EQ] = ACTIONS(1247), + [anon_sym_DASH_EQ] = ACTIONS(1247), + [anon_sym_STAR_EQ] = ACTIONS(1247), + [anon_sym_SLASH_EQ] = ACTIONS(1247), + [anon_sym_PERCENT_EQ] = ACTIONS(1247), + [anon_sym_CARET_EQ] = ACTIONS(1247), + [anon_sym_AMP_EQ] = ACTIONS(1247), + [anon_sym_PIPE_EQ] = ACTIONS(1247), + [anon_sym_LT_LT_EQ] = ACTIONS(1247), + [anon_sym_GT_GT_EQ] = ACTIONS(1247), + [anon_sym_EQ] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT_EQ] = ACTIONS(1247), + [anon_sym_LT_EQ] = ACTIONS(1247), + [anon_sym_DOT] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1247), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1247), + [anon_sym_COLON_COLON] = ACTIONS(1247), + [anon_sym_POUND] = ACTIONS(1247), + [anon_sym_SQUOTE] = ACTIONS(1249), + [anon_sym_as] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_break] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(1249), + [anon_sym_enum] = ACTIONS(1249), + [anon_sym_fn] = ACTIONS(1249), + [anon_sym_for] = ACTIONS(1249), + [anon_sym_gen] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1249), + [anon_sym_impl] = ACTIONS(1249), + [anon_sym_let] = ACTIONS(1249), + [anon_sym_loop] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_mod] = ACTIONS(1249), + [anon_sym_pub] = ACTIONS(1249), + [anon_sym_return] = ACTIONS(1249), + [anon_sym_static] = ACTIONS(1249), + [anon_sym_struct] = ACTIONS(1249), + [anon_sym_trait] = ACTIONS(1249), + [anon_sym_type] = ACTIONS(1249), + [anon_sym_union] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1249), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_else] = ACTIONS(1251), + [anon_sym_yield] = ACTIONS(1249), + [anon_sym_move] = ACTIONS(1249), + [anon_sym_try] = ACTIONS(1249), + [sym_integer_literal] = ACTIONS(1247), + [aux_sym_string_literal_token1] = ACTIONS(1247), + [sym_char_literal] = ACTIONS(1247), + [anon_sym_true] = ACTIONS(1249), + [anon_sym_false] = ACTIONS(1249), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1249), + [sym_super] = ACTIONS(1249), + [sym_crate] = ACTIONS(1249), + [sym_metavariable] = ACTIONS(1247), + [sym__raw_string_literal_start] = ACTIONS(1247), + [sym_float_literal] = ACTIONS(1247), + }, + [318] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1777), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(318), + [sym_block_comment] = STATE(318), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53176,7 +52994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -53211,56 +53029,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [321] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1414), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(321), - [sym_block_comment] = STATE(321), + [319] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1751), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(319), + [sym_block_comment] = STATE(319), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53288,7 +53106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -53323,60 +53141,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [322] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1507), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(322), - [sym_block_comment] = STATE(322), + [320] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1864), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(477), + [sym_match_expression] = STATE(477), + [sym_while_expression] = STATE(477), + [sym_loop_expression] = STATE(477), + [sym_for_expression] = STATE(477), + [sym_const_block] = STATE(477), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3605), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(477), + [sym_async_block] = STATE(477), + [sym_gen_block] = STATE(477), + [sym_try_block] = STATE(477), + [sym_block] = STATE(477), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(320), + [sym_block_comment] = STATE(320), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53400,139 +53218,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(1225), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1227), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_gen] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1233), + [anon_sym_loop] = ACTIONS(1235), + [anon_sym_match] = ACTIONS(1237), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [323] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1508), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(323), - [sym_block_comment] = STATE(323), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_unsafe] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1241), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1243), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -53547,56 +53253,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [324] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1511), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(324), - [sym_block_comment] = STATE(324), + [321] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1866), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53624,7 +53330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -53659,61 +53365,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [325] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1414), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(325), - [sym_block_comment] = STATE(325), + [322] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1637), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(322), + [sym_block_comment] = STATE(322), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -53731,31 +53437,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1055), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -53764,63 +53470,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [326] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(326), - [sym_block_comment] = STATE(326), + [323] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1654), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53883,60 +53589,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [327] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1809), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(327), - [sym_block_comment] = STATE(327), + [324] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1886), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(482), + [sym_match_expression] = STATE(482), + [sym_while_expression] = STATE(482), + [sym_loop_expression] = STATE(482), + [sym_for_expression] = STATE(482), + [sym_const_block] = STATE(482), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3605), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(482), + [sym_async_block] = STATE(482), + [sym_gen_block] = STATE(482), + [sym_try_block] = STATE(482), + [sym_block] = STATE(482), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1223), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53963,24 +53669,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(1225), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1227), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1229), + [anon_sym_gen] = ACTIONS(1231), + [anon_sym_if] = ACTIONS(1233), + [anon_sym_loop] = ACTIONS(1235), + [anon_sym_match] = ACTIONS(1237), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_unsafe] = ACTIONS(1239), + [anon_sym_while] = ACTIONS(1241), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1243), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -53995,56 +53701,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [328] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1830), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(328), - [sym_block_comment] = STATE(328), + [325] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1857), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -54107,104 +53813,440 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [326] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1761), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(326), + [sym_block_comment] = STATE(326), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1069), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [327] = { + [sym_bracketed_type] = STATE(3527), + [sym_generic_function] = STATE(1819), + [sym_generic_type_with_turbofish] = STATE(2941), + [sym__expression_except_range] = STATE(1614), + [sym__expression] = STATE(1826), + [sym_macro_invocation] = STATE(1824), + [sym_scoped_identifier] = STATE(1569), + [sym_scoped_type_identifier_in_expression_position] = STATE(3152), + [sym_range_expression] = STATE(1821), + [sym_unary_expression] = STATE(1819), + [sym_try_expression] = STATE(1819), + [sym_reference_expression] = STATE(1819), + [sym_binary_expression] = STATE(1819), + [sym_assignment_expression] = STATE(1819), + [sym_compound_assignment_expr] = STATE(1819), + [sym_type_cast_expression] = STATE(1819), + [sym_return_expression] = STATE(1819), + [sym_yield_expression] = STATE(1819), + [sym_call_expression] = STATE(1819), + [sym_array_expression] = STATE(1819), + [sym_parenthesized_expression] = STATE(1819), + [sym_tuple_expression] = STATE(1819), + [sym_unit_expression] = STATE(1819), + [sym_struct_expression] = STATE(1819), + [sym_if_expression] = STATE(1819), + [sym_match_expression] = STATE(1819), + [sym_while_expression] = STATE(1819), + [sym_loop_expression] = STATE(1819), + [sym_for_expression] = STATE(1819), + [sym_const_block] = STATE(1819), + [sym_closure_expression] = STATE(1819), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(3611), + [sym_break_expression] = STATE(1819), + [sym_continue_expression] = STATE(1819), + [sym_index_expression] = STATE(1819), + [sym_await_expression] = STATE(1819), + [sym_field_expression] = STATE(1616), + [sym_unsafe_block] = STATE(1819), + [sym_async_block] = STATE(1819), + [sym_gen_block] = STATE(1819), + [sym_try_block] = STATE(1819), + [sym_block] = STATE(1819), + [sym__literal] = STATE(1819), + [sym_string_literal] = STATE(1647), + [sym_raw_string_literal] = STATE(1647), + [sym_boolean_literal] = STATE(1647), + [sym_line_comment] = STATE(327), + [sym_block_comment] = STATE(327), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(493), + [anon_sym_LBRACK] = ACTIONS(495), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(957), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(957), + [anon_sym_BANG] = ACTIONS(957), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [328] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(328), + [sym_block_comment] = STATE(328), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1069), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, [329] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1834), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(465), - [sym_match_expression] = STATE(465), - [sym_while_expression] = STATE(465), - [sym_loop_expression] = STATE(465), - [sym_for_expression] = STATE(465), - [sym_const_block] = STATE(465), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3595), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(465), - [sym_async_block] = STATE(465), - [sym_gen_block] = STATE(465), - [sym_try_block] = STATE(465), - [sym_block] = STATE(465), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1855), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(329), [sym_block_comment] = STATE(329), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1217), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1069), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1219), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1221), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1223), - [anon_sym_gen] = ACTIONS(1225), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_loop] = ACTIONS(1229), - [anon_sym_match] = ACTIONS(1231), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1233), - [anon_sym_while] = ACTIONS(1235), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1237), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -54212,180 +54254,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [330] = { - [sym_else_clause] = STATE(379), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1765), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(330), [sym_block_comment] = STATE(330), - [ts_builtin_sym_end] = ACTIONS(1239), - [sym_identifier] = ACTIONS(1241), - [anon_sym_SEMI] = ACTIONS(1239), - [anon_sym_macro_rules_BANG] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_RBRACE] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_QMARK] = ACTIONS(1239), - [anon_sym_u8] = ACTIONS(1241), - [anon_sym_i8] = ACTIONS(1241), - [anon_sym_u16] = ACTIONS(1241), - [anon_sym_i16] = ACTIONS(1241), - [anon_sym_u32] = ACTIONS(1241), - [anon_sym_i32] = ACTIONS(1241), - [anon_sym_u64] = ACTIONS(1241), - [anon_sym_i64] = ACTIONS(1241), - [anon_sym_u128] = ACTIONS(1241), - [anon_sym_i128] = ACTIONS(1241), - [anon_sym_isize] = ACTIONS(1241), - [anon_sym_usize] = ACTIONS(1241), - [anon_sym_f32] = ACTIONS(1241), - [anon_sym_f64] = ACTIONS(1241), - [anon_sym_bool] = ACTIONS(1241), - [anon_sym_str] = ACTIONS(1241), - [anon_sym_char] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_SLASH] = ACTIONS(1241), - [anon_sym_PERCENT] = ACTIONS(1241), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_BANG] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1241), - [anon_sym_PIPE] = ACTIONS(1241), - [anon_sym_AMP_AMP] = ACTIONS(1239), - [anon_sym_PIPE_PIPE] = ACTIONS(1239), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_PLUS_EQ] = ACTIONS(1239), - [anon_sym_DASH_EQ] = ACTIONS(1239), - [anon_sym_STAR_EQ] = ACTIONS(1239), - [anon_sym_SLASH_EQ] = ACTIONS(1239), - [anon_sym_PERCENT_EQ] = ACTIONS(1239), - [anon_sym_CARET_EQ] = ACTIONS(1239), - [anon_sym_AMP_EQ] = ACTIONS(1239), - [anon_sym_PIPE_EQ] = ACTIONS(1239), - [anon_sym_LT_LT_EQ] = ACTIONS(1239), - [anon_sym_GT_GT_EQ] = ACTIONS(1239), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1239), - [anon_sym_BANG_EQ] = ACTIONS(1239), - [anon_sym_GT] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(1241), - [anon_sym_GT_EQ] = ACTIONS(1239), - [anon_sym_LT_EQ] = ACTIONS(1239), - [anon_sym_DOT] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1241), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1239), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_SQUOTE] = ACTIONS(1241), - [anon_sym_as] = ACTIONS(1241), - [anon_sym_async] = ACTIONS(1241), - [anon_sym_break] = ACTIONS(1241), - [anon_sym_const] = ACTIONS(1241), - [anon_sym_continue] = ACTIONS(1241), - [anon_sym_default] = ACTIONS(1241), - [anon_sym_enum] = ACTIONS(1241), - [anon_sym_fn] = ACTIONS(1241), - [anon_sym_for] = ACTIONS(1241), - [anon_sym_gen] = ACTIONS(1241), - [anon_sym_if] = ACTIONS(1241), - [anon_sym_impl] = ACTIONS(1241), - [anon_sym_let] = ACTIONS(1241), - [anon_sym_loop] = ACTIONS(1241), - [anon_sym_match] = ACTIONS(1241), - [anon_sym_mod] = ACTIONS(1241), - [anon_sym_pub] = ACTIONS(1241), - [anon_sym_return] = ACTIONS(1241), - [anon_sym_static] = ACTIONS(1241), - [anon_sym_struct] = ACTIONS(1241), - [anon_sym_trait] = ACTIONS(1241), - [anon_sym_type] = ACTIONS(1241), - [anon_sym_union] = ACTIONS(1241), - [anon_sym_unsafe] = ACTIONS(1241), - [anon_sym_use] = ACTIONS(1241), - [anon_sym_while] = ACTIONS(1241), - [anon_sym_extern] = ACTIONS(1241), - [anon_sym_else] = ACTIONS(1243), - [anon_sym_yield] = ACTIONS(1241), - [anon_sym_move] = ACTIONS(1241), - [anon_sym_try] = ACTIONS(1241), - [sym_integer_literal] = ACTIONS(1239), - [aux_sym_string_literal_token1] = ACTIONS(1239), - [sym_char_literal] = ACTIONS(1239), - [anon_sym_true] = ACTIONS(1241), - [anon_sym_false] = ACTIONS(1241), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1241), - [sym_super] = ACTIONS(1241), - [sym_crate] = ACTIONS(1241), - [sym_metavariable] = ACTIONS(1239), - [sym__raw_string_literal_start] = ACTIONS(1239), - [sym_float_literal] = ACTIONS(1239), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1069), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [331] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1742), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1767), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(331), [sym_block_comment] = STATE(331), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -54403,31 +54445,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54436,68 +54478,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [332] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1595), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1460), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(332), [sym_block_comment] = STATE(332), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -54515,31 +54557,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1055), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54548,61 +54590,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [333] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1877), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1501), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(333), [sym_block_comment] = STATE(333), [sym_identifier] = ACTIONS(339), @@ -54632,7 +54674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1071), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -54668,55 +54710,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [334] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1866), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1723), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), [sym_line_comment] = STATE(334), [sym_block_comment] = STATE(334), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1245), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [335] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1641), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(909), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(503), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [336] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1889), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(336), + [sym_block_comment] = STATE(336), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -54779,56 +55045,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [335] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1872), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(335), - [sym_block_comment] = STATE(335), + [337] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1858), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(337), + [sym_block_comment] = STATE(337), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -54891,61 +55157,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [336] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1560), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(336), - [sym_block_comment] = STATE(336), + [338] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1635), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(338), + [sym_block_comment] = STATE(338), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -54963,31 +55229,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(1055), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54996,63 +55262,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [337] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1753), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(337), - [sym_block_comment] = STATE(337), + [339] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1556), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(339), + [sym_block_comment] = STATE(339), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(909), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(503), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [340] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1739), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(340), + [sym_block_comment] = STATE(340), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55115,61 +55493,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [338] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1597), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(338), - [sym_block_comment] = STATE(338), + [341] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1442), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(341), + [sym_block_comment] = STATE(341), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -55187,31 +55565,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1055), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -55220,175 +55598,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [339] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1827), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), - [sym_line_comment] = STATE(339), - [sym_block_comment] = STATE(339), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), + [342] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1639), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(342), + [sym_block_comment] = STATE(342), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(503), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [340] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1854), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(340), - [sym_block_comment] = STATE(340), + [343] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1870), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(343), + [sym_block_comment] = STATE(343), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55451,56 +55829,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [341] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1856), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(341), - [sym_block_comment] = STATE(341), + [344] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1873), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(344), + [sym_block_comment] = STATE(344), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55563,56 +55941,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [342] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1758), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(342), - [sym_block_comment] = STATE(342), + [345] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1746), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(345), + [sym_block_comment] = STATE(345), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55675,56 +56053,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [343] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1859), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(343), - [sym_block_comment] = STATE(343), + [346] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55787,56 +56165,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [344] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1766), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(344), - [sym_block_comment] = STATE(344), + [347] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1755), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(347), + [sym_block_comment] = STATE(347), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55899,56 +56277,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [345] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1860), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(345), - [sym_block_comment] = STATE(345), + [348] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1887), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(348), + [sym_block_comment] = STATE(348), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56011,61 +56389,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [346] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1562), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(346), - [sym_block_comment] = STATE(346), + [349] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1567), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(349), + [sym_block_comment] = STATE(349), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -56083,31 +56461,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -56116,63 +56494,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [347] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1771), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(347), - [sym_block_comment] = STATE(347), + [350] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1763), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(350), + [sym_block_comment] = STATE(350), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56235,56 +56613,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [348] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(348), - [sym_block_comment] = STATE(348), + [351] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1860), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(351), + [sym_block_comment] = STATE(351), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56347,56 +56725,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [349] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1864), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(349), - [sym_block_comment] = STATE(349), + [352] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1861), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(352), + [sym_block_comment] = STATE(352), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56459,56 +56837,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [350] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1865), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(350), - [sym_block_comment] = STATE(350), + [353] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1862), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(353), + [sym_block_comment] = STATE(353), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56571,56 +56949,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [351] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1850), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(351), - [sym_block_comment] = STATE(351), + [354] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1863), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(354), + [sym_block_comment] = STATE(354), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56683,103 +57061,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [352] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1819), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(352), - [sym_block_comment] = STATE(352), - [sym_identifier] = ACTIONS(339), + [355] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1644), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(355), + [sym_block_comment] = STATE(355), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -56788,68 +57166,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [353] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1777), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), + [356] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1772), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(353), - [sym_block_comment] = STATE(353), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(356), + [sym_block_comment] = STATE(356), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -56867,31 +57245,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1245), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -56900,68 +57278,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [354] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1599), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(354), - [sym_block_comment] = STATE(354), + [357] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1603), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(357), + [sym_block_comment] = STATE(357), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -56979,31 +57357,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1055), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -57012,68 +57390,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [355] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1565), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(355), - [sym_block_comment] = STATE(355), + [358] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1582), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(358), + [sym_block_comment] = STATE(358), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -57091,31 +57469,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -57124,68 +57502,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [356] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1796), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), + [359] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(356), - [sym_block_comment] = STATE(356), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(359), + [sym_block_comment] = STATE(359), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), + [anon_sym_STAR] = ACTIONS(1065), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -57203,31 +57581,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1071), + [anon_sym_DOT_DOT] = ACTIONS(1069), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(495), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(497), - [anon_sym_static] = ACTIONS(499), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(501), - [anon_sym_move] = ACTIONS(503), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -57236,63 +57614,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [357] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1878), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(357), - [sym_block_comment] = STATE(357), + [360] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1876), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(360), + [sym_block_comment] = STATE(360), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57355,61 +57733,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [358] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(358), - [sym_block_comment] = STATE(358), + [361] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1555), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -57427,31 +57805,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -57460,404 +57838,404 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [359] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1689), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), - [sym_line_comment] = STATE(359), - [sym_block_comment] = STATE(359), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), + [362] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1612), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(362), + [sym_block_comment] = STATE(362), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(503), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [360] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1765), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), - [sym_line_comment] = STATE(360), - [sym_block_comment] = STATE(360), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), + [363] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1791), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(363), + [sym_block_comment] = STATE(363), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1065), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1065), + [anon_sym_BANG] = ACTIONS(1065), + [anon_sym_AMP] = ACTIONS(1067), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(1245), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(477), + [anon_sym_static] = ACTIONS(479), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(481), + [anon_sym_move] = ACTIONS(483), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [361] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1690), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), - [sym_line_comment] = STATE(361), - [sym_block_comment] = STATE(361), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), + [364] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1587), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(364), + [sym_block_comment] = STATE(364), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(503), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [362] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1568), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(362), - [sym_block_comment] = STATE(362), + [365] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1560), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(365), + [sym_block_comment] = STATE(365), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -57875,31 +58253,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -57908,180 +58286,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [363] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1744), - [sym_generic_type_with_turbofish] = STATE(2916), - [sym__expression_except_range] = STATE(1616), - [sym__expression] = STATE(1691), - [sym_macro_invocation] = STATE(1731), - [sym_scoped_identifier] = STATE(1573), - [sym_scoped_type_identifier_in_expression_position] = STATE(3326), - [sym_range_expression] = STATE(1647), - [sym_unary_expression] = STATE(1744), - [sym_try_expression] = STATE(1744), - [sym_reference_expression] = STATE(1744), - [sym_binary_expression] = STATE(1744), - [sym_assignment_expression] = STATE(1744), - [sym_compound_assignment_expr] = STATE(1744), - [sym_type_cast_expression] = STATE(1744), - [sym_return_expression] = STATE(1744), - [sym_yield_expression] = STATE(1744), - [sym_call_expression] = STATE(1744), - [sym_array_expression] = STATE(1744), - [sym_parenthesized_expression] = STATE(1744), - [sym_tuple_expression] = STATE(1744), - [sym_unit_expression] = STATE(1744), - [sym_struct_expression] = STATE(1744), - [sym_if_expression] = STATE(1744), - [sym_match_expression] = STATE(1744), - [sym_while_expression] = STATE(1744), - [sym_loop_expression] = STATE(1744), - [sym_for_expression] = STATE(1744), - [sym_const_block] = STATE(1744), - [sym_closure_expression] = STATE(1744), - [sym_closure_parameters] = STATE(240), - [sym_label] = STATE(3601), - [sym_break_expression] = STATE(1744), - [sym_continue_expression] = STATE(1744), - [sym_index_expression] = STATE(1744), - [sym_await_expression] = STATE(1744), - [sym_field_expression] = STATE(1581), - [sym_unsafe_block] = STATE(1744), - [sym_async_block] = STATE(1744), - [sym_gen_block] = STATE(1744), - [sym_try_block] = STATE(1744), - [sym_block] = STATE(1744), - [sym__literal] = STATE(1744), - [sym_string_literal] = STATE(1715), - [sym_raw_string_literal] = STATE(1715), - [sym_boolean_literal] = STATE(1715), - [sym_line_comment] = STATE(363), - [sym_block_comment] = STATE(363), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(509), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1019), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1019), - [anon_sym_BANG] = ACTIONS(1019), - [anon_sym_AMP] = ACTIONS(1021), + [366] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1645), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(366), + [sym_block_comment] = STATE(366), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(503), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [364] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2930), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1569), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1546), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(216), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(364), - [sym_block_comment] = STATE(364), + [367] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1561), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(367), + [sym_block_comment] = STATE(367), [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(911), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(467), [anon_sym_i8] = ACTIONS(467), [anon_sym_u16] = ACTIONS(467), @@ -58099,31 +58477,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(467), [anon_sym_str] = ACTIONS(467), [anon_sym_char] = ACTIONS(467), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_BANG] = ACTIONS(911), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(473), + [anon_sym_break] = ACTIONS(503), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(475), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(479), - [anon_sym_static] = ACTIONS(481), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_move] = ACTIONS(485), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -58132,63 +58510,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(487), - [sym_super] = ACTIONS(489), - [sym_crate] = ACTIONS(489), - [sym_metavariable] = ACTIONS(491), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [365] = { - [sym_bracketed_type] = STATE(3343), - [sym_generic_function] = STATE(1423), - [sym_generic_type_with_turbofish] = STATE(2782), - [sym__expression_except_range] = STATE(1083), - [sym__expression] = STATE(1874), - [sym_macro_invocation] = STATE(1475), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3214), - [sym_range_expression] = STATE(1458), - [sym_unary_expression] = STATE(1423), - [sym_try_expression] = STATE(1423), - [sym_reference_expression] = STATE(1423), - [sym_binary_expression] = STATE(1423), - [sym_assignment_expression] = STATE(1423), - [sym_compound_assignment_expr] = STATE(1423), - [sym_type_cast_expression] = STATE(1423), - [sym_return_expression] = STATE(1423), - [sym_yield_expression] = STATE(1423), - [sym_call_expression] = STATE(1423), - [sym_array_expression] = STATE(1423), - [sym_parenthesized_expression] = STATE(1423), - [sym_tuple_expression] = STATE(1423), - [sym_unit_expression] = STATE(1423), - [sym_struct_expression] = STATE(1423), - [sym_if_expression] = STATE(1423), - [sym_match_expression] = STATE(1423), - [sym_while_expression] = STATE(1423), - [sym_loop_expression] = STATE(1423), - [sym_for_expression] = STATE(1423), - [sym_const_block] = STATE(1423), - [sym_closure_expression] = STATE(1423), - [sym_closure_parameters] = STATE(238), - [sym_label] = STATE(3552), - [sym_break_expression] = STATE(1423), - [sym_continue_expression] = STATE(1423), - [sym_index_expression] = STATE(1423), - [sym_await_expression] = STATE(1423), - [sym_field_expression] = STATE(1068), - [sym_unsafe_block] = STATE(1423), - [sym_async_block] = STATE(1423), - [sym_gen_block] = STATE(1423), - [sym_try_block] = STATE(1423), - [sym_block] = STATE(1423), - [sym__literal] = STATE(1423), - [sym_string_literal] = STATE(1439), - [sym_raw_string_literal] = STATE(1439), - [sym_boolean_literal] = STATE(1439), - [sym_line_comment] = STATE(365), - [sym_block_comment] = STATE(365), + [368] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(2969), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1593), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1549), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(245), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(368), + [sym_block_comment] = STATE(368), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(503), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(505), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(507), + [anon_sym_static] = ACTIONS(509), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(511), + [anon_sym_move] = ACTIONS(513), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(485), + [sym_super] = ACTIONS(487), + [sym_crate] = ACTIONS(487), + [sym_metavariable] = ACTIONS(489), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [369] = { + [sym_bracketed_type] = STATE(3389), + [sym_generic_function] = STATE(1421), + [sym_generic_type_with_turbofish] = STATE(3008), + [sym__expression_except_range] = STATE(1080), + [sym__expression] = STATE(1713), + [sym_macro_invocation] = STATE(1389), + [sym_scoped_identifier] = STATE(1464), + [sym_scoped_type_identifier_in_expression_position] = STATE(3225), + [sym_range_expression] = STATE(1436), + [sym_unary_expression] = STATE(1421), + [sym_try_expression] = STATE(1421), + [sym_reference_expression] = STATE(1421), + [sym_binary_expression] = STATE(1421), + [sym_assignment_expression] = STATE(1421), + [sym_compound_assignment_expr] = STATE(1421), + [sym_type_cast_expression] = STATE(1421), + [sym_return_expression] = STATE(1421), + [sym_yield_expression] = STATE(1421), + [sym_call_expression] = STATE(1421), + [sym_array_expression] = STATE(1421), + [sym_parenthesized_expression] = STATE(1421), + [sym_tuple_expression] = STATE(1421), + [sym_unit_expression] = STATE(1421), + [sym_struct_expression] = STATE(1421), + [sym_if_expression] = STATE(1421), + [sym_match_expression] = STATE(1421), + [sym_while_expression] = STATE(1421), + [sym_loop_expression] = STATE(1421), + [sym_for_expression] = STATE(1421), + [sym_const_block] = STATE(1421), + [sym_closure_expression] = STATE(1421), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3563), + [sym_break_expression] = STATE(1421), + [sym_continue_expression] = STATE(1421), + [sym_index_expression] = STATE(1421), + [sym_await_expression] = STATE(1421), + [sym_field_expression] = STATE(1067), + [sym_unsafe_block] = STATE(1421), + [sym_async_block] = STATE(1421), + [sym_gen_block] = STATE(1421), + [sym_try_block] = STATE(1421), + [sym_block] = STATE(1421), + [sym__literal] = STATE(1421), + [sym_string_literal] = STATE(1415), + [sym_raw_string_literal] = STATE(1415), + [sym_boolean_literal] = STATE(1415), + [sym_line_comment] = STATE(369), + [sym_block_comment] = STATE(369), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58251,231 +58741,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [366] = { - [sym_line_comment] = STATE(366), - [sym_block_comment] = STATE(366), - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_macro_rules_BANG] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_u8] = ACTIONS(1247), - [anon_sym_i8] = ACTIONS(1247), - [anon_sym_u16] = ACTIONS(1247), - [anon_sym_i16] = ACTIONS(1247), - [anon_sym_u32] = ACTIONS(1247), - [anon_sym_i32] = ACTIONS(1247), - [anon_sym_u64] = ACTIONS(1247), - [anon_sym_i64] = ACTIONS(1247), - [anon_sym_u128] = ACTIONS(1247), - [anon_sym_i128] = ACTIONS(1247), - [anon_sym_isize] = ACTIONS(1247), - [anon_sym_usize] = ACTIONS(1247), - [anon_sym_f32] = ACTIONS(1247), - [anon_sym_f64] = ACTIONS(1247), - [anon_sym_bool] = ACTIONS(1247), - [anon_sym_str] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_PERCENT] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1247), - [anon_sym_BANG] = ACTIONS(1247), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1247), - [anon_sym_GT_GT] = ACTIONS(1247), - [anon_sym_PLUS_EQ] = ACTIONS(1245), - [anon_sym_DASH_EQ] = ACTIONS(1245), - [anon_sym_STAR_EQ] = ACTIONS(1245), - [anon_sym_SLASH_EQ] = ACTIONS(1245), - [anon_sym_PERCENT_EQ] = ACTIONS(1245), - [anon_sym_CARET_EQ] = ACTIONS(1245), - [anon_sym_AMP_EQ] = ACTIONS(1245), - [anon_sym_PIPE_EQ] = ACTIONS(1245), - [anon_sym_LT_LT_EQ] = ACTIONS(1245), - [anon_sym_GT_GT_EQ] = ACTIONS(1245), - [anon_sym_EQ] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1245), - [anon_sym_COLON_COLON] = ACTIONS(1245), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_as] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_default] = ACTIONS(1247), - [anon_sym_enum] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_gen] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_impl] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_pub] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_static] = ACTIONS(1247), - [anon_sym_struct] = ACTIONS(1247), - [anon_sym_trait] = ACTIONS(1247), - [anon_sym_type] = ACTIONS(1247), - [anon_sym_union] = ACTIONS(1247), - [anon_sym_unsafe] = ACTIONS(1247), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym_else] = ACTIONS(1247), - [anon_sym_yield] = ACTIONS(1247), - [anon_sym_move] = ACTIONS(1247), - [anon_sym_try] = ACTIONS(1247), - [sym_integer_literal] = ACTIONS(1245), - [aux_sym_string_literal_token1] = ACTIONS(1245), - [sym_char_literal] = ACTIONS(1245), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1247), - [sym_super] = ACTIONS(1247), - [sym_crate] = ACTIONS(1247), - [sym_metavariable] = ACTIONS(1245), - [sym__raw_string_literal_start] = ACTIONS(1245), - [sym_float_literal] = ACTIONS(1245), - }, - [367] = { - [sym_line_comment] = STATE(367), - [sym_block_comment] = STATE(367), - [ts_builtin_sym_end] = ACTIONS(1249), - [sym_identifier] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1249), - [anon_sym_macro_rules_BANG] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(1249), - [anon_sym_u8] = ACTIONS(1251), - [anon_sym_i8] = ACTIONS(1251), - [anon_sym_u16] = ACTIONS(1251), - [anon_sym_i16] = ACTIONS(1251), - [anon_sym_u32] = ACTIONS(1251), - [anon_sym_i32] = ACTIONS(1251), - [anon_sym_u64] = ACTIONS(1251), - [anon_sym_i64] = ACTIONS(1251), - [anon_sym_u128] = ACTIONS(1251), - [anon_sym_i128] = ACTIONS(1251), - [anon_sym_isize] = ACTIONS(1251), - [anon_sym_usize] = ACTIONS(1251), - [anon_sym_f32] = ACTIONS(1251), - [anon_sym_f64] = ACTIONS(1251), - [anon_sym_bool] = ACTIONS(1251), - [anon_sym_str] = ACTIONS(1251), - [anon_sym_char] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_SLASH] = ACTIONS(1251), - [anon_sym_PERCENT] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_BANG] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1251), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_LT_LT] = ACTIONS(1251), - [anon_sym_GT_GT] = ACTIONS(1251), - [anon_sym_PLUS_EQ] = ACTIONS(1249), - [anon_sym_DASH_EQ] = ACTIONS(1249), - [anon_sym_STAR_EQ] = ACTIONS(1249), - [anon_sym_SLASH_EQ] = ACTIONS(1249), - [anon_sym_PERCENT_EQ] = ACTIONS(1249), - [anon_sym_CARET_EQ] = ACTIONS(1249), - [anon_sym_AMP_EQ] = ACTIONS(1249), - [anon_sym_PIPE_EQ] = ACTIONS(1249), - [anon_sym_LT_LT_EQ] = ACTIONS(1249), - [anon_sym_GT_GT_EQ] = ACTIONS(1249), - [anon_sym_EQ] = ACTIONS(1251), - [anon_sym_EQ_EQ] = ACTIONS(1249), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1249), - [anon_sym_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1249), - [anon_sym_COLON_COLON] = ACTIONS(1249), - [anon_sym_POUND] = ACTIONS(1249), - [anon_sym_SQUOTE] = ACTIONS(1251), - [anon_sym_as] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_break] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_continue] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1251), - [anon_sym_enum] = ACTIONS(1251), - [anon_sym_fn] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_gen] = ACTIONS(1251), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_impl] = ACTIONS(1251), - [anon_sym_let] = ACTIONS(1251), - [anon_sym_loop] = ACTIONS(1251), - [anon_sym_match] = ACTIONS(1251), - [anon_sym_mod] = ACTIONS(1251), - [anon_sym_pub] = ACTIONS(1251), - [anon_sym_return] = ACTIONS(1251), - [anon_sym_static] = ACTIONS(1251), - [anon_sym_struct] = ACTIONS(1251), - [anon_sym_trait] = ACTIONS(1251), - [anon_sym_type] = ACTIONS(1251), - [anon_sym_union] = ACTIONS(1251), - [anon_sym_unsafe] = ACTIONS(1251), - [anon_sym_use] = ACTIONS(1251), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_extern] = ACTIONS(1251), - [anon_sym_else] = ACTIONS(1251), - [anon_sym_yield] = ACTIONS(1251), - [anon_sym_move] = ACTIONS(1251), - [anon_sym_try] = ACTIONS(1251), - [sym_integer_literal] = ACTIONS(1249), - [aux_sym_string_literal_token1] = ACTIONS(1249), - [sym_char_literal] = ACTIONS(1249), - [anon_sym_true] = ACTIONS(1251), - [anon_sym_false] = ACTIONS(1251), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1251), - [sym_super] = ACTIONS(1251), - [sym_crate] = ACTIONS(1251), - [sym_metavariable] = ACTIONS(1249), - [sym__raw_string_literal_start] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1249), - }, - [368] = { - [sym_line_comment] = STATE(368), - [sym_block_comment] = STATE(368), + [370] = { + [sym_line_comment] = STATE(370), + [sym_block_comment] = STATE(370), [ts_builtin_sym_end] = ACTIONS(1253), [sym_identifier] = ACTIONS(1255), [anon_sym_SEMI] = ACTIONS(1253), @@ -58584,9 +58852,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1253), [sym_float_literal] = ACTIONS(1253), }, - [369] = { - [sym_line_comment] = STATE(369), - [sym_block_comment] = STATE(369), + [371] = { + [sym_line_comment] = STATE(371), + [sym_block_comment] = STATE(371), [ts_builtin_sym_end] = ACTIONS(1257), [sym_identifier] = ACTIONS(1259), [anon_sym_SEMI] = ACTIONS(1257), @@ -58695,9 +58963,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1257), [sym_float_literal] = ACTIONS(1257), }, - [370] = { - [sym_line_comment] = STATE(370), - [sym_block_comment] = STATE(370), + [372] = { + [sym_line_comment] = STATE(372), + [sym_block_comment] = STATE(372), [ts_builtin_sym_end] = ACTIONS(1261), [sym_identifier] = ACTIONS(1263), [anon_sym_SEMI] = ACTIONS(1261), @@ -58806,9 +59074,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1261), [sym_float_literal] = ACTIONS(1261), }, - [371] = { - [sym_line_comment] = STATE(371), - [sym_block_comment] = STATE(371), + [373] = { + [sym_line_comment] = STATE(373), + [sym_block_comment] = STATE(373), [ts_builtin_sym_end] = ACTIONS(1265), [sym_identifier] = ACTIONS(1267), [anon_sym_SEMI] = ACTIONS(1265), @@ -58899,6 +59167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1267), [anon_sym_while] = ACTIONS(1267), [anon_sym_extern] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(1267), [anon_sym_yield] = ACTIONS(1267), [anon_sym_move] = ACTIONS(1267), [anon_sym_try] = ACTIONS(1267), @@ -58916,9 +59185,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1265), [sym_float_literal] = ACTIONS(1265), }, - [372] = { - [sym_line_comment] = STATE(372), - [sym_block_comment] = STATE(372), + [374] = { + [sym_line_comment] = STATE(374), + [sym_block_comment] = STATE(374), [ts_builtin_sym_end] = ACTIONS(1269), [sym_identifier] = ACTIONS(1271), [anon_sym_SEMI] = ACTIONS(1269), @@ -59009,6 +59278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1271), [anon_sym_while] = ACTIONS(1271), [anon_sym_extern] = ACTIONS(1271), + [anon_sym_else] = ACTIONS(1271), [anon_sym_yield] = ACTIONS(1271), [anon_sym_move] = ACTIONS(1271), [anon_sym_try] = ACTIONS(1271), @@ -59026,9 +59296,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1269), [sym_float_literal] = ACTIONS(1269), }, - [373] = { - [sym_line_comment] = STATE(373), - [sym_block_comment] = STATE(373), + [375] = { + [sym_line_comment] = STATE(375), + [sym_block_comment] = STATE(375), [ts_builtin_sym_end] = ACTIONS(1273), [sym_identifier] = ACTIONS(1275), [anon_sym_SEMI] = ACTIONS(1273), @@ -59136,9 +59406,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1273), [sym_float_literal] = ACTIONS(1273), }, - [374] = { - [sym_line_comment] = STATE(374), - [sym_block_comment] = STATE(374), + [376] = { + [sym_line_comment] = STATE(376), + [sym_block_comment] = STATE(376), [ts_builtin_sym_end] = ACTIONS(1277), [sym_identifier] = ACTIONS(1279), [anon_sym_SEMI] = ACTIONS(1277), @@ -59246,119 +59516,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1277), [sym_float_literal] = ACTIONS(1277), }, - [375] = { - [sym_line_comment] = STATE(375), - [sym_block_comment] = STATE(375), - [ts_builtin_sym_end] = ACTIONS(1035), - [sym_identifier] = ACTIONS(1033), - [anon_sym_SEMI] = ACTIONS(1035), - [anon_sym_macro_rules_BANG] = ACTIONS(1035), - [anon_sym_LPAREN] = ACTIONS(1035), - [anon_sym_LBRACK] = ACTIONS(1035), - [anon_sym_LBRACE] = ACTIONS(1035), - [anon_sym_RBRACE] = ACTIONS(1035), - [anon_sym_PLUS] = ACTIONS(1033), - [anon_sym_STAR] = ACTIONS(1033), - [anon_sym_QMARK] = ACTIONS(1035), - [anon_sym_u8] = ACTIONS(1033), - [anon_sym_i8] = ACTIONS(1033), - [anon_sym_u16] = ACTIONS(1033), - [anon_sym_i16] = ACTIONS(1033), - [anon_sym_u32] = ACTIONS(1033), - [anon_sym_i32] = ACTIONS(1033), - [anon_sym_u64] = ACTIONS(1033), - [anon_sym_i64] = ACTIONS(1033), - [anon_sym_u128] = ACTIONS(1033), - [anon_sym_i128] = ACTIONS(1033), - [anon_sym_isize] = ACTIONS(1033), - [anon_sym_usize] = ACTIONS(1033), - [anon_sym_f32] = ACTIONS(1033), - [anon_sym_f64] = ACTIONS(1033), - [anon_sym_bool] = ACTIONS(1033), - [anon_sym_str] = ACTIONS(1033), - [anon_sym_char] = ACTIONS(1033), - [anon_sym_DASH] = ACTIONS(1033), - [anon_sym_SLASH] = ACTIONS(1033), - [anon_sym_PERCENT] = ACTIONS(1033), - [anon_sym_CARET] = ACTIONS(1033), - [anon_sym_BANG] = ACTIONS(1033), - [anon_sym_AMP] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(1033), - [anon_sym_AMP_AMP] = ACTIONS(1035), - [anon_sym_PIPE_PIPE] = ACTIONS(1035), - [anon_sym_LT_LT] = ACTIONS(1033), - [anon_sym_GT_GT] = ACTIONS(1033), - [anon_sym_PLUS_EQ] = ACTIONS(1035), - [anon_sym_DASH_EQ] = ACTIONS(1035), - [anon_sym_STAR_EQ] = ACTIONS(1035), - [anon_sym_SLASH_EQ] = ACTIONS(1035), - [anon_sym_PERCENT_EQ] = ACTIONS(1035), - [anon_sym_CARET_EQ] = ACTIONS(1035), - [anon_sym_AMP_EQ] = ACTIONS(1035), - [anon_sym_PIPE_EQ] = ACTIONS(1035), - [anon_sym_LT_LT_EQ] = ACTIONS(1035), - [anon_sym_GT_GT_EQ] = ACTIONS(1035), - [anon_sym_EQ] = ACTIONS(1033), - [anon_sym_EQ_EQ] = ACTIONS(1035), - [anon_sym_BANG_EQ] = ACTIONS(1035), - [anon_sym_GT] = ACTIONS(1033), - [anon_sym_LT] = ACTIONS(1033), - [anon_sym_GT_EQ] = ACTIONS(1035), - [anon_sym_LT_EQ] = ACTIONS(1035), - [anon_sym_DOT] = ACTIONS(1033), - [anon_sym_DOT_DOT] = ACTIONS(1033), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1035), - [anon_sym_COLON_COLON] = ACTIONS(1035), - [anon_sym_POUND] = ACTIONS(1035), - [anon_sym_SQUOTE] = ACTIONS(1033), - [anon_sym_as] = ACTIONS(1033), - [anon_sym_async] = ACTIONS(1033), - [anon_sym_break] = ACTIONS(1033), - [anon_sym_const] = ACTIONS(1033), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_default] = ACTIONS(1033), - [anon_sym_enum] = ACTIONS(1033), - [anon_sym_fn] = ACTIONS(1033), - [anon_sym_for] = ACTIONS(1033), - [anon_sym_gen] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1033), - [anon_sym_impl] = ACTIONS(1033), - [anon_sym_let] = ACTIONS(1033), - [anon_sym_loop] = ACTIONS(1033), - [anon_sym_match] = ACTIONS(1033), - [anon_sym_mod] = ACTIONS(1033), - [anon_sym_pub] = ACTIONS(1033), - [anon_sym_return] = ACTIONS(1033), - [anon_sym_static] = ACTIONS(1033), - [anon_sym_struct] = ACTIONS(1033), - [anon_sym_trait] = ACTIONS(1033), - [anon_sym_type] = ACTIONS(1033), - [anon_sym_union] = ACTIONS(1033), - [anon_sym_unsafe] = ACTIONS(1033), - [anon_sym_use] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(1033), - [anon_sym_extern] = ACTIONS(1033), - [anon_sym_yield] = ACTIONS(1033), - [anon_sym_move] = ACTIONS(1033), - [anon_sym_try] = ACTIONS(1033), - [sym_integer_literal] = ACTIONS(1035), - [aux_sym_string_literal_token1] = ACTIONS(1035), - [sym_char_literal] = ACTIONS(1035), - [anon_sym_true] = ACTIONS(1033), - [anon_sym_false] = ACTIONS(1033), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1033), - [sym_super] = ACTIONS(1033), - [sym_crate] = ACTIONS(1033), - [sym_metavariable] = ACTIONS(1035), - [sym__raw_string_literal_start] = ACTIONS(1035), - [sym_float_literal] = ACTIONS(1035), - }, - [376] = { - [sym_line_comment] = STATE(376), - [sym_block_comment] = STATE(376), + [377] = { + [sym_line_comment] = STATE(377), + [sym_block_comment] = STATE(377), [ts_builtin_sym_end] = ACTIONS(1281), [sym_identifier] = ACTIONS(1283), [anon_sym_SEMI] = ACTIONS(1281), @@ -59466,9 +59626,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1281), [sym_float_literal] = ACTIONS(1281), }, - [377] = { - [sym_line_comment] = STATE(377), - [sym_block_comment] = STATE(377), + [378] = { + [sym_line_comment] = STATE(378), + [sym_block_comment] = STATE(378), [ts_builtin_sym_end] = ACTIONS(1285), [sym_identifier] = ACTIONS(1287), [anon_sym_SEMI] = ACTIONS(1285), @@ -59477,9 +59637,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1285), [anon_sym_LBRACE] = ACTIONS(1285), [anon_sym_RBRACE] = ACTIONS(1285), - [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1287), [anon_sym_STAR] = ACTIONS(1287), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_QMARK] = ACTIONS(1285), [anon_sym_u8] = ACTIONS(1287), [anon_sym_i8] = ACTIONS(1287), [anon_sym_u16] = ACTIONS(1287), @@ -59498,41 +59658,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1287), [anon_sym_char] = ACTIONS(1287), [anon_sym_DASH] = ACTIONS(1287), - [anon_sym_SLASH] = ACTIONS(1289), - [anon_sym_PERCENT] = ACTIONS(1289), - [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_SLASH] = ACTIONS(1287), + [anon_sym_PERCENT] = ACTIONS(1287), + [anon_sym_CARET] = ACTIONS(1287), [anon_sym_BANG] = ACTIONS(1287), [anon_sym_AMP] = ACTIONS(1287), [anon_sym_PIPE] = ACTIONS(1287), - [anon_sym_AMP_AMP] = ACTIONS(1291), - [anon_sym_PIPE_PIPE] = ACTIONS(1291), - [anon_sym_LT_LT] = ACTIONS(1289), - [anon_sym_GT_GT] = ACTIONS(1289), - [anon_sym_PLUS_EQ] = ACTIONS(1291), - [anon_sym_DASH_EQ] = ACTIONS(1291), - [anon_sym_STAR_EQ] = ACTIONS(1291), - [anon_sym_SLASH_EQ] = ACTIONS(1291), - [anon_sym_PERCENT_EQ] = ACTIONS(1291), - [anon_sym_CARET_EQ] = ACTIONS(1291), - [anon_sym_AMP_EQ] = ACTIONS(1291), - [anon_sym_PIPE_EQ] = ACTIONS(1291), - [anon_sym_LT_LT_EQ] = ACTIONS(1291), - [anon_sym_GT_GT_EQ] = ACTIONS(1291), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_EQ_EQ] = ACTIONS(1291), - [anon_sym_BANG_EQ] = ACTIONS(1291), - [anon_sym_GT] = ACTIONS(1289), + [anon_sym_AMP_AMP] = ACTIONS(1285), + [anon_sym_PIPE_PIPE] = ACTIONS(1285), + [anon_sym_LT_LT] = ACTIONS(1287), + [anon_sym_GT_GT] = ACTIONS(1287), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_PERCENT_EQ] = ACTIONS(1285), + [anon_sym_CARET_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_EQ] = ACTIONS(1287), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1287), [anon_sym_LT] = ACTIONS(1287), - [anon_sym_GT_EQ] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(1291), - [anon_sym_DOT] = ACTIONS(1289), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_DOT] = ACTIONS(1287), [anon_sym_DOT_DOT] = ACTIONS(1287), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1291), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), [anon_sym_COLON_COLON] = ACTIONS(1285), [anon_sym_POUND] = ACTIONS(1285), [anon_sym_SQUOTE] = ACTIONS(1287), - [anon_sym_as] = ACTIONS(1289), + [anon_sym_as] = ACTIONS(1287), [anon_sym_async] = ACTIONS(1287), [anon_sym_break] = ACTIONS(1287), [anon_sym_const] = ACTIONS(1287), @@ -59576,9 +59736,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1285), [sym_float_literal] = ACTIONS(1285), }, - [378] = { - [sym_line_comment] = STATE(378), - [sym_block_comment] = STATE(378), + [379] = { + [sym_line_comment] = STATE(379), + [sym_block_comment] = STATE(379), + [ts_builtin_sym_end] = ACTIONS(1289), + [sym_identifier] = ACTIONS(1291), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym_macro_rules_BANG] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_LBRACK] = ACTIONS(1289), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_QMARK] = ACTIONS(1289), + [anon_sym_u8] = ACTIONS(1291), + [anon_sym_i8] = ACTIONS(1291), + [anon_sym_u16] = ACTIONS(1291), + [anon_sym_i16] = ACTIONS(1291), + [anon_sym_u32] = ACTIONS(1291), + [anon_sym_i32] = ACTIONS(1291), + [anon_sym_u64] = ACTIONS(1291), + [anon_sym_i64] = ACTIONS(1291), + [anon_sym_u128] = ACTIONS(1291), + [anon_sym_i128] = ACTIONS(1291), + [anon_sym_isize] = ACTIONS(1291), + [anon_sym_usize] = ACTIONS(1291), + [anon_sym_f32] = ACTIONS(1291), + [anon_sym_f64] = ACTIONS(1291), + [anon_sym_bool] = ACTIONS(1291), + [anon_sym_str] = ACTIONS(1291), + [anon_sym_char] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(1291), + [anon_sym_PERCENT] = ACTIONS(1291), + [anon_sym_CARET] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_PIPE] = ACTIONS(1291), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_PIPE_PIPE] = ACTIONS(1289), + [anon_sym_LT_LT] = ACTIONS(1291), + [anon_sym_GT_GT] = ACTIONS(1291), + [anon_sym_PLUS_EQ] = ACTIONS(1289), + [anon_sym_DASH_EQ] = ACTIONS(1289), + [anon_sym_STAR_EQ] = ACTIONS(1289), + [anon_sym_SLASH_EQ] = ACTIONS(1289), + [anon_sym_PERCENT_EQ] = ACTIONS(1289), + [anon_sym_CARET_EQ] = ACTIONS(1289), + [anon_sym_AMP_EQ] = ACTIONS(1289), + [anon_sym_PIPE_EQ] = ACTIONS(1289), + [anon_sym_LT_LT_EQ] = ACTIONS(1289), + [anon_sym_GT_GT_EQ] = ACTIONS(1289), + [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_EQ_EQ] = ACTIONS(1289), + [anon_sym_BANG_EQ] = ACTIONS(1289), + [anon_sym_GT] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1291), + [anon_sym_GT_EQ] = ACTIONS(1289), + [anon_sym_LT_EQ] = ACTIONS(1289), + [anon_sym_DOT] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1289), + [anon_sym_COLON_COLON] = ACTIONS(1289), + [anon_sym_POUND] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_as] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1291), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_default] = ACTIONS(1291), + [anon_sym_enum] = ACTIONS(1291), + [anon_sym_fn] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_gen] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_impl] = ACTIONS(1291), + [anon_sym_let] = ACTIONS(1291), + [anon_sym_loop] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1291), + [anon_sym_mod] = ACTIONS(1291), + [anon_sym_pub] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_static] = ACTIONS(1291), + [anon_sym_struct] = ACTIONS(1291), + [anon_sym_trait] = ACTIONS(1291), + [anon_sym_type] = ACTIONS(1291), + [anon_sym_union] = ACTIONS(1291), + [anon_sym_unsafe] = ACTIONS(1291), + [anon_sym_use] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_extern] = ACTIONS(1291), + [anon_sym_yield] = ACTIONS(1291), + [anon_sym_move] = ACTIONS(1291), + [anon_sym_try] = ACTIONS(1291), + [sym_integer_literal] = ACTIONS(1289), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1289), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1291), + [sym_super] = ACTIONS(1291), + [sym_crate] = ACTIONS(1291), + [sym_metavariable] = ACTIONS(1289), + [sym__raw_string_literal_start] = ACTIONS(1289), + [sym_float_literal] = ACTIONS(1289), + }, + [380] = { + [sym_line_comment] = STATE(380), + [sym_block_comment] = STATE(380), [ts_builtin_sym_end] = ACTIONS(1293), [sym_identifier] = ACTIONS(1295), [anon_sym_SEMI] = ACTIONS(1293), @@ -59686,9 +59956,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1293), [sym_float_literal] = ACTIONS(1293), }, - [379] = { - [sym_line_comment] = STATE(379), - [sym_block_comment] = STATE(379), + [381] = { + [sym_line_comment] = STATE(381), + [sym_block_comment] = STATE(381), [ts_builtin_sym_end] = ACTIONS(1297), [sym_identifier] = ACTIONS(1299), [anon_sym_SEMI] = ACTIONS(1297), @@ -59796,9 +60066,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1297), [sym_float_literal] = ACTIONS(1297), }, - [380] = { - [sym_line_comment] = STATE(380), - [sym_block_comment] = STATE(380), + [382] = { + [sym_line_comment] = STATE(382), + [sym_block_comment] = STATE(382), [ts_builtin_sym_end] = ACTIONS(1301), [sym_identifier] = ACTIONS(1303), [anon_sym_SEMI] = ACTIONS(1301), @@ -59906,119 +60176,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1301), [sym_float_literal] = ACTIONS(1301), }, - [381] = { - [sym_line_comment] = STATE(381), - [sym_block_comment] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(1047), - [sym_identifier] = ACTIONS(1045), - [anon_sym_SEMI] = ACTIONS(1047), - [anon_sym_macro_rules_BANG] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_RBRACE] = ACTIONS(1047), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_QMARK] = ACTIONS(1047), - [anon_sym_u8] = ACTIONS(1045), - [anon_sym_i8] = ACTIONS(1045), - [anon_sym_u16] = ACTIONS(1045), - [anon_sym_i16] = ACTIONS(1045), - [anon_sym_u32] = ACTIONS(1045), - [anon_sym_i32] = ACTIONS(1045), - [anon_sym_u64] = ACTIONS(1045), - [anon_sym_i64] = ACTIONS(1045), - [anon_sym_u128] = ACTIONS(1045), - [anon_sym_i128] = ACTIONS(1045), - [anon_sym_isize] = ACTIONS(1045), - [anon_sym_usize] = ACTIONS(1045), - [anon_sym_f32] = ACTIONS(1045), - [anon_sym_f64] = ACTIONS(1045), - [anon_sym_bool] = ACTIONS(1045), - [anon_sym_str] = ACTIONS(1045), - [anon_sym_char] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1045), - [anon_sym_PERCENT] = ACTIONS(1045), - [anon_sym_CARET] = ACTIONS(1045), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_AMP] = ACTIONS(1045), - [anon_sym_PIPE] = ACTIONS(1045), - [anon_sym_AMP_AMP] = ACTIONS(1047), - [anon_sym_PIPE_PIPE] = ACTIONS(1047), - [anon_sym_LT_LT] = ACTIONS(1045), - [anon_sym_GT_GT] = ACTIONS(1045), - [anon_sym_PLUS_EQ] = ACTIONS(1047), - [anon_sym_DASH_EQ] = ACTIONS(1047), - [anon_sym_STAR_EQ] = ACTIONS(1047), - [anon_sym_SLASH_EQ] = ACTIONS(1047), - [anon_sym_PERCENT_EQ] = ACTIONS(1047), - [anon_sym_CARET_EQ] = ACTIONS(1047), - [anon_sym_AMP_EQ] = ACTIONS(1047), - [anon_sym_PIPE_EQ] = ACTIONS(1047), - [anon_sym_LT_LT_EQ] = ACTIONS(1047), - [anon_sym_GT_GT_EQ] = ACTIONS(1047), - [anon_sym_EQ] = ACTIONS(1045), - [anon_sym_EQ_EQ] = ACTIONS(1047), - [anon_sym_BANG_EQ] = ACTIONS(1047), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_LT] = ACTIONS(1045), - [anon_sym_GT_EQ] = ACTIONS(1047), - [anon_sym_LT_EQ] = ACTIONS(1047), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1045), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1047), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_SQUOTE] = ACTIONS(1045), - [anon_sym_as] = ACTIONS(1045), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_break] = ACTIONS(1045), - [anon_sym_const] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1045), - [anon_sym_default] = ACTIONS(1045), - [anon_sym_enum] = ACTIONS(1045), - [anon_sym_fn] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1045), - [anon_sym_gen] = ACTIONS(1045), - [anon_sym_if] = ACTIONS(1045), - [anon_sym_impl] = ACTIONS(1045), - [anon_sym_let] = ACTIONS(1045), - [anon_sym_loop] = ACTIONS(1045), - [anon_sym_match] = ACTIONS(1045), - [anon_sym_mod] = ACTIONS(1045), - [anon_sym_pub] = ACTIONS(1045), - [anon_sym_return] = ACTIONS(1045), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_struct] = ACTIONS(1045), - [anon_sym_trait] = ACTIONS(1045), - [anon_sym_type] = ACTIONS(1045), - [anon_sym_union] = ACTIONS(1045), - [anon_sym_unsafe] = ACTIONS(1045), - [anon_sym_use] = ACTIONS(1045), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_extern] = ACTIONS(1045), - [anon_sym_yield] = ACTIONS(1045), - [anon_sym_move] = ACTIONS(1045), - [anon_sym_try] = ACTIONS(1045), - [sym_integer_literal] = ACTIONS(1047), - [aux_sym_string_literal_token1] = ACTIONS(1047), - [sym_char_literal] = ACTIONS(1047), - [anon_sym_true] = ACTIONS(1045), - [anon_sym_false] = ACTIONS(1045), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1045), - [sym_super] = ACTIONS(1045), - [sym_crate] = ACTIONS(1045), - [sym_metavariable] = ACTIONS(1047), - [sym__raw_string_literal_start] = ACTIONS(1047), - [sym_float_literal] = ACTIONS(1047), - }, - [382] = { - [sym_line_comment] = STATE(382), - [sym_block_comment] = STATE(382), + [383] = { + [sym_line_comment] = STATE(383), + [sym_block_comment] = STATE(383), [ts_builtin_sym_end] = ACTIONS(1305), [sym_identifier] = ACTIONS(1307), [anon_sym_SEMI] = ACTIONS(1305), @@ -60126,9 +60286,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1305), [sym_float_literal] = ACTIONS(1305), }, - [383] = { - [sym_line_comment] = STATE(383), - [sym_block_comment] = STATE(383), + [384] = { + [sym_line_comment] = STATE(384), + [sym_block_comment] = STATE(384), [ts_builtin_sym_end] = ACTIONS(1309), [sym_identifier] = ACTIONS(1311), [anon_sym_SEMI] = ACTIONS(1309), @@ -60236,9 +60396,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1309), [sym_float_literal] = ACTIONS(1309), }, - [384] = { - [sym_line_comment] = STATE(384), - [sym_block_comment] = STATE(384), + [385] = { + [sym_line_comment] = STATE(385), + [sym_block_comment] = STATE(385), [ts_builtin_sym_end] = ACTIONS(1313), [sym_identifier] = ACTIONS(1315), [anon_sym_SEMI] = ACTIONS(1313), @@ -60346,9 +60506,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1313), [sym_float_literal] = ACTIONS(1313), }, - [385] = { - [sym_line_comment] = STATE(385), - [sym_block_comment] = STATE(385), + [386] = { + [sym_line_comment] = STATE(386), + [sym_block_comment] = STATE(386), [ts_builtin_sym_end] = ACTIONS(1317), [sym_identifier] = ACTIONS(1319), [anon_sym_SEMI] = ACTIONS(1317), @@ -60456,9 +60616,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1317), [sym_float_literal] = ACTIONS(1317), }, - [386] = { - [sym_line_comment] = STATE(386), - [sym_block_comment] = STATE(386), + [387] = { + [sym_line_comment] = STATE(387), + [sym_block_comment] = STATE(387), [ts_builtin_sym_end] = ACTIONS(1321), [sym_identifier] = ACTIONS(1323), [anon_sym_SEMI] = ACTIONS(1321), @@ -60467,9 +60627,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1321), [anon_sym_LBRACE] = ACTIONS(1321), [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1323), + [anon_sym_PLUS] = ACTIONS(1325), [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_QMARK] = ACTIONS(1321), + [anon_sym_QMARK] = ACTIONS(1327), [anon_sym_u8] = ACTIONS(1323), [anon_sym_i8] = ACTIONS(1323), [anon_sym_u16] = ACTIONS(1323), @@ -60488,41 +60648,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1323), [anon_sym_char] = ACTIONS(1323), [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_SLASH] = ACTIONS(1323), - [anon_sym_PERCENT] = ACTIONS(1323), - [anon_sym_CARET] = ACTIONS(1323), + [anon_sym_SLASH] = ACTIONS(1325), + [anon_sym_PERCENT] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1325), [anon_sym_BANG] = ACTIONS(1323), [anon_sym_AMP] = ACTIONS(1323), [anon_sym_PIPE] = ACTIONS(1323), - [anon_sym_AMP_AMP] = ACTIONS(1321), - [anon_sym_PIPE_PIPE] = ACTIONS(1321), - [anon_sym_LT_LT] = ACTIONS(1323), - [anon_sym_GT_GT] = ACTIONS(1323), - [anon_sym_PLUS_EQ] = ACTIONS(1321), - [anon_sym_DASH_EQ] = ACTIONS(1321), - [anon_sym_STAR_EQ] = ACTIONS(1321), - [anon_sym_SLASH_EQ] = ACTIONS(1321), - [anon_sym_PERCENT_EQ] = ACTIONS(1321), - [anon_sym_CARET_EQ] = ACTIONS(1321), - [anon_sym_AMP_EQ] = ACTIONS(1321), - [anon_sym_PIPE_EQ] = ACTIONS(1321), - [anon_sym_LT_LT_EQ] = ACTIONS(1321), - [anon_sym_GT_GT_EQ] = ACTIONS(1321), - [anon_sym_EQ] = ACTIONS(1323), - [anon_sym_EQ_EQ] = ACTIONS(1321), - [anon_sym_BANG_EQ] = ACTIONS(1321), - [anon_sym_GT] = ACTIONS(1323), + [anon_sym_AMP_AMP] = ACTIONS(1327), + [anon_sym_PIPE_PIPE] = ACTIONS(1327), + [anon_sym_LT_LT] = ACTIONS(1325), + [anon_sym_GT_GT] = ACTIONS(1325), + [anon_sym_PLUS_EQ] = ACTIONS(1327), + [anon_sym_DASH_EQ] = ACTIONS(1327), + [anon_sym_STAR_EQ] = ACTIONS(1327), + [anon_sym_SLASH_EQ] = ACTIONS(1327), + [anon_sym_PERCENT_EQ] = ACTIONS(1327), + [anon_sym_CARET_EQ] = ACTIONS(1327), + [anon_sym_AMP_EQ] = ACTIONS(1327), + [anon_sym_PIPE_EQ] = ACTIONS(1327), + [anon_sym_LT_LT_EQ] = ACTIONS(1327), + [anon_sym_GT_GT_EQ] = ACTIONS(1327), + [anon_sym_EQ] = ACTIONS(1325), + [anon_sym_EQ_EQ] = ACTIONS(1327), + [anon_sym_BANG_EQ] = ACTIONS(1327), + [anon_sym_GT] = ACTIONS(1325), [anon_sym_LT] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1321), - [anon_sym_LT_EQ] = ACTIONS(1321), - [anon_sym_DOT] = ACTIONS(1323), + [anon_sym_GT_EQ] = ACTIONS(1327), + [anon_sym_LT_EQ] = ACTIONS(1327), + [anon_sym_DOT] = ACTIONS(1325), [anon_sym_DOT_DOT] = ACTIONS(1323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1321), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1321), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1327), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1327), [anon_sym_COLON_COLON] = ACTIONS(1321), [anon_sym_POUND] = ACTIONS(1321), [anon_sym_SQUOTE] = ACTIONS(1323), - [anon_sym_as] = ACTIONS(1323), + [anon_sym_as] = ACTIONS(1325), [anon_sym_async] = ACTIONS(1323), [anon_sym_break] = ACTIONS(1323), [anon_sym_const] = ACTIONS(1323), @@ -60566,116 +60726,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1321), [sym_float_literal] = ACTIONS(1321), }, - [387] = { - [sym_line_comment] = STATE(387), - [sym_block_comment] = STATE(387), - [ts_builtin_sym_end] = ACTIONS(1325), - [sym_identifier] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1291), - [anon_sym_macro_rules_BANG] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_LBRACK] = ACTIONS(1291), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1327), - [anon_sym_i8] = ACTIONS(1327), - [anon_sym_u16] = ACTIONS(1327), - [anon_sym_i16] = ACTIONS(1327), - [anon_sym_u32] = ACTIONS(1327), - [anon_sym_i32] = ACTIONS(1327), - [anon_sym_u64] = ACTIONS(1327), - [anon_sym_i64] = ACTIONS(1327), - [anon_sym_u128] = ACTIONS(1327), - [anon_sym_i128] = ACTIONS(1327), - [anon_sym_isize] = ACTIONS(1327), - [anon_sym_usize] = ACTIONS(1327), - [anon_sym_f32] = ACTIONS(1327), - [anon_sym_f64] = ACTIONS(1327), - [anon_sym_bool] = ACTIONS(1327), - [anon_sym_str] = ACTIONS(1327), - [anon_sym_char] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_SLASH] = ACTIONS(1289), - [anon_sym_PERCENT] = ACTIONS(1289), - [anon_sym_CARET] = ACTIONS(1289), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1289), - [anon_sym_PIPE] = ACTIONS(1289), - [anon_sym_AMP_AMP] = ACTIONS(1291), - [anon_sym_PIPE_PIPE] = ACTIONS(1291), - [anon_sym_LT_LT] = ACTIONS(1289), - [anon_sym_GT_GT] = ACTIONS(1289), - [anon_sym_PLUS_EQ] = ACTIONS(1291), - [anon_sym_DASH_EQ] = ACTIONS(1291), - [anon_sym_STAR_EQ] = ACTIONS(1291), - [anon_sym_SLASH_EQ] = ACTIONS(1291), - [anon_sym_PERCENT_EQ] = ACTIONS(1291), - [anon_sym_CARET_EQ] = ACTIONS(1291), - [anon_sym_AMP_EQ] = ACTIONS(1291), - [anon_sym_PIPE_EQ] = ACTIONS(1291), - [anon_sym_LT_LT_EQ] = ACTIONS(1291), - [anon_sym_GT_GT_EQ] = ACTIONS(1291), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_EQ_EQ] = ACTIONS(1291), - [anon_sym_BANG_EQ] = ACTIONS(1291), - [anon_sym_GT] = ACTIONS(1289), - [anon_sym_LT] = ACTIONS(1289), - [anon_sym_GT_EQ] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(1291), - [anon_sym_DOT] = ACTIONS(1289), - [anon_sym_DOT_DOT] = ACTIONS(1289), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1291), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1291), - [anon_sym_COLON_COLON] = ACTIONS(1325), - [anon_sym_POUND] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_as] = ACTIONS(1289), - [anon_sym_async] = ACTIONS(1327), - [anon_sym_break] = ACTIONS(1327), - [anon_sym_const] = ACTIONS(1327), - [anon_sym_continue] = ACTIONS(1327), - [anon_sym_default] = ACTIONS(1327), - [anon_sym_enum] = ACTIONS(1327), - [anon_sym_fn] = ACTIONS(1327), - [anon_sym_for] = ACTIONS(1327), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_if] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1327), - [anon_sym_let] = ACTIONS(1327), - [anon_sym_loop] = ACTIONS(1327), - [anon_sym_match] = ACTIONS(1327), - [anon_sym_mod] = ACTIONS(1327), - [anon_sym_pub] = ACTIONS(1327), - [anon_sym_return] = ACTIONS(1327), - [anon_sym_static] = ACTIONS(1327), - [anon_sym_struct] = ACTIONS(1327), - [anon_sym_trait] = ACTIONS(1327), - [anon_sym_type] = ACTIONS(1327), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1327), - [anon_sym_use] = ACTIONS(1327), - [anon_sym_while] = ACTIONS(1327), - [anon_sym_extern] = ACTIONS(1327), - [anon_sym_yield] = ACTIONS(1327), - [anon_sym_move] = ACTIONS(1327), - [anon_sym_try] = ACTIONS(1327), - [sym_integer_literal] = ACTIONS(1325), - [aux_sym_string_literal_token1] = ACTIONS(1325), - [sym_char_literal] = ACTIONS(1325), - [anon_sym_true] = ACTIONS(1327), - [anon_sym_false] = ACTIONS(1327), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1327), - [sym_super] = ACTIONS(1327), - [sym_crate] = ACTIONS(1327), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1325), - [sym_float_literal] = ACTIONS(1325), - }, [388] = { [sym_line_comment] = STATE(388), [sym_block_comment] = STATE(388), @@ -61231,15 +61281,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = STATE(393), [ts_builtin_sym_end] = ACTIONS(1349), [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_SEMI] = ACTIONS(1327), [anon_sym_macro_rules_BANG] = ACTIONS(1349), - [anon_sym_LPAREN] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1327), [anon_sym_LBRACE] = ACTIONS(1349), - [anon_sym_RBRACE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1351), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_QMARK] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_QMARK] = ACTIONS(1327), [anon_sym_u8] = ACTIONS(1351), [anon_sym_i8] = ACTIONS(1351), [anon_sym_u16] = ACTIONS(1351), @@ -61257,42 +61307,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1351), [anon_sym_str] = ACTIONS(1351), [anon_sym_char] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(1351), - [anon_sym_SLASH] = ACTIONS(1351), - [anon_sym_PERCENT] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_SLASH] = ACTIONS(1325), + [anon_sym_PERCENT] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1325), [anon_sym_BANG] = ACTIONS(1351), - [anon_sym_AMP] = ACTIONS(1351), - [anon_sym_PIPE] = ACTIONS(1351), - [anon_sym_AMP_AMP] = ACTIONS(1349), - [anon_sym_PIPE_PIPE] = ACTIONS(1349), - [anon_sym_LT_LT] = ACTIONS(1351), - [anon_sym_GT_GT] = ACTIONS(1351), - [anon_sym_PLUS_EQ] = ACTIONS(1349), - [anon_sym_DASH_EQ] = ACTIONS(1349), - [anon_sym_STAR_EQ] = ACTIONS(1349), - [anon_sym_SLASH_EQ] = ACTIONS(1349), - [anon_sym_PERCENT_EQ] = ACTIONS(1349), - [anon_sym_CARET_EQ] = ACTIONS(1349), - [anon_sym_AMP_EQ] = ACTIONS(1349), - [anon_sym_PIPE_EQ] = ACTIONS(1349), - [anon_sym_LT_LT_EQ] = ACTIONS(1349), - [anon_sym_GT_GT_EQ] = ACTIONS(1349), - [anon_sym_EQ] = ACTIONS(1351), - [anon_sym_EQ_EQ] = ACTIONS(1349), - [anon_sym_BANG_EQ] = ACTIONS(1349), - [anon_sym_GT] = ACTIONS(1351), - [anon_sym_LT] = ACTIONS(1351), - [anon_sym_GT_EQ] = ACTIONS(1349), - [anon_sym_LT_EQ] = ACTIONS(1349), - [anon_sym_DOT] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1349), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_AMP_AMP] = ACTIONS(1327), + [anon_sym_PIPE_PIPE] = ACTIONS(1327), + [anon_sym_LT_LT] = ACTIONS(1325), + [anon_sym_GT_GT] = ACTIONS(1325), + [anon_sym_PLUS_EQ] = ACTIONS(1327), + [anon_sym_DASH_EQ] = ACTIONS(1327), + [anon_sym_STAR_EQ] = ACTIONS(1327), + [anon_sym_SLASH_EQ] = ACTIONS(1327), + [anon_sym_PERCENT_EQ] = ACTIONS(1327), + [anon_sym_CARET_EQ] = ACTIONS(1327), + [anon_sym_AMP_EQ] = ACTIONS(1327), + [anon_sym_PIPE_EQ] = ACTIONS(1327), + [anon_sym_LT_LT_EQ] = ACTIONS(1327), + [anon_sym_GT_GT_EQ] = ACTIONS(1327), + [anon_sym_EQ] = ACTIONS(1325), + [anon_sym_EQ_EQ] = ACTIONS(1327), + [anon_sym_BANG_EQ] = ACTIONS(1327), + [anon_sym_GT] = ACTIONS(1325), + [anon_sym_LT] = ACTIONS(1325), + [anon_sym_GT_EQ] = ACTIONS(1327), + [anon_sym_LT_EQ] = ACTIONS(1327), + [anon_sym_DOT] = ACTIONS(1325), + [anon_sym_DOT_DOT] = ACTIONS(1325), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1327), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1327), [anon_sym_COLON_COLON] = ACTIONS(1349), [anon_sym_POUND] = ACTIONS(1349), [anon_sym_SQUOTE] = ACTIONS(1351), - [anon_sym_as] = ACTIONS(1351), + [anon_sym_as] = ACTIONS(1325), [anon_sym_async] = ACTIONS(1351), [anon_sym_break] = ACTIONS(1351), [anon_sym_const] = ACTIONS(1351), @@ -61339,6 +61389,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [394] = { [sym_line_comment] = STATE(394), [sym_block_comment] = STATE(394), + [ts_builtin_sym_end] = ACTIONS(1047), + [sym_identifier] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1047), + [anon_sym_macro_rules_BANG] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_QMARK] = ACTIONS(1047), + [anon_sym_u8] = ACTIONS(1045), + [anon_sym_i8] = ACTIONS(1045), + [anon_sym_u16] = ACTIONS(1045), + [anon_sym_i16] = ACTIONS(1045), + [anon_sym_u32] = ACTIONS(1045), + [anon_sym_i32] = ACTIONS(1045), + [anon_sym_u64] = ACTIONS(1045), + [anon_sym_i64] = ACTIONS(1045), + [anon_sym_u128] = ACTIONS(1045), + [anon_sym_i128] = ACTIONS(1045), + [anon_sym_isize] = ACTIONS(1045), + [anon_sym_usize] = ACTIONS(1045), + [anon_sym_f32] = ACTIONS(1045), + [anon_sym_f64] = ACTIONS(1045), + [anon_sym_bool] = ACTIONS(1045), + [anon_sym_str] = ACTIONS(1045), + [anon_sym_char] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_SLASH] = ACTIONS(1045), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_CARET] = ACTIONS(1045), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1045), + [anon_sym_PLUS_EQ] = ACTIONS(1047), + [anon_sym_DASH_EQ] = ACTIONS(1047), + [anon_sym_STAR_EQ] = ACTIONS(1047), + [anon_sym_SLASH_EQ] = ACTIONS(1047), + [anon_sym_PERCENT_EQ] = ACTIONS(1047), + [anon_sym_CARET_EQ] = ACTIONS(1047), + [anon_sym_AMP_EQ] = ACTIONS(1047), + [anon_sym_PIPE_EQ] = ACTIONS(1047), + [anon_sym_LT_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_GT_EQ] = ACTIONS(1047), + [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(1047), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_as] = ACTIONS(1045), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_break] = ACTIONS(1045), + [anon_sym_const] = ACTIONS(1045), + [anon_sym_continue] = ACTIONS(1045), + [anon_sym_default] = ACTIONS(1045), + [anon_sym_enum] = ACTIONS(1045), + [anon_sym_fn] = ACTIONS(1045), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_gen] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1045), + [anon_sym_impl] = ACTIONS(1045), + [anon_sym_let] = ACTIONS(1045), + [anon_sym_loop] = ACTIONS(1045), + [anon_sym_match] = ACTIONS(1045), + [anon_sym_mod] = ACTIONS(1045), + [anon_sym_pub] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1045), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_struct] = ACTIONS(1045), + [anon_sym_trait] = ACTIONS(1045), + [anon_sym_type] = ACTIONS(1045), + [anon_sym_union] = ACTIONS(1045), + [anon_sym_unsafe] = ACTIONS(1045), + [anon_sym_use] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1045), + [anon_sym_extern] = ACTIONS(1045), + [anon_sym_yield] = ACTIONS(1045), + [anon_sym_move] = ACTIONS(1045), + [anon_sym_try] = ACTIONS(1045), + [sym_integer_literal] = ACTIONS(1047), + [aux_sym_string_literal_token1] = ACTIONS(1047), + [sym_char_literal] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1045), + [anon_sym_false] = ACTIONS(1045), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1045), + [sym_super] = ACTIONS(1045), + [sym_crate] = ACTIONS(1045), + [sym_metavariable] = ACTIONS(1047), + [sym__raw_string_literal_start] = ACTIONS(1047), + [sym_float_literal] = ACTIONS(1047), + }, + [395] = { + [sym_line_comment] = STATE(395), + [sym_block_comment] = STATE(395), [ts_builtin_sym_end] = ACTIONS(1353), [sym_identifier] = ACTIONS(1355), [anon_sym_SEMI] = ACTIONS(1353), @@ -61446,9 +61606,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1353), [sym_float_literal] = ACTIONS(1353), }, - [395] = { - [sym_line_comment] = STATE(395), - [sym_block_comment] = STATE(395), + [396] = { + [sym_line_comment] = STATE(396), + [sym_block_comment] = STATE(396), [ts_builtin_sym_end] = ACTIONS(1357), [sym_identifier] = ACTIONS(1359), [anon_sym_SEMI] = ACTIONS(1357), @@ -61556,5286 +61716,5782 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1357), [sym_float_literal] = ACTIONS(1357), }, - [396] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_self_parameter] = STATE(3010), - [sym_variadic_parameter] = STATE(3010), - [sym_parameter] = STATE(3010), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2726), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3013), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3284), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2413), - [sym_scoped_identifier] = STATE(2126), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2411), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), - [sym_line_comment] = STATE(396), - [sym_block_comment] = STATE(396), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(1363), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1379), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_COMMA] = ACTIONS(1389), - [anon_sym_COLON_COLON] = ACTIONS(1391), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1425), - [sym_super] = ACTIONS(1427), - [sym_crate] = ACTIONS(1427), - [sym_metavariable] = ACTIONS(1429), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), - }, [397] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_self_parameter] = STATE(3010), - [sym_variadic_parameter] = STATE(3010), - [sym_parameter] = STATE(3010), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2726), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3013), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3284), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2413), - [sym_scoped_identifier] = STATE(2126), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2411), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(397), [sym_block_comment] = STATE(397), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(1363), - [anon_sym_RPAREN] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1379), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_COLON_COLON] = ACTIONS(1391), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1425), - [sym_super] = ACTIONS(1427), - [sym_crate] = ACTIONS(1427), - [sym_metavariable] = ACTIONS(1429), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [ts_builtin_sym_end] = ACTIONS(1043), + [sym_identifier] = ACTIONS(1041), + [anon_sym_SEMI] = ACTIONS(1043), + [anon_sym_macro_rules_BANG] = ACTIONS(1043), + [anon_sym_LPAREN] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1043), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_PLUS] = ACTIONS(1041), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_u8] = ACTIONS(1041), + [anon_sym_i8] = ACTIONS(1041), + [anon_sym_u16] = ACTIONS(1041), + [anon_sym_i16] = ACTIONS(1041), + [anon_sym_u32] = ACTIONS(1041), + [anon_sym_i32] = ACTIONS(1041), + [anon_sym_u64] = ACTIONS(1041), + [anon_sym_i64] = ACTIONS(1041), + [anon_sym_u128] = ACTIONS(1041), + [anon_sym_i128] = ACTIONS(1041), + [anon_sym_isize] = ACTIONS(1041), + [anon_sym_usize] = ACTIONS(1041), + [anon_sym_f32] = ACTIONS(1041), + [anon_sym_f64] = ACTIONS(1041), + [anon_sym_bool] = ACTIONS(1041), + [anon_sym_str] = ACTIONS(1041), + [anon_sym_char] = ACTIONS(1041), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_SLASH] = ACTIONS(1041), + [anon_sym_PERCENT] = ACTIONS(1041), + [anon_sym_CARET] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1041), + [anon_sym_PIPE] = ACTIONS(1041), + [anon_sym_AMP_AMP] = ACTIONS(1043), + [anon_sym_PIPE_PIPE] = ACTIONS(1043), + [anon_sym_LT_LT] = ACTIONS(1041), + [anon_sym_GT_GT] = ACTIONS(1041), + [anon_sym_PLUS_EQ] = ACTIONS(1043), + [anon_sym_DASH_EQ] = ACTIONS(1043), + [anon_sym_STAR_EQ] = ACTIONS(1043), + [anon_sym_SLASH_EQ] = ACTIONS(1043), + [anon_sym_PERCENT_EQ] = ACTIONS(1043), + [anon_sym_CARET_EQ] = ACTIONS(1043), + [anon_sym_AMP_EQ] = ACTIONS(1043), + [anon_sym_PIPE_EQ] = ACTIONS(1043), + [anon_sym_LT_LT_EQ] = ACTIONS(1043), + [anon_sym_GT_GT_EQ] = ACTIONS(1043), + [anon_sym_EQ] = ACTIONS(1041), + [anon_sym_EQ_EQ] = ACTIONS(1043), + [anon_sym_BANG_EQ] = ACTIONS(1043), + [anon_sym_GT] = ACTIONS(1041), + [anon_sym_LT] = ACTIONS(1041), + [anon_sym_GT_EQ] = ACTIONS(1043), + [anon_sym_LT_EQ] = ACTIONS(1043), + [anon_sym_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT] = ACTIONS(1041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1043), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1043), + [anon_sym_COLON_COLON] = ACTIONS(1043), + [anon_sym_POUND] = ACTIONS(1043), + [anon_sym_SQUOTE] = ACTIONS(1041), + [anon_sym_as] = ACTIONS(1041), + [anon_sym_async] = ACTIONS(1041), + [anon_sym_break] = ACTIONS(1041), + [anon_sym_const] = ACTIONS(1041), + [anon_sym_continue] = ACTIONS(1041), + [anon_sym_default] = ACTIONS(1041), + [anon_sym_enum] = ACTIONS(1041), + [anon_sym_fn] = ACTIONS(1041), + [anon_sym_for] = ACTIONS(1041), + [anon_sym_gen] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1041), + [anon_sym_impl] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(1041), + [anon_sym_loop] = ACTIONS(1041), + [anon_sym_match] = ACTIONS(1041), + [anon_sym_mod] = ACTIONS(1041), + [anon_sym_pub] = ACTIONS(1041), + [anon_sym_return] = ACTIONS(1041), + [anon_sym_static] = ACTIONS(1041), + [anon_sym_struct] = ACTIONS(1041), + [anon_sym_trait] = ACTIONS(1041), + [anon_sym_type] = ACTIONS(1041), + [anon_sym_union] = ACTIONS(1041), + [anon_sym_unsafe] = ACTIONS(1041), + [anon_sym_use] = ACTIONS(1041), + [anon_sym_while] = ACTIONS(1041), + [anon_sym_extern] = ACTIONS(1041), + [anon_sym_yield] = ACTIONS(1041), + [anon_sym_move] = ACTIONS(1041), + [anon_sym_try] = ACTIONS(1041), + [sym_integer_literal] = ACTIONS(1043), + [aux_sym_string_literal_token1] = ACTIONS(1043), + [sym_char_literal] = ACTIONS(1043), + [anon_sym_true] = ACTIONS(1041), + [anon_sym_false] = ACTIONS(1041), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1041), + [sym_super] = ACTIONS(1041), + [sym_crate] = ACTIONS(1041), + [sym_metavariable] = ACTIONS(1043), + [sym__raw_string_literal_start] = ACTIONS(1043), + [sym_float_literal] = ACTIONS(1043), }, [398] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_self_parameter] = STATE(3010), - [sym_variadic_parameter] = STATE(3010), - [sym_parameter] = STATE(3010), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2726), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3013), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3284), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2413), - [sym_scoped_identifier] = STATE(2126), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2411), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(398), [sym_block_comment] = STATE(398), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(1363), - [anon_sym_RPAREN] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1379), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_COMMA] = ACTIONS(1439), - [anon_sym_COLON_COLON] = ACTIONS(1391), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1425), - [sym_super] = ACTIONS(1427), - [sym_crate] = ACTIONS(1427), - [sym_metavariable] = ACTIONS(1429), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [ts_builtin_sym_end] = ACTIONS(1361), + [sym_identifier] = ACTIONS(1363), + [anon_sym_SEMI] = ACTIONS(1361), + [anon_sym_macro_rules_BANG] = ACTIONS(1361), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_LBRACE] = ACTIONS(1361), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1361), + [anon_sym_u8] = ACTIONS(1363), + [anon_sym_i8] = ACTIONS(1363), + [anon_sym_u16] = ACTIONS(1363), + [anon_sym_i16] = ACTIONS(1363), + [anon_sym_u32] = ACTIONS(1363), + [anon_sym_i32] = ACTIONS(1363), + [anon_sym_u64] = ACTIONS(1363), + [anon_sym_i64] = ACTIONS(1363), + [anon_sym_u128] = ACTIONS(1363), + [anon_sym_i128] = ACTIONS(1363), + [anon_sym_isize] = ACTIONS(1363), + [anon_sym_usize] = ACTIONS(1363), + [anon_sym_f32] = ACTIONS(1363), + [anon_sym_f64] = ACTIONS(1363), + [anon_sym_bool] = ACTIONS(1363), + [anon_sym_str] = ACTIONS(1363), + [anon_sym_char] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_SLASH] = ACTIONS(1363), + [anon_sym_PERCENT] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_BANG] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_PIPE] = ACTIONS(1363), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_LT_LT] = ACTIONS(1363), + [anon_sym_GT_GT] = ACTIONS(1363), + [anon_sym_PLUS_EQ] = ACTIONS(1361), + [anon_sym_DASH_EQ] = ACTIONS(1361), + [anon_sym_STAR_EQ] = ACTIONS(1361), + [anon_sym_SLASH_EQ] = ACTIONS(1361), + [anon_sym_PERCENT_EQ] = ACTIONS(1361), + [anon_sym_CARET_EQ] = ACTIONS(1361), + [anon_sym_AMP_EQ] = ACTIONS(1361), + [anon_sym_PIPE_EQ] = ACTIONS(1361), + [anon_sym_LT_LT_EQ] = ACTIONS(1361), + [anon_sym_GT_GT_EQ] = ACTIONS(1361), + [anon_sym_EQ] = ACTIONS(1363), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1363), + [anon_sym_LT] = ACTIONS(1363), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym_DOT] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1361), + [anon_sym_COLON_COLON] = ACTIONS(1361), + [anon_sym_POUND] = ACTIONS(1361), + [anon_sym_SQUOTE] = ACTIONS(1363), + [anon_sym_as] = ACTIONS(1363), + [anon_sym_async] = ACTIONS(1363), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_default] = ACTIONS(1363), + [anon_sym_enum] = ACTIONS(1363), + [anon_sym_fn] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_gen] = ACTIONS(1363), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_impl] = ACTIONS(1363), + [anon_sym_let] = ACTIONS(1363), + [anon_sym_loop] = ACTIONS(1363), + [anon_sym_match] = ACTIONS(1363), + [anon_sym_mod] = ACTIONS(1363), + [anon_sym_pub] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_static] = ACTIONS(1363), + [anon_sym_struct] = ACTIONS(1363), + [anon_sym_trait] = ACTIONS(1363), + [anon_sym_type] = ACTIONS(1363), + [anon_sym_union] = ACTIONS(1363), + [anon_sym_unsafe] = ACTIONS(1363), + [anon_sym_use] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_extern] = ACTIONS(1363), + [anon_sym_yield] = ACTIONS(1363), + [anon_sym_move] = ACTIONS(1363), + [anon_sym_try] = ACTIONS(1363), + [sym_integer_literal] = ACTIONS(1361), + [aux_sym_string_literal_token1] = ACTIONS(1361), + [sym_char_literal] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1363), + [sym_super] = ACTIONS(1363), + [sym_crate] = ACTIONS(1363), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1361), + [sym_float_literal] = ACTIONS(1361), }, [399] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_self_parameter] = STATE(3010), - [sym_variadic_parameter] = STATE(3010), - [sym_parameter] = STATE(3010), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2726), - [sym_bracketed_type] = STATE(3537), - [sym_lifetime] = STATE(3013), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3209), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2499), - [sym_scoped_identifier] = STATE(2204), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3280), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(399), [sym_block_comment] = STATE(399), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_RPAREN] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1451), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_COMMA] = ACTIONS(1453), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [ts_builtin_sym_end] = ACTIONS(1365), + [sym_identifier] = ACTIONS(1367), + [anon_sym_SEMI] = ACTIONS(1365), + [anon_sym_macro_rules_BANG] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1365), + [anon_sym_LBRACK] = ACTIONS(1365), + [anon_sym_LBRACE] = ACTIONS(1365), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_PLUS] = ACTIONS(1367), + [anon_sym_STAR] = ACTIONS(1367), + [anon_sym_QMARK] = ACTIONS(1365), + [anon_sym_u8] = ACTIONS(1367), + [anon_sym_i8] = ACTIONS(1367), + [anon_sym_u16] = ACTIONS(1367), + [anon_sym_i16] = ACTIONS(1367), + [anon_sym_u32] = ACTIONS(1367), + [anon_sym_i32] = ACTIONS(1367), + [anon_sym_u64] = ACTIONS(1367), + [anon_sym_i64] = ACTIONS(1367), + [anon_sym_u128] = ACTIONS(1367), + [anon_sym_i128] = ACTIONS(1367), + [anon_sym_isize] = ACTIONS(1367), + [anon_sym_usize] = ACTIONS(1367), + [anon_sym_f32] = ACTIONS(1367), + [anon_sym_f64] = ACTIONS(1367), + [anon_sym_bool] = ACTIONS(1367), + [anon_sym_str] = ACTIONS(1367), + [anon_sym_char] = ACTIONS(1367), + [anon_sym_DASH] = ACTIONS(1367), + [anon_sym_SLASH] = ACTIONS(1367), + [anon_sym_PERCENT] = ACTIONS(1367), + [anon_sym_CARET] = ACTIONS(1367), + [anon_sym_BANG] = ACTIONS(1367), + [anon_sym_AMP] = ACTIONS(1367), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_AMP_AMP] = ACTIONS(1365), + [anon_sym_PIPE_PIPE] = ACTIONS(1365), + [anon_sym_LT_LT] = ACTIONS(1367), + [anon_sym_GT_GT] = ACTIONS(1367), + [anon_sym_PLUS_EQ] = ACTIONS(1365), + [anon_sym_DASH_EQ] = ACTIONS(1365), + [anon_sym_STAR_EQ] = ACTIONS(1365), + [anon_sym_SLASH_EQ] = ACTIONS(1365), + [anon_sym_PERCENT_EQ] = ACTIONS(1365), + [anon_sym_CARET_EQ] = ACTIONS(1365), + [anon_sym_AMP_EQ] = ACTIONS(1365), + [anon_sym_PIPE_EQ] = ACTIONS(1365), + [anon_sym_LT_LT_EQ] = ACTIONS(1365), + [anon_sym_GT_GT_EQ] = ACTIONS(1365), + [anon_sym_EQ] = ACTIONS(1367), + [anon_sym_EQ_EQ] = ACTIONS(1365), + [anon_sym_BANG_EQ] = ACTIONS(1365), + [anon_sym_GT] = ACTIONS(1367), + [anon_sym_LT] = ACTIONS(1367), + [anon_sym_GT_EQ] = ACTIONS(1365), + [anon_sym_LT_EQ] = ACTIONS(1365), + [anon_sym_DOT] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1367), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1365), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1365), + [anon_sym_COLON_COLON] = ACTIONS(1365), + [anon_sym_POUND] = ACTIONS(1365), + [anon_sym_SQUOTE] = ACTIONS(1367), + [anon_sym_as] = ACTIONS(1367), + [anon_sym_async] = ACTIONS(1367), + [anon_sym_break] = ACTIONS(1367), + [anon_sym_const] = ACTIONS(1367), + [anon_sym_continue] = ACTIONS(1367), + [anon_sym_default] = ACTIONS(1367), + [anon_sym_enum] = ACTIONS(1367), + [anon_sym_fn] = ACTIONS(1367), + [anon_sym_for] = ACTIONS(1367), + [anon_sym_gen] = ACTIONS(1367), + [anon_sym_if] = ACTIONS(1367), + [anon_sym_impl] = ACTIONS(1367), + [anon_sym_let] = ACTIONS(1367), + [anon_sym_loop] = ACTIONS(1367), + [anon_sym_match] = ACTIONS(1367), + [anon_sym_mod] = ACTIONS(1367), + [anon_sym_pub] = ACTIONS(1367), + [anon_sym_return] = ACTIONS(1367), + [anon_sym_static] = ACTIONS(1367), + [anon_sym_struct] = ACTIONS(1367), + [anon_sym_trait] = ACTIONS(1367), + [anon_sym_type] = ACTIONS(1367), + [anon_sym_union] = ACTIONS(1367), + [anon_sym_unsafe] = ACTIONS(1367), + [anon_sym_use] = ACTIONS(1367), + [anon_sym_while] = ACTIONS(1367), + [anon_sym_extern] = ACTIONS(1367), + [anon_sym_yield] = ACTIONS(1367), + [anon_sym_move] = ACTIONS(1367), + [anon_sym_try] = ACTIONS(1367), + [sym_integer_literal] = ACTIONS(1365), + [aux_sym_string_literal_token1] = ACTIONS(1365), + [sym_char_literal] = ACTIONS(1365), + [anon_sym_true] = ACTIONS(1367), + [anon_sym_false] = ACTIONS(1367), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1367), + [sym_super] = ACTIONS(1367), + [sym_crate] = ACTIONS(1367), + [sym_metavariable] = ACTIONS(1365), + [sym__raw_string_literal_start] = ACTIONS(1365), + [sym_float_literal] = ACTIONS(1365), }, [400] = { - [sym_attribute_item] = STATE(418), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_self_parameter] = STATE(2860), - [sym_variadic_parameter] = STATE(2860), - [sym_parameter] = STATE(2860), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2516), - [sym_bracketed_type] = STATE(3537), - [sym_lifetime] = STATE(3013), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3209), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2499), - [sym_scoped_identifier] = STATE(2204), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3280), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_self_parameter] = STATE(2997), + [sym_variadic_parameter] = STATE(2997), + [sym_parameter] = STATE(2997), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2695), + [sym_bracketed_type] = STATE(3555), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3296), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2435), + [sym_scoped_identifier] = STATE(2100), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2482), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(400), [sym_block_comment] = STATE(400), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_RPAREN] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1469), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_COMMA] = ACTIONS(1471), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_RPAREN] = ACTIONS(1373), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1391), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_COMMA] = ACTIONS(1397), + [anon_sym_COLON_COLON] = ACTIONS(1399), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1409), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1417), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1433), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1437), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [401] = { - [sym_attribute_item] = STATE(419), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_self_parameter] = STATE(2827), - [sym_variadic_parameter] = STATE(2827), - [sym_parameter] = STATE(2827), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2614), - [sym_bracketed_type] = STATE(3537), - [sym_lifetime] = STATE(3013), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3209), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2499), - [sym_scoped_identifier] = STATE(2204), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3280), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(401), [sym_block_comment] = STATE(401), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_RPAREN] = ACTIONS(1473), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1475), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_COMMA] = ACTIONS(1477), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1327), + [anon_sym_macro_rules_BANG] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_PLUS] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_QMARK] = ACTIONS(1327), + [anon_sym_u8] = ACTIONS(1351), + [anon_sym_i8] = ACTIONS(1351), + [anon_sym_u16] = ACTIONS(1351), + [anon_sym_i16] = ACTIONS(1351), + [anon_sym_u32] = ACTIONS(1351), + [anon_sym_i32] = ACTIONS(1351), + [anon_sym_u64] = ACTIONS(1351), + [anon_sym_i64] = ACTIONS(1351), + [anon_sym_u128] = ACTIONS(1351), + [anon_sym_i128] = ACTIONS(1351), + [anon_sym_isize] = ACTIONS(1351), + [anon_sym_usize] = ACTIONS(1351), + [anon_sym_f32] = ACTIONS(1351), + [anon_sym_f64] = ACTIONS(1351), + [anon_sym_bool] = ACTIONS(1351), + [anon_sym_str] = ACTIONS(1351), + [anon_sym_char] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1325), + [anon_sym_SLASH] = ACTIONS(1325), + [anon_sym_PERCENT] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym_PIPE] = ACTIONS(1325), + [anon_sym_AMP_AMP] = ACTIONS(1327), + [anon_sym_PIPE_PIPE] = ACTIONS(1327), + [anon_sym_LT_LT] = ACTIONS(1325), + [anon_sym_GT_GT] = ACTIONS(1325), + [anon_sym_PLUS_EQ] = ACTIONS(1327), + [anon_sym_DASH_EQ] = ACTIONS(1327), + [anon_sym_STAR_EQ] = ACTIONS(1327), + [anon_sym_SLASH_EQ] = ACTIONS(1327), + [anon_sym_PERCENT_EQ] = ACTIONS(1327), + [anon_sym_CARET_EQ] = ACTIONS(1327), + [anon_sym_AMP_EQ] = ACTIONS(1327), + [anon_sym_PIPE_EQ] = ACTIONS(1327), + [anon_sym_LT_LT_EQ] = ACTIONS(1327), + [anon_sym_GT_GT_EQ] = ACTIONS(1327), + [anon_sym_EQ] = ACTIONS(1325), + [anon_sym_EQ_EQ] = ACTIONS(1327), + [anon_sym_BANG_EQ] = ACTIONS(1327), + [anon_sym_GT] = ACTIONS(1325), + [anon_sym_LT] = ACTIONS(1325), + [anon_sym_GT_EQ] = ACTIONS(1327), + [anon_sym_LT_EQ] = ACTIONS(1327), + [anon_sym_DOT] = ACTIONS(1325), + [anon_sym_DOT_DOT] = ACTIONS(1325), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1327), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1327), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym_POUND] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_as] = ACTIONS(1325), + [anon_sym_async] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_fn] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_gen] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_impl] = ACTIONS(1351), + [anon_sym_let] = ACTIONS(1351), + [anon_sym_loop] = ACTIONS(1351), + [anon_sym_match] = ACTIONS(1351), + [anon_sym_mod] = ACTIONS(1351), + [anon_sym_pub] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_struct] = ACTIONS(1351), + [anon_sym_trait] = ACTIONS(1351), + [anon_sym_type] = ACTIONS(1351), + [anon_sym_union] = ACTIONS(1351), + [anon_sym_unsafe] = ACTIONS(1351), + [anon_sym_use] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym_yield] = ACTIONS(1351), + [anon_sym_move] = ACTIONS(1351), + [anon_sym_try] = ACTIONS(1351), + [sym_integer_literal] = ACTIONS(1349), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1349), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1351), + [sym_super] = ACTIONS(1351), + [sym_crate] = ACTIONS(1351), + [sym_metavariable] = ACTIONS(1349), + [sym__raw_string_literal_start] = ACTIONS(1349), + [sym_float_literal] = ACTIONS(1349), }, [402] = { + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_self_parameter] = STATE(2997), + [sym_variadic_parameter] = STATE(2997), + [sym_parameter] = STATE(2997), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2695), + [sym_bracketed_type] = STATE(3555), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3296), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2435), + [sym_scoped_identifier] = STATE(2100), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2482), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(402), [sym_block_comment] = STATE(402), - [sym_identifier] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1291), - [anon_sym_macro_rules_BANG] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1291), - [anon_sym_LBRACK] = ACTIONS(1291), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1327), - [anon_sym_i8] = ACTIONS(1327), - [anon_sym_u16] = ACTIONS(1327), - [anon_sym_i16] = ACTIONS(1327), - [anon_sym_u32] = ACTIONS(1327), - [anon_sym_i32] = ACTIONS(1327), - [anon_sym_u64] = ACTIONS(1327), - [anon_sym_i64] = ACTIONS(1327), - [anon_sym_u128] = ACTIONS(1327), - [anon_sym_i128] = ACTIONS(1327), - [anon_sym_isize] = ACTIONS(1327), - [anon_sym_usize] = ACTIONS(1327), - [anon_sym_f32] = ACTIONS(1327), - [anon_sym_f64] = ACTIONS(1327), - [anon_sym_bool] = ACTIONS(1327), - [anon_sym_str] = ACTIONS(1327), - [anon_sym_char] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1289), - [anon_sym_SLASH] = ACTIONS(1289), - [anon_sym_PERCENT] = ACTIONS(1289), - [anon_sym_CARET] = ACTIONS(1289), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_AMP] = ACTIONS(1289), - [anon_sym_PIPE] = ACTIONS(1289), - [anon_sym_AMP_AMP] = ACTIONS(1291), - [anon_sym_PIPE_PIPE] = ACTIONS(1291), - [anon_sym_LT_LT] = ACTIONS(1289), - [anon_sym_GT_GT] = ACTIONS(1289), - [anon_sym_PLUS_EQ] = ACTIONS(1291), - [anon_sym_DASH_EQ] = ACTIONS(1291), - [anon_sym_STAR_EQ] = ACTIONS(1291), - [anon_sym_SLASH_EQ] = ACTIONS(1291), - [anon_sym_PERCENT_EQ] = ACTIONS(1291), - [anon_sym_CARET_EQ] = ACTIONS(1291), - [anon_sym_AMP_EQ] = ACTIONS(1291), - [anon_sym_PIPE_EQ] = ACTIONS(1291), - [anon_sym_LT_LT_EQ] = ACTIONS(1291), - [anon_sym_GT_GT_EQ] = ACTIONS(1291), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_EQ_EQ] = ACTIONS(1291), - [anon_sym_BANG_EQ] = ACTIONS(1291), - [anon_sym_GT] = ACTIONS(1289), - [anon_sym_LT] = ACTIONS(1289), - [anon_sym_GT_EQ] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(1291), - [anon_sym_DOT] = ACTIONS(1289), - [anon_sym_DOT_DOT] = ACTIONS(1289), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1291), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1291), - [anon_sym_COLON_COLON] = ACTIONS(1325), - [anon_sym_POUND] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_as] = ACTIONS(1289), - [anon_sym_async] = ACTIONS(1327), - [anon_sym_break] = ACTIONS(1327), - [anon_sym_const] = ACTIONS(1327), - [anon_sym_continue] = ACTIONS(1327), - [anon_sym_default] = ACTIONS(1327), - [anon_sym_enum] = ACTIONS(1327), - [anon_sym_fn] = ACTIONS(1327), - [anon_sym_for] = ACTIONS(1327), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_if] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1327), - [anon_sym_let] = ACTIONS(1327), - [anon_sym_loop] = ACTIONS(1327), - [anon_sym_match] = ACTIONS(1327), - [anon_sym_mod] = ACTIONS(1327), - [anon_sym_pub] = ACTIONS(1327), - [anon_sym_return] = ACTIONS(1327), - [anon_sym_static] = ACTIONS(1327), - [anon_sym_struct] = ACTIONS(1327), - [anon_sym_trait] = ACTIONS(1327), - [anon_sym_type] = ACTIONS(1327), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1327), - [anon_sym_use] = ACTIONS(1327), - [anon_sym_while] = ACTIONS(1327), - [anon_sym_extern] = ACTIONS(1327), - [anon_sym_yield] = ACTIONS(1327), - [anon_sym_move] = ACTIONS(1327), - [anon_sym_try] = ACTIONS(1327), - [sym_integer_literal] = ACTIONS(1325), - [aux_sym_string_literal_token1] = ACTIONS(1325), - [sym_char_literal] = ACTIONS(1325), - [anon_sym_true] = ACTIONS(1327), - [anon_sym_false] = ACTIONS(1327), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1327), - [sym_super] = ACTIONS(1327), - [sym_crate] = ACTIONS(1327), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1325), - [sym_float_literal] = ACTIONS(1325), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_RPAREN] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1391), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_COMMA] = ACTIONS(1443), + [anon_sym_COLON_COLON] = ACTIONS(1399), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1409), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1417), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1433), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1437), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [403] = { - [sym_attribute_item] = STATE(416), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_self_parameter] = STATE(3294), - [sym_variadic_parameter] = STATE(3294), - [sym_parameter] = STATE(3294), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2980), - [sym_bracketed_type] = STATE(3537), - [sym_lifetime] = STATE(3013), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3209), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2499), - [sym_scoped_identifier] = STATE(2204), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3280), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_attribute_item] = STATE(422), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_self_parameter] = STATE(2770), + [sym_variadic_parameter] = STATE(2770), + [sym_parameter] = STATE(2770), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2549), + [sym_bracketed_type] = STATE(3548), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3214), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2485), + [sym_scoped_identifier] = STATE(2232), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3266), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(403), [sym_block_comment] = STATE(403), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_RPAREN] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_COMMA] = ACTIONS(1457), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [404] = { - [sym_attribute_item] = STATE(416), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_self_parameter] = STATE(3294), - [sym_variadic_parameter] = STATE(3294), - [sym_parameter] = STATE(3294), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2980), - [sym_bracketed_type] = STATE(3537), - [sym_lifetime] = STATE(3013), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3209), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2499), - [sym_scoped_identifier] = STATE(2204), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3280), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_self_parameter] = STATE(2997), + [sym_variadic_parameter] = STATE(2997), + [sym_parameter] = STATE(2997), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2695), + [sym_bracketed_type] = STATE(3548), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3214), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2485), + [sym_scoped_identifier] = STATE(2232), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3266), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(404), [sym_block_comment] = STATE(404), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_RPAREN] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1473), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_COMMA] = ACTIONS(1475), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [405] = { - [sym_attribute_item] = STATE(416), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_self_parameter] = STATE(3294), - [sym_variadic_parameter] = STATE(3294), - [sym_parameter] = STATE(3294), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2980), - [sym_bracketed_type] = STATE(3537), - [sym_lifetime] = STATE(3013), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3209), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2499), - [sym_scoped_identifier] = STATE(2204), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3280), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_attribute_item] = STATE(421), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_self_parameter] = STATE(2912), + [sym_variadic_parameter] = STATE(2912), + [sym_parameter] = STATE(2912), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2582), + [sym_bracketed_type] = STATE(3548), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3214), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2485), + [sym_scoped_identifier] = STATE(2232), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3266), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(405), [sym_block_comment] = STATE(405), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_RPAREN] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1477), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1479), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_COMMA] = ACTIONS(1481), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [406] = { - [sym_attribute_item] = STATE(416), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_self_parameter] = STATE(3294), - [sym_variadic_parameter] = STATE(3294), - [sym_parameter] = STATE(3294), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2980), - [sym_bracketed_type] = STATE(3537), - [sym_lifetime] = STATE(3013), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3209), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2499), - [sym_scoped_identifier] = STATE(2204), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3280), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_self_parameter] = STATE(2997), + [sym_variadic_parameter] = STATE(2997), + [sym_parameter] = STATE(2997), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2695), + [sym_bracketed_type] = STATE(3555), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3296), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2435), + [sym_scoped_identifier] = STATE(2100), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2482), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(406), [sym_block_comment] = STATE(406), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_RPAREN] = ACTIONS(1487), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_RPAREN] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1391), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_COMMA] = ACTIONS(1485), + [anon_sym_COLON_COLON] = ACTIONS(1399), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1409), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1417), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1433), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1437), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [407] = { - [sym_attribute_item] = STATE(416), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_self_parameter] = STATE(3294), - [sym_variadic_parameter] = STATE(3294), - [sym_parameter] = STATE(3294), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2980), - [sym_bracketed_type] = STATE(3537), - [sym_lifetime] = STATE(3013), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3209), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2499), - [sym_scoped_identifier] = STATE(2204), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3280), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_self_parameter] = STATE(3247), + [sym_variadic_parameter] = STATE(3247), + [sym_parameter] = STATE(3247), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2994), + [sym_bracketed_type] = STATE(3548), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3214), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2485), + [sym_scoped_identifier] = STATE(2232), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3266), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(407), [sym_block_comment] = STATE(407), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_RPAREN] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [408] = { - [sym_attribute_item] = STATE(416), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_self_parameter] = STATE(3294), - [sym_variadic_parameter] = STATE(3294), - [sym_parameter] = STATE(3294), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2980), - [sym_bracketed_type] = STATE(3537), - [sym_lifetime] = STATE(3013), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3209), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2499), - [sym_scoped_identifier] = STATE(2204), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3280), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_self_parameter] = STATE(3247), + [sym_variadic_parameter] = STATE(3247), + [sym_parameter] = STATE(3247), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2994), + [sym_bracketed_type] = STATE(3548), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3214), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2485), + [sym_scoped_identifier] = STATE(2232), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3266), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(408), [sym_block_comment] = STATE(408), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1443), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), [anon_sym_RPAREN] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [409] = { - [sym_attribute_item] = STATE(416), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_self_parameter] = STATE(3294), - [sym_variadic_parameter] = STATE(3294), - [sym_parameter] = STATE(3294), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2980), - [sym_bracketed_type] = STATE(3537), - [sym_lifetime] = STATE(3013), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3209), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2499), - [sym_scoped_identifier] = STATE(2204), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3280), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_self_parameter] = STATE(3247), + [sym_variadic_parameter] = STATE(3247), + [sym_parameter] = STATE(3247), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2994), + [sym_bracketed_type] = STATE(3548), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3214), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2485), + [sym_scoped_identifier] = STATE(2232), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3266), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(409), [sym_block_comment] = STATE(409), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1443), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), [anon_sym_RPAREN] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [410] = { - [sym_attribute_item] = STATE(416), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_self_parameter] = STATE(3294), - [sym_variadic_parameter] = STATE(3294), - [sym_parameter] = STATE(3294), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2980), - [sym_bracketed_type] = STATE(3537), - [sym_lifetime] = STATE(3013), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3209), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2499), - [sym_scoped_identifier] = STATE(2204), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3280), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_self_parameter] = STATE(3247), + [sym_variadic_parameter] = STATE(3247), + [sym_parameter] = STATE(3247), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2994), + [sym_bracketed_type] = STATE(3548), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3214), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2485), + [sym_scoped_identifier] = STATE(2232), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3266), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(410), [sym_block_comment] = STATE(410), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1443), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), [anon_sym_RPAREN] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [411] = { - [sym_attribute_item] = STATE(416), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_self_parameter] = STATE(3294), - [sym_variadic_parameter] = STATE(3294), - [sym_parameter] = STATE(3294), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2980), - [sym_bracketed_type] = STATE(3537), - [sym_lifetime] = STATE(3013), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3209), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2499), - [sym_scoped_identifier] = STATE(2204), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3280), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_self_parameter] = STATE(3247), + [sym_variadic_parameter] = STATE(3247), + [sym_parameter] = STATE(3247), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2994), + [sym_bracketed_type] = STATE(3548), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3214), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2485), + [sym_scoped_identifier] = STATE(2232), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3266), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(411), [sym_block_comment] = STATE(411), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1443), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), [anon_sym_RPAREN] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [412] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2558), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3284), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2413), - [sym_scoped_identifier] = STATE(2126), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym_closure_expression] = STATE(2802), - [sym_closure_parameters] = STATE(232), - [sym__pattern] = STATE(2539), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_self_parameter] = STATE(3247), + [sym_variadic_parameter] = STATE(3247), + [sym_parameter] = STATE(3247), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2994), + [sym_bracketed_type] = STATE(3548), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3214), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2485), + [sym_scoped_identifier] = STATE(2232), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3266), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(412), [sym_block_comment] = STATE(412), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(1363), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_COLON_COLON] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1513), - [anon_sym_move] = ACTIONS(1515), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1427), - [sym_super] = ACTIONS(1427), - [sym_crate] = ACTIONS(1427), - [sym_metavariable] = ACTIONS(1429), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [413] = { - [sym_attribute_item] = STATE(416), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_self_parameter] = STATE(3294), - [sym_variadic_parameter] = STATE(3294), - [sym_parameter] = STATE(3294), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2980), - [sym_bracketed_type] = STATE(3537), - [sym_lifetime] = STATE(3013), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3209), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2499), - [sym_scoped_identifier] = STATE(2204), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3280), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_self_parameter] = STATE(3247), + [sym_variadic_parameter] = STATE(3247), + [sym_parameter] = STATE(3247), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2994), + [sym_bracketed_type] = STATE(3548), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3214), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2485), + [sym_scoped_identifier] = STATE(2232), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3266), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(413), [sym_block_comment] = STATE(413), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [414] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2558), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3284), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2413), - [sym_scoped_identifier] = STATE(2126), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym_closure_expression] = STATE(2802), - [sym_closure_parameters] = STATE(232), - [sym__pattern] = STATE(2539), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_self_parameter] = STATE(3247), + [sym_variadic_parameter] = STATE(3247), + [sym_parameter] = STATE(3247), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2994), + [sym_bracketed_type] = STATE(3548), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3214), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2485), + [sym_scoped_identifier] = STATE(2232), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3266), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(414), [sym_block_comment] = STATE(414), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(1363), - [anon_sym_RPAREN] = ACTIONS(1517), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_COLON_COLON] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1513), - [anon_sym_move] = ACTIONS(1515), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1427), - [sym_super] = ACTIONS(1427), - [sym_crate] = ACTIONS(1427), - [sym_metavariable] = ACTIONS(1429), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [415] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2558), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3284), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2413), - [sym_scoped_identifier] = STATE(2126), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym_closure_expression] = STATE(2802), - [sym_closure_parameters] = STATE(232), - [sym__pattern] = STATE(2539), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_self_parameter] = STATE(3247), + [sym_variadic_parameter] = STATE(3247), + [sym_parameter] = STATE(3247), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2994), + [sym_bracketed_type] = STATE(3548), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3214), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2485), + [sym_scoped_identifier] = STATE(2232), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3266), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(415), [sym_block_comment] = STATE(415), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(1363), - [anon_sym_RPAREN] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_COLON_COLON] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1513), - [anon_sym_move] = ACTIONS(1515), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1427), - [sym_super] = ACTIONS(1427), - [sym_crate] = ACTIONS(1427), - [sym_metavariable] = ACTIONS(1429), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1505), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [416] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_self_parameter] = STATE(3285), - [sym_variadic_parameter] = STATE(3285), - [sym_parameter] = STATE(3285), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2761), - [sym_bracketed_type] = STATE(3537), - [sym_lifetime] = STATE(3013), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3209), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2499), - [sym_scoped_identifier] = STATE(2204), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3280), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2652), + [sym_bracketed_type] = STATE(3555), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3296), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2435), + [sym_scoped_identifier] = STATE(2100), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym_closure_expression] = STATE(2813), + [sym_closure_parameters] = STATE(215), + [sym__pattern] = STATE(2696), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(416), [sym_block_comment] = STATE(416), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_RPAREN] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COMMA] = ACTIONS(1517), + [anon_sym_COLON_COLON] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1409), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1519), + [anon_sym_union] = ACTIONS(1417), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1521), + [anon_sym_move] = ACTIONS(1523), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1437), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [417] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_self_parameter] = STATE(2907), - [sym_variadic_parameter] = STATE(2907), - [sym_parameter] = STATE(2907), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2663), - [sym_bracketed_type] = STATE(3537), - [sym_lifetime] = STATE(3013), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3209), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2499), - [sym_scoped_identifier] = STATE(2204), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3280), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2652), + [sym_bracketed_type] = STATE(3555), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3296), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2435), + [sym_scoped_identifier] = STATE(2100), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym_closure_expression] = STATE(2813), + [sym_closure_parameters] = STATE(215), + [sym__pattern] = STATE(2696), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(417), [sym_block_comment] = STATE(417), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1523), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_RPAREN] = ACTIONS(1525), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COMMA] = ACTIONS(1517), + [anon_sym_COLON_COLON] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1409), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1519), + [anon_sym_union] = ACTIONS(1417), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1521), + [anon_sym_move] = ACTIONS(1523), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1437), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [418] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_self_parameter] = STATE(2952), - [sym_variadic_parameter] = STATE(2952), - [sym_parameter] = STATE(2952), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2540), - [sym_bracketed_type] = STATE(3537), - [sym_lifetime] = STATE(3013), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3209), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2499), - [sym_scoped_identifier] = STATE(2204), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3280), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_self_parameter] = STATE(3247), + [sym_variadic_parameter] = STATE(3247), + [sym_parameter] = STATE(3247), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2994), + [sym_bracketed_type] = STATE(3548), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3214), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2485), + [sym_scoped_identifier] = STATE(2232), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3266), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(418), [sym_block_comment] = STATE(418), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1525), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(1401), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [419] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_self_parameter] = STATE(2841), - [sym_variadic_parameter] = STATE(2841), - [sym_parameter] = STATE(2841), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2622), - [sym_bracketed_type] = STATE(3537), - [sym_lifetime] = STATE(3013), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3209), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2499), - [sym_scoped_identifier] = STATE(2204), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3280), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2652), + [sym_bracketed_type] = STATE(3555), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3296), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2435), + [sym_scoped_identifier] = STATE(2100), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym_closure_expression] = STATE(2813), + [sym_closure_parameters] = STATE(215), + [sym__pattern] = STATE(2696), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(419), [sym_block_comment] = STATE(419), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1527), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1387), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1417), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_RPAREN] = ACTIONS(1527), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COMMA] = ACTIONS(1517), + [anon_sym_COLON_COLON] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1409), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_static] = ACTIONS(1519), + [anon_sym_union] = ACTIONS(1417), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1521), + [anon_sym_move] = ACTIONS(1523), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1437), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [420] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(3021), - [sym_bracketed_type] = STATE(3545), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3288), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2504), - [sym_scoped_identifier] = STATE(2170), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2588), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_self_parameter] = STATE(3220), + [sym_variadic_parameter] = STATE(3220), + [sym_parameter] = STATE(3220), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2781), + [sym_bracketed_type] = STATE(3548), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3214), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2485), + [sym_scoped_identifier] = STATE(2232), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3266), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(420), [sym_block_comment] = STATE(420), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_RBRACK] = ACTIONS(1533), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [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_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COMMA] = ACTIONS(1539), - [anon_sym_COLON_COLON] = ACTIONS(1541), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1545), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1547), - [sym_super] = ACTIONS(1547), - [sym_crate] = ACTIONS(1547), - [sym_metavariable] = ACTIONS(1549), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1529), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [421] = { + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_self_parameter] = STATE(2920), + [sym_variadic_parameter] = STATE(2920), + [sym_parameter] = STATE(2920), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2592), + [sym_bracketed_type] = STATE(3548), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3214), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2485), + [sym_scoped_identifier] = STATE(2232), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3266), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(421), [sym_block_comment] = STATE(421), - [sym_identifier] = ACTIONS(1551), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_RBRACK] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_COLON] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_QMARK] = ACTIONS(1553), - [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_DASH] = ACTIONS(1551), - [anon_sym_SLASH] = ACTIONS(1551), - [anon_sym_PERCENT] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_AMP_AMP] = ACTIONS(1553), - [anon_sym_PIPE_PIPE] = ACTIONS(1553), - [anon_sym_LT_LT] = ACTIONS(1551), - [anon_sym_GT_GT] = ACTIONS(1551), - [anon_sym_PLUS_EQ] = ACTIONS(1553), - [anon_sym_DASH_EQ] = ACTIONS(1553), - [anon_sym_STAR_EQ] = ACTIONS(1553), - [anon_sym_SLASH_EQ] = ACTIONS(1553), - [anon_sym_PERCENT_EQ] = ACTIONS(1553), - [anon_sym_CARET_EQ] = ACTIONS(1553), - [anon_sym_AMP_EQ] = ACTIONS(1553), - [anon_sym_PIPE_EQ] = ACTIONS(1553), - [anon_sym_LT_LT_EQ] = ACTIONS(1553), - [anon_sym_GT_GT_EQ] = ACTIONS(1553), - [anon_sym_EQ] = ACTIONS(1551), - [anon_sym_EQ_EQ] = ACTIONS(1553), - [anon_sym_BANG_EQ] = ACTIONS(1553), - [anon_sym_GT] = ACTIONS(1551), - [anon_sym_LT] = ACTIONS(1551), - [anon_sym_GT_EQ] = ACTIONS(1553), - [anon_sym_LT_EQ] = ACTIONS(1553), - [anon_sym_DOT] = ACTIONS(1551), - [anon_sym_DOT_DOT] = ACTIONS(1551), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), - [anon_sym_COMMA] = ACTIONS(1553), - [anon_sym_COLON_COLON] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1551), - [anon_sym_as] = 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_for] = ACTIONS(1551), - [anon_sym_gen] = ACTIONS(1551), - [anon_sym_if] = ACTIONS(1551), - [anon_sym_loop] = ACTIONS(1551), - [anon_sym_match] = ACTIONS(1551), - [anon_sym_return] = ACTIONS(1551), - [anon_sym_static] = ACTIONS(1551), - [anon_sym_union] = ACTIONS(1551), - [anon_sym_unsafe] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1551), - [anon_sym_else] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1551), - [anon_sym_move] = ACTIONS(1551), - [anon_sym_try] = ACTIONS(1551), - [sym_integer_literal] = ACTIONS(1553), - [aux_sym_string_literal_token1] = ACTIONS(1553), - [sym_char_literal] = ACTIONS(1553), - [anon_sym_true] = ACTIONS(1551), - [anon_sym_false] = ACTIONS(1551), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1551), - [sym_super] = ACTIONS(1551), - [sym_crate] = ACTIONS(1551), - [sym_metavariable] = ACTIONS(1553), - [sym__raw_string_literal_start] = ACTIONS(1553), - [sym_float_literal] = ACTIONS(1553), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1531), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [422] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2002), - [sym_bracketed_type] = STATE(3537), - [sym_lifetime] = STATE(835), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3209), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2499), - [sym_scoped_identifier] = STATE(2204), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2097), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_self_parameter] = STATE(2815), + [sym_variadic_parameter] = STATE(2815), + [sym_parameter] = STATE(2815), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2682), + [sym_bracketed_type] = STATE(3548), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3214), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2485), + [sym_scoped_identifier] = STATE(2232), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3266), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(422), [sym_block_comment] = STATE(422), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1555), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1557), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1559), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1533), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [423] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2002), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(835), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3284), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2413), - [sym_scoped_identifier] = STATE(2126), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2097), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_self_parameter] = STATE(2903), + [sym_variadic_parameter] = STATE(2903), + [sym_parameter] = STATE(2903), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2720), + [sym_bracketed_type] = STATE(3548), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3214), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2485), + [sym_scoped_identifier] = STATE(2232), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3266), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(423), [sym_block_comment] = STATE(423), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1561), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1563), - [sym_super] = ACTIONS(1427), - [sym_crate] = ACTIONS(1427), - [sym_metavariable] = ACTIONS(1429), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1535), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1425), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1465), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [424] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2002), - [sym_bracketed_type] = STATE(3537), - [sym_lifetime] = STATE(837), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3209), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2499), - [sym_scoped_identifier] = STATE(2204), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2097), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2968), + [sym_bracketed_type] = STATE(3556), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3299), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2418), + [sym_scoped_identifier] = STATE(2186), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2717), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(424), [sym_block_comment] = STATE(424), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1555), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1565), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1463), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_RBRACK] = ACTIONS(1541), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [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_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_COLON_COLON] = ACTIONS(1549), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1553), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1555), + [sym_super] = ACTIONS(1555), + [sym_crate] = ACTIONS(1555), + [sym_metavariable] = ACTIONS(1557), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [425] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1977), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3284), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2413), - [sym_scoped_identifier] = STATE(2126), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1997), + [sym_bracketed_type] = STATE(3556), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3299), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2418), + [sym_scoped_identifier] = STATE(2186), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2109), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(425), [sym_block_comment] = STATE(425), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1567), - [sym_super] = ACTIONS(1427), - [sym_crate] = ACTIONS(1427), - [sym_metavariable] = ACTIONS(1429), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [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_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(1549), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1553), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1555), + [sym_super] = ACTIONS(1555), + [sym_crate] = ACTIONS(1555), + [sym_metavariable] = ACTIONS(1557), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [426] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1977), - [sym_bracketed_type] = STATE(3537), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3209), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2499), - [sym_scoped_identifier] = STATE(2204), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1997), + [sym_bracketed_type] = STATE(3555), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3296), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2435), + [sym_scoped_identifier] = STATE(2100), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2109), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(426), [sym_block_comment] = STATE(426), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1555), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1463), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1409), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1417), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1559), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1437), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [427] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2002), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(837), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3284), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2413), - [sym_scoped_identifier] = STATE(2126), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2097), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1988), + [sym_bracketed_type] = STATE(3548), + [sym_lifetime] = STATE(838), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3214), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2485), + [sym_scoped_identifier] = STATE(2232), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2091), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(427), [sym_block_comment] = STATE(427), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1569), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1427), - [sym_super] = ACTIONS(1427), - [sym_crate] = ACTIONS(1427), - [sym_metavariable] = ACTIONS(1429), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1563), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1565), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [428] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1977), - [sym_bracketed_type] = STATE(3537), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3209), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2499), - [sym_scoped_identifier] = STATE(2204), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), [sym_line_comment] = STATE(428), [sym_block_comment] = STATE(428), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1441), - [anon_sym_LPAREN] = ACTIONS(1443), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1447), - [anon_sym_i8] = ACTIONS(1447), - [anon_sym_u16] = ACTIONS(1447), - [anon_sym_i16] = ACTIONS(1447), - [anon_sym_u32] = ACTIONS(1447), - [anon_sym_i32] = ACTIONS(1447), - [anon_sym_u64] = ACTIONS(1447), - [anon_sym_i64] = ACTIONS(1447), - [anon_sym_u128] = ACTIONS(1447), - [anon_sym_i128] = ACTIONS(1447), - [anon_sym_isize] = ACTIONS(1447), - [anon_sym_usize] = ACTIONS(1447), - [anon_sym_f32] = ACTIONS(1447), - [anon_sym_f64] = ACTIONS(1447), - [anon_sym_bool] = ACTIONS(1447), - [anon_sym_str] = ACTIONS(1447), - [anon_sym_char] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1555), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1459), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1571), - [sym_super] = ACTIONS(1463), - [sym_crate] = ACTIONS(1463), - [sym_metavariable] = ACTIONS(1465), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_RPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1569), + [anon_sym_RBRACK] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_RBRACE] = ACTIONS(1569), + [anon_sym_COLON] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_QMARK] = ACTIONS(1569), + [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_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1567), + [anon_sym_CARET] = ACTIONS(1567), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_AMP_AMP] = ACTIONS(1569), + [anon_sym_PIPE_PIPE] = ACTIONS(1569), + [anon_sym_LT_LT] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1567), + [anon_sym_PLUS_EQ] = ACTIONS(1569), + [anon_sym_DASH_EQ] = ACTIONS(1569), + [anon_sym_STAR_EQ] = ACTIONS(1569), + [anon_sym_SLASH_EQ] = ACTIONS(1569), + [anon_sym_PERCENT_EQ] = ACTIONS(1569), + [anon_sym_CARET_EQ] = ACTIONS(1569), + [anon_sym_AMP_EQ] = ACTIONS(1569), + [anon_sym_PIPE_EQ] = ACTIONS(1569), + [anon_sym_LT_LT_EQ] = ACTIONS(1569), + [anon_sym_GT_GT_EQ] = ACTIONS(1569), + [anon_sym_EQ] = ACTIONS(1567), + [anon_sym_EQ_EQ] = ACTIONS(1569), + [anon_sym_BANG_EQ] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_GT_EQ] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), + [anon_sym_COMMA] = ACTIONS(1569), + [anon_sym_COLON_COLON] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_as] = 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_for] = ACTIONS(1567), + [anon_sym_gen] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1567), + [anon_sym_loop] = ACTIONS(1567), + [anon_sym_match] = ACTIONS(1567), + [anon_sym_return] = ACTIONS(1567), + [anon_sym_static] = ACTIONS(1567), + [anon_sym_union] = ACTIONS(1567), + [anon_sym_unsafe] = ACTIONS(1567), + [anon_sym_while] = ACTIONS(1567), + [anon_sym_else] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_move] = ACTIONS(1567), + [anon_sym_try] = ACTIONS(1567), + [sym_integer_literal] = ACTIONS(1569), + [aux_sym_string_literal_token1] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1567), + [anon_sym_false] = ACTIONS(1567), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1567), + [sym_super] = ACTIONS(1567), + [sym_crate] = ACTIONS(1567), + [sym_metavariable] = ACTIONS(1569), + [sym__raw_string_literal_start] = ACTIONS(1569), + [sym_float_literal] = ACTIONS(1569), }, [429] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2002), - [sym_bracketed_type] = STATE(3545), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1988), + [sym_bracketed_type] = STATE(3555), [sym_lifetime] = STATE(837), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3288), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2504), - [sym_scoped_identifier] = STATE(2170), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2097), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3296), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2435), + [sym_scoped_identifier] = STATE(2100), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2091), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(429), [sym_block_comment] = STATE(429), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [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_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1541), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1545), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1573), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1547), - [sym_super] = ACTIONS(1547), - [sym_crate] = ACTIONS(1547), - [sym_metavariable] = ACTIONS(1549), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1409), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1417), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1571), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1437), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [430] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1977), - [sym_bracketed_type] = STATE(3545), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3288), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2504), - [sym_scoped_identifier] = STATE(2170), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1997), + [sym_bracketed_type] = STATE(3548), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3214), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2485), + [sym_scoped_identifier] = STATE(2232), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2109), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(430), [sym_block_comment] = STATE(430), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [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_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1541), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1543), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1545), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1547), - [sym_super] = ACTIONS(1547), - [sym_crate] = ACTIONS(1547), - [sym_metavariable] = ACTIONS(1549), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1467), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [431] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1977), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3284), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(2413), - [sym_scoped_identifier] = STATE(2126), - [sym_scoped_type_identifier] = STATE(2116), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1988), + [sym_bracketed_type] = STATE(3548), + [sym_lifetime] = STATE(837), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3214), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2485), + [sym_scoped_identifier] = STATE(2232), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2091), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(431), [sym_block_comment] = STATE(431), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = 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_DASH] = ACTIONS(1375), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1391), - [anon_sym_SQUOTE] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1399), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_ref] = ACTIONS(1413), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1427), - [sym_super] = ACTIONS(1427), - [sym_crate] = ACTIONS(1427), - [sym_metavariable] = ACTIONS(1429), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1573), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1467), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [432] = { + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1997), + [sym_bracketed_type] = STATE(3548), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3214), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2485), + [sym_scoped_identifier] = STATE(2232), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2109), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(432), [sym_block_comment] = STATE(432), - [sym_identifier] = ACTIONS(1551), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_EQ_GT] = ACTIONS(1553), - [anon_sym_COLON] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_QMARK] = ACTIONS(1553), - [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_DASH] = ACTIONS(1551), - [anon_sym_SLASH] = ACTIONS(1551), - [anon_sym_PERCENT] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1551), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_AMP_AMP] = ACTIONS(1553), - [anon_sym_PIPE_PIPE] = ACTIONS(1553), - [anon_sym_LT_LT] = ACTIONS(1551), - [anon_sym_GT_GT] = ACTIONS(1551), - [anon_sym_PLUS_EQ] = ACTIONS(1553), - [anon_sym_DASH_EQ] = ACTIONS(1553), - [anon_sym_STAR_EQ] = ACTIONS(1553), - [anon_sym_SLASH_EQ] = ACTIONS(1553), - [anon_sym_PERCENT_EQ] = ACTIONS(1553), - [anon_sym_CARET_EQ] = ACTIONS(1553), - [anon_sym_AMP_EQ] = ACTIONS(1553), - [anon_sym_PIPE_EQ] = ACTIONS(1553), - [anon_sym_LT_LT_EQ] = ACTIONS(1553), - [anon_sym_GT_GT_EQ] = ACTIONS(1553), - [anon_sym_EQ] = ACTIONS(1551), - [anon_sym_EQ_EQ] = ACTIONS(1553), - [anon_sym_BANG_EQ] = ACTIONS(1553), - [anon_sym_GT] = ACTIONS(1551), - [anon_sym_LT] = ACTIONS(1551), - [anon_sym_GT_EQ] = ACTIONS(1553), - [anon_sym_LT_EQ] = ACTIONS(1553), - [anon_sym_DOT] = ACTIONS(1551), - [anon_sym_DOT_DOT] = ACTIONS(1551), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), - [anon_sym_COLON_COLON] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1551), - [anon_sym_as] = 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_for] = ACTIONS(1551), - [anon_sym_gen] = ACTIONS(1551), - [anon_sym_if] = ACTIONS(1551), - [anon_sym_loop] = ACTIONS(1551), - [anon_sym_match] = ACTIONS(1551), - [anon_sym_return] = ACTIONS(1551), - [anon_sym_static] = ACTIONS(1551), - [anon_sym_union] = ACTIONS(1551), - [anon_sym_unsafe] = ACTIONS(1551), - [anon_sym_while] = ACTIONS(1551), - [anon_sym_yield] = ACTIONS(1551), - [anon_sym_move] = ACTIONS(1551), - [anon_sym_try] = ACTIONS(1551), - [sym_integer_literal] = ACTIONS(1553), - [aux_sym_string_literal_token1] = ACTIONS(1553), - [sym_char_literal] = ACTIONS(1553), - [anon_sym_true] = ACTIONS(1551), - [anon_sym_false] = ACTIONS(1551), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1551), - [sym_super] = ACTIONS(1551), - [sym_crate] = ACTIONS(1551), - [sym_metavariable] = ACTIONS(1553), - [sym__raw_string_literal_start] = ACTIONS(1553), - [sym_float_literal] = ACTIONS(1553), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1451), + [anon_sym_i8] = ACTIONS(1451), + [anon_sym_u16] = ACTIONS(1451), + [anon_sym_i16] = ACTIONS(1451), + [anon_sym_u32] = ACTIONS(1451), + [anon_sym_i32] = ACTIONS(1451), + [anon_sym_u64] = ACTIONS(1451), + [anon_sym_i64] = ACTIONS(1451), + [anon_sym_u128] = ACTIONS(1451), + [anon_sym_i128] = ACTIONS(1451), + [anon_sym_isize] = ACTIONS(1451), + [anon_sym_usize] = ACTIONS(1451), + [anon_sym_f32] = ACTIONS(1451), + [anon_sym_f64] = ACTIONS(1451), + [anon_sym_bool] = ACTIONS(1451), + [anon_sym_str] = ACTIONS(1451), + [anon_sym_char] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(1459), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1461), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1575), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [433] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2111), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1988), + [sym_bracketed_type] = STATE(3556), + [sym_lifetime] = STATE(837), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3299), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2418), + [sym_scoped_identifier] = STATE(2186), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2091), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(433), [sym_block_comment] = STATE(433), - [sym_identifier] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1577), - [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_DASH] = ACTIONS(1575), - [anon_sym_BANG] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym__] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_DASH_GT] = ACTIONS(1577), - [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_for] = ACTIONS(1575), - [anon_sym_gen] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_loop] = ACTIONS(1575), - [anon_sym_match] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_static] = ACTIONS(1575), - [anon_sym_union] = ACTIONS(1575), - [anon_sym_unsafe] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [anon_sym_yield] = ACTIONS(1575), - [anon_sym_move] = ACTIONS(1575), - [anon_sym_try] = ACTIONS(1575), - [sym_integer_literal] = ACTIONS(1577), - [aux_sym_string_literal_token1] = ACTIONS(1577), - [sym_char_literal] = ACTIONS(1577), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1575), - [sym_super] = ACTIONS(1575), - [sym_crate] = ACTIONS(1575), - [sym_metavariable] = ACTIONS(1577), - [sym__raw_string_literal_start] = ACTIONS(1577), - [sym_float_literal] = ACTIONS(1577), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1537), + [anon_sym_LPAREN] = ACTIONS(1539), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [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_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1545), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(1549), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1551), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1553), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1577), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1555), + [sym_super] = ACTIONS(1555), + [sym_crate] = ACTIONS(1555), + [sym_metavariable] = ACTIONS(1557), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [434] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2098), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1988), + [sym_bracketed_type] = STATE(3555), + [sym_lifetime] = STATE(838), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3296), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2435), + [sym_scoped_identifier] = STATE(2100), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2091), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(434), [sym_block_comment] = STATE(434), - [sym_identifier] = ACTIONS(1579), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_LBRACK] = ACTIONS(1581), - [anon_sym_LBRACE] = ACTIONS(1581), - [anon_sym_STAR] = ACTIONS(1581), - [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_DASH] = ACTIONS(1579), - [anon_sym_BANG] = ACTIONS(1581), - [anon_sym_AMP] = ACTIONS(1581), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_LT] = ACTIONS(1581), - [anon_sym__] = ACTIONS(1579), - [anon_sym_DOT_DOT] = ACTIONS(1581), - [anon_sym_COLON_COLON] = ACTIONS(1581), - [anon_sym_DASH_GT] = ACTIONS(1581), - [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_for] = ACTIONS(1579), - [anon_sym_gen] = ACTIONS(1579), - [anon_sym_if] = ACTIONS(1579), - [anon_sym_loop] = ACTIONS(1579), - [anon_sym_match] = ACTIONS(1579), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_static] = ACTIONS(1579), - [anon_sym_union] = ACTIONS(1579), - [anon_sym_unsafe] = ACTIONS(1579), - [anon_sym_while] = ACTIONS(1579), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [anon_sym_yield] = ACTIONS(1579), - [anon_sym_move] = ACTIONS(1579), - [anon_sym_try] = ACTIONS(1579), - [sym_integer_literal] = ACTIONS(1581), - [aux_sym_string_literal_token1] = ACTIONS(1581), - [sym_char_literal] = ACTIONS(1581), - [anon_sym_true] = ACTIONS(1579), - [anon_sym_false] = ACTIONS(1579), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1579), - [sym_super] = ACTIONS(1579), - [sym_crate] = ACTIONS(1579), - [sym_metavariable] = ACTIONS(1581), - [sym__raw_string_literal_start] = ACTIONS(1581), - [sym_float_literal] = ACTIONS(1581), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1409), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1417), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1579), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1581), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1437), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [435] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2407), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(2408), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_type_binding] = STATE(2591), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), - [sym_label] = STATE(3598), - [sym_block] = STATE(2591), - [sym__literal] = STATE(2591), - [sym_string_literal] = STATE(3004), - [sym_raw_string_literal] = STATE(3004), - [sym_boolean_literal] = STATE(3004), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1997), + [sym_bracketed_type] = STATE(3555), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3296), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2435), + [sym_scoped_identifier] = STATE(2100), + [sym_scoped_type_identifier] = STATE(2130), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2109), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(435), [sym_block_comment] = STATE(435), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1605), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1605), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = 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_DASH] = ACTIONS(1383), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(1399), + [anon_sym_SQUOTE] = ACTIONS(1403), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1407), + [anon_sym_default] = ACTIONS(1409), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1417), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_ref] = ACTIONS(1421), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1437), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [436] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2407), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(2408), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_type_binding] = STATE(2591), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), - [sym_label] = STATE(3598), - [sym_block] = STATE(2591), - [sym__literal] = STATE(2591), - [sym_string_literal] = STATE(3004), - [sym_raw_string_literal] = STATE(3004), - [sym_boolean_literal] = STATE(3004), [sym_line_comment] = STATE(436), [sym_block_comment] = STATE(436), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_GT] = ACTIONS(1611), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1605), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1605), + [sym_identifier] = ACTIONS(1567), + [anon_sym_LPAREN] = ACTIONS(1569), + [anon_sym_LBRACK] = ACTIONS(1569), + [anon_sym_LBRACE] = ACTIONS(1569), + [anon_sym_EQ_GT] = ACTIONS(1569), + [anon_sym_COLON] = ACTIONS(1567), + [anon_sym_PLUS] = ACTIONS(1567), + [anon_sym_STAR] = ACTIONS(1567), + [anon_sym_QMARK] = ACTIONS(1569), + [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_DASH] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1567), + [anon_sym_PERCENT] = ACTIONS(1567), + [anon_sym_CARET] = ACTIONS(1567), + [anon_sym_BANG] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_AMP_AMP] = ACTIONS(1569), + [anon_sym_PIPE_PIPE] = ACTIONS(1569), + [anon_sym_LT_LT] = ACTIONS(1567), + [anon_sym_GT_GT] = ACTIONS(1567), + [anon_sym_PLUS_EQ] = ACTIONS(1569), + [anon_sym_DASH_EQ] = ACTIONS(1569), + [anon_sym_STAR_EQ] = ACTIONS(1569), + [anon_sym_SLASH_EQ] = ACTIONS(1569), + [anon_sym_PERCENT_EQ] = ACTIONS(1569), + [anon_sym_CARET_EQ] = ACTIONS(1569), + [anon_sym_AMP_EQ] = ACTIONS(1569), + [anon_sym_PIPE_EQ] = ACTIONS(1569), + [anon_sym_LT_LT_EQ] = ACTIONS(1569), + [anon_sym_GT_GT_EQ] = ACTIONS(1569), + [anon_sym_EQ] = ACTIONS(1567), + [anon_sym_EQ_EQ] = ACTIONS(1569), + [anon_sym_BANG_EQ] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1567), + [anon_sym_GT_EQ] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1569), + [anon_sym_DOT] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1569), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1569), + [anon_sym_COLON_COLON] = ACTIONS(1569), + [anon_sym_SQUOTE] = ACTIONS(1567), + [anon_sym_as] = 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_for] = ACTIONS(1567), + [anon_sym_gen] = ACTIONS(1567), + [anon_sym_if] = ACTIONS(1567), + [anon_sym_loop] = ACTIONS(1567), + [anon_sym_match] = ACTIONS(1567), + [anon_sym_return] = ACTIONS(1567), + [anon_sym_static] = ACTIONS(1567), + [anon_sym_union] = ACTIONS(1567), + [anon_sym_unsafe] = ACTIONS(1567), + [anon_sym_while] = ACTIONS(1567), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_move] = ACTIONS(1567), + [anon_sym_try] = ACTIONS(1567), + [sym_integer_literal] = ACTIONS(1569), + [aux_sym_string_literal_token1] = ACTIONS(1569), + [sym_char_literal] = ACTIONS(1569), + [anon_sym_true] = ACTIONS(1567), + [anon_sym_false] = ACTIONS(1567), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1567), + [sym_super] = ACTIONS(1567), + [sym_crate] = ACTIONS(1567), + [sym_metavariable] = ACTIONS(1569), + [sym__raw_string_literal_start] = ACTIONS(1569), + [sym_float_literal] = ACTIONS(1569), }, [437] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2407), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(2408), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_type_binding] = STATE(2591), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), - [sym_label] = STATE(3598), - [sym_block] = STATE(2591), - [sym__literal] = STATE(2591), - [sym_string_literal] = STATE(3004), - [sym_raw_string_literal] = STATE(3004), - [sym_boolean_literal] = STATE(3004), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2093), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(437), [sym_block_comment] = STATE(437), - [aux_sym_function_modifiers_repeat1] = STATE(2222), [sym_identifier] = ACTIONS(1583), [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_GT] = ACTIONS(1613), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1605), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1605), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym__] = ACTIONS(1583), + [anon_sym_DOT_DOT] = ACTIONS(1585), + [anon_sym_COLON_COLON] = ACTIONS(1585), + [anon_sym_DASH_GT] = ACTIONS(1585), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_async] = ACTIONS(1583), + [anon_sym_break] = ACTIONS(1583), + [anon_sym_const] = ACTIONS(1583), + [anon_sym_continue] = ACTIONS(1583), + [anon_sym_default] = ACTIONS(1583), + [anon_sym_for] = ACTIONS(1583), + [anon_sym_gen] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1583), + [anon_sym_loop] = ACTIONS(1583), + [anon_sym_match] = ACTIONS(1583), + [anon_sym_return] = ACTIONS(1583), + [anon_sym_static] = ACTIONS(1583), + [anon_sym_union] = ACTIONS(1583), + [anon_sym_unsafe] = ACTIONS(1583), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [anon_sym_yield] = ACTIONS(1583), + [anon_sym_move] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(1583), + [sym_integer_literal] = ACTIONS(1585), + [aux_sym_string_literal_token1] = ACTIONS(1585), + [sym_char_literal] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1583), + [anon_sym_false] = ACTIONS(1583), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1583), + [sym_super] = ACTIONS(1583), + [sym_crate] = ACTIONS(1583), + [sym_metavariable] = ACTIONS(1585), + [sym__raw_string_literal_start] = ACTIONS(1585), + [sym_float_literal] = ACTIONS(1585), }, [438] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2407), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(2408), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_type_binding] = STATE(2591), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), - [sym_label] = STATE(3598), - [sym_block] = STATE(2591), - [sym__literal] = STATE(2591), - [sym_string_literal] = STATE(3004), - [sym_raw_string_literal] = STATE(3004), - [sym_boolean_literal] = STATE(3004), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2095), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(438), [sym_block_comment] = STATE(438), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), + [sym_identifier] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1589), [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_GT] = ACTIONS(1615), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1605), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1605), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_u8] = ACTIONS(1587), + [anon_sym_i8] = ACTIONS(1587), + [anon_sym_u16] = ACTIONS(1587), + [anon_sym_i16] = ACTIONS(1587), + [anon_sym_u32] = ACTIONS(1587), + [anon_sym_i32] = ACTIONS(1587), + [anon_sym_u64] = ACTIONS(1587), + [anon_sym_i64] = ACTIONS(1587), + [anon_sym_u128] = ACTIONS(1587), + [anon_sym_i128] = ACTIONS(1587), + [anon_sym_isize] = ACTIONS(1587), + [anon_sym_usize] = ACTIONS(1587), + [anon_sym_f32] = ACTIONS(1587), + [anon_sym_f64] = ACTIONS(1587), + [anon_sym_bool] = ACTIONS(1587), + [anon_sym_str] = ACTIONS(1587), + [anon_sym_char] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1589), + [anon_sym_LT] = ACTIONS(1589), + [anon_sym__] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_DASH_GT] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_async] = ACTIONS(1587), + [anon_sym_break] = ACTIONS(1587), + [anon_sym_const] = ACTIONS(1587), + [anon_sym_continue] = ACTIONS(1587), + [anon_sym_default] = ACTIONS(1587), + [anon_sym_for] = ACTIONS(1587), + [anon_sym_gen] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_loop] = ACTIONS(1587), + [anon_sym_match] = ACTIONS(1587), + [anon_sym_return] = ACTIONS(1587), + [anon_sym_static] = ACTIONS(1587), + [anon_sym_union] = ACTIONS(1587), + [anon_sym_unsafe] = ACTIONS(1587), + [anon_sym_while] = ACTIONS(1587), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [anon_sym_yield] = ACTIONS(1587), + [anon_sym_move] = ACTIONS(1587), + [anon_sym_try] = ACTIONS(1587), + [sym_integer_literal] = ACTIONS(1589), + [aux_sym_string_literal_token1] = ACTIONS(1589), + [sym_char_literal] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1587), + [sym_super] = ACTIONS(1587), + [sym_crate] = ACTIONS(1587), + [sym_metavariable] = ACTIONS(1589), + [sym__raw_string_literal_start] = ACTIONS(1589), + [sym_float_literal] = ACTIONS(1589), }, [439] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2407), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(2408), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_type_binding] = STATE(2591), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), - [sym_label] = STATE(3598), - [sym_block] = STATE(2591), - [sym__literal] = STATE(2591), - [sym_string_literal] = STATE(3004), - [sym_raw_string_literal] = STATE(3004), - [sym_boolean_literal] = STATE(3004), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2463), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(2464), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_type_binding] = STATE(2660), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), + [sym_label] = STATE(3608), + [sym_block] = STATE(2660), + [sym__literal] = STATE(2660), + [sym_string_literal] = STATE(2839), + [sym_raw_string_literal] = STATE(2839), + [sym_boolean_literal] = STATE(2839), [sym_line_comment] = STATE(439), [sym_block_comment] = STATE(439), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_GT] = ACTIONS(1617), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1605), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1605), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1603), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1613), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1613), }, [440] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2407), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(2408), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_type_binding] = STATE(2591), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), - [sym_label] = STATE(3598), - [sym_block] = STATE(2591), - [sym__literal] = STATE(2591), - [sym_string_literal] = STATE(3004), - [sym_raw_string_literal] = STATE(3004), - [sym_boolean_literal] = STATE(3004), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2463), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(2464), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_type_binding] = STATE(2660), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), + [sym_label] = STATE(3608), + [sym_block] = STATE(2660), + [sym__literal] = STATE(2660), + [sym_string_literal] = STATE(2839), + [sym_raw_string_literal] = STATE(2839), + [sym_boolean_literal] = STATE(2839), [sym_line_comment] = STATE(440), [sym_block_comment] = STATE(440), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), [anon_sym_GT] = ACTIONS(1619), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1605), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1605), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1613), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1613), }, [441] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2407), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(2408), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_type_binding] = STATE(2591), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), - [sym_label] = STATE(3598), - [sym_block] = STATE(2591), - [sym__literal] = STATE(2591), - [sym_string_literal] = STATE(3004), - [sym_raw_string_literal] = STATE(3004), - [sym_boolean_literal] = STATE(3004), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2463), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(2464), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_type_binding] = STATE(2660), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), + [sym_label] = STATE(3608), + [sym_block] = STATE(2660), + [sym__literal] = STATE(2660), + [sym_string_literal] = STATE(2839), + [sym_raw_string_literal] = STATE(2839), + [sym_boolean_literal] = STATE(2839), [sym_line_comment] = STATE(441), [sym_block_comment] = STATE(441), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), [anon_sym_GT] = ACTIONS(1621), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1605), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1605), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1613), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1613), }, [442] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2407), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(2408), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_type_binding] = STATE(2591), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), - [sym_label] = STATE(3598), - [sym_block] = STATE(2591), - [sym__literal] = STATE(2591), - [sym_string_literal] = STATE(3004), - [sym_raw_string_literal] = STATE(3004), - [sym_boolean_literal] = STATE(3004), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2463), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(2464), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_type_binding] = STATE(2660), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), + [sym_label] = STATE(3608), + [sym_block] = STATE(2660), + [sym__literal] = STATE(2660), + [sym_string_literal] = STATE(2839), + [sym_raw_string_literal] = STATE(2839), + [sym_boolean_literal] = STATE(2839), [sym_line_comment] = STATE(442), [sym_block_comment] = STATE(442), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), [anon_sym_GT] = ACTIONS(1623), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1605), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1605), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1613), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1613), }, [443] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2407), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(2408), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_type_binding] = STATE(2591), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), - [sym_label] = STATE(3598), - [sym_block] = STATE(2591), - [sym__literal] = STATE(2591), - [sym_string_literal] = STATE(3004), - [sym_raw_string_literal] = STATE(3004), - [sym_boolean_literal] = STATE(3004), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2463), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(2464), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_type_binding] = STATE(2660), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), + [sym_label] = STATE(3608), + [sym_block] = STATE(2660), + [sym__literal] = STATE(2660), + [sym_string_literal] = STATE(2839), + [sym_raw_string_literal] = STATE(2839), + [sym_boolean_literal] = STATE(2839), [sym_line_comment] = STATE(443), [sym_block_comment] = STATE(443), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), [anon_sym_GT] = ACTIONS(1625), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1605), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1605), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1613), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1613), }, [444] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2407), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(2408), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_type_binding] = STATE(2591), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), - [sym_label] = STATE(3598), - [sym_block] = STATE(2591), - [sym__literal] = STATE(2591), - [sym_string_literal] = STATE(3004), - [sym_raw_string_literal] = STATE(3004), - [sym_boolean_literal] = STATE(3004), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2463), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(2464), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_type_binding] = STATE(2660), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), + [sym_label] = STATE(3608), + [sym_block] = STATE(2660), + [sym__literal] = STATE(2660), + [sym_string_literal] = STATE(2839), + [sym_raw_string_literal] = STATE(2839), + [sym_boolean_literal] = STATE(2839), [sym_line_comment] = STATE(444), [sym_block_comment] = STATE(444), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1605), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1605), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1627), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1613), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1613), }, [445] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2331), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(2333), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_type_binding] = STATE(2470), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), - [sym_label] = STATE(3598), - [sym_block] = STATE(2470), - [sym__literal] = STATE(2470), - [sym_string_literal] = STATE(3004), - [sym_raw_string_literal] = STATE(3004), - [sym_boolean_literal] = STATE(3004), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2463), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(2464), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_type_binding] = STATE(2660), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), + [sym_label] = STATE(3608), + [sym_block] = STATE(2660), + [sym__literal] = STATE(2660), + [sym_string_literal] = STATE(2839), + [sym_raw_string_literal] = STATE(2839), + [sym_boolean_literal] = STATE(2839), [sym_line_comment] = STATE(445), [sym_block_comment] = STATE(445), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1605), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1605), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1613), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1613), }, [446] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2388), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(2337), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_type_binding] = STATE(2486), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), - [sym_label] = STATE(3598), - [sym_block] = STATE(2486), - [sym__literal] = STATE(2486), - [sym_string_literal] = STATE(3004), - [sym_raw_string_literal] = STATE(3004), - [sym_boolean_literal] = STATE(3004), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2463), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(2464), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_type_binding] = STATE(2660), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), + [sym_label] = STATE(3608), + [sym_block] = STATE(2660), + [sym__literal] = STATE(2660), + [sym_string_literal] = STATE(2839), + [sym_raw_string_literal] = STATE(2839), + [sym_boolean_literal] = STATE(2839), [sym_line_comment] = STATE(446), [sym_block_comment] = STATE(446), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1605), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1605), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1631), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1613), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1613), }, [447] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2332), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(2374), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_type_binding] = STATE(2437), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), - [sym_label] = STATE(3598), - [sym_block] = STATE(2437), - [sym__literal] = STATE(2437), - [sym_string_literal] = STATE(3004), - [sym_raw_string_literal] = STATE(3004), - [sym_boolean_literal] = STATE(3004), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2463), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(2464), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_type_binding] = STATE(2660), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), + [sym_label] = STATE(3608), + [sym_block] = STATE(2660), + [sym__literal] = STATE(2660), + [sym_string_literal] = STATE(2839), + [sym_raw_string_literal] = STATE(2839), + [sym_boolean_literal] = STATE(2839), [sym_line_comment] = STATE(447), [sym_block_comment] = STATE(447), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(1583), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(1599), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [sym_integer_literal] = ACTIONS(1605), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1605), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1605), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_GT] = ACTIONS(1633), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1613), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1613), }, [448] = { - [sym_else_clause] = STATE(472), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2341), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(2342), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_type_binding] = STATE(2415), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), + [sym_label] = STATE(3608), + [sym_block] = STATE(2415), + [sym__literal] = STATE(2415), + [sym_string_literal] = STATE(2839), + [sym_raw_string_literal] = STATE(2839), + [sym_boolean_literal] = STATE(2839), [sym_line_comment] = STATE(448), [sym_block_comment] = STATE(448), - [sym_identifier] = ACTIONS(1241), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1239), - [anon_sym_RBRACE] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1241), - [anon_sym_STAR] = ACTIONS(1241), - [anon_sym_QMARK] = ACTIONS(1239), - [anon_sym_u8] = ACTIONS(1241), - [anon_sym_i8] = ACTIONS(1241), - [anon_sym_u16] = ACTIONS(1241), - [anon_sym_i16] = ACTIONS(1241), - [anon_sym_u32] = ACTIONS(1241), - [anon_sym_i32] = ACTIONS(1241), - [anon_sym_u64] = ACTIONS(1241), - [anon_sym_i64] = ACTIONS(1241), - [anon_sym_u128] = ACTIONS(1241), - [anon_sym_i128] = ACTIONS(1241), - [anon_sym_isize] = ACTIONS(1241), - [anon_sym_usize] = ACTIONS(1241), - [anon_sym_f32] = ACTIONS(1241), - [anon_sym_f64] = ACTIONS(1241), - [anon_sym_bool] = ACTIONS(1241), - [anon_sym_str] = ACTIONS(1241), - [anon_sym_char] = ACTIONS(1241), - [anon_sym_DASH] = ACTIONS(1241), - [anon_sym_SLASH] = ACTIONS(1241), - [anon_sym_PERCENT] = ACTIONS(1241), - [anon_sym_CARET] = ACTIONS(1241), - [anon_sym_AMP] = ACTIONS(1241), - [anon_sym_PIPE] = ACTIONS(1241), - [anon_sym_AMP_AMP] = ACTIONS(1239), - [anon_sym_PIPE_PIPE] = ACTIONS(1239), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1241), - [anon_sym_PLUS_EQ] = ACTIONS(1239), - [anon_sym_DASH_EQ] = ACTIONS(1239), - [anon_sym_STAR_EQ] = ACTIONS(1239), - [anon_sym_SLASH_EQ] = ACTIONS(1239), - [anon_sym_PERCENT_EQ] = ACTIONS(1239), - [anon_sym_CARET_EQ] = ACTIONS(1239), - [anon_sym_AMP_EQ] = ACTIONS(1239), - [anon_sym_PIPE_EQ] = ACTIONS(1239), - [anon_sym_LT_LT_EQ] = ACTIONS(1239), - [anon_sym_GT_GT_EQ] = ACTIONS(1239), - [anon_sym_EQ] = ACTIONS(1241), - [anon_sym_EQ_EQ] = ACTIONS(1239), - [anon_sym_BANG_EQ] = ACTIONS(1239), - [anon_sym_GT] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(1241), - [anon_sym_GT_EQ] = ACTIONS(1239), - [anon_sym_LT_EQ] = ACTIONS(1239), - [anon_sym__] = ACTIONS(1241), - [anon_sym_DOT] = ACTIONS(1241), - [anon_sym_DOT_DOT] = ACTIONS(1241), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1239), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [anon_sym_COMMA] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1239), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_as] = ACTIONS(1241), - [anon_sym_const] = ACTIONS(1241), - [anon_sym_default] = ACTIONS(1241), - [anon_sym_union] = ACTIONS(1241), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_else] = ACTIONS(1627), - [sym_mutable_specifier] = ACTIONS(1241), - [sym_integer_literal] = ACTIONS(1239), - [aux_sym_string_literal_token1] = ACTIONS(1239), - [sym_char_literal] = ACTIONS(1239), - [anon_sym_true] = ACTIONS(1241), - [anon_sym_false] = ACTIONS(1241), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1241), - [sym_super] = ACTIONS(1241), - [sym_crate] = ACTIONS(1241), - [sym_metavariable] = ACTIONS(1239), - [sym__raw_string_literal_start] = ACTIONS(1239), - [sym_float_literal] = ACTIONS(1239), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1613), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1613), }, [449] = { + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2374), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(2375), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_type_binding] = STATE(2450), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), + [sym_label] = STATE(3608), + [sym_block] = STATE(2450), + [sym__literal] = STATE(2450), + [sym_string_literal] = STATE(2839), + [sym_raw_string_literal] = STATE(2839), + [sym_boolean_literal] = STATE(2839), [sym_line_comment] = STATE(449), [sym_block_comment] = STATE(449), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1613), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1613), + }, + [450] = { + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2371), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(2372), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_type_binding] = STATE(2442), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), + [sym_label] = STATE(3608), + [sym_block] = STATE(2442), + [sym__literal] = STATE(2442), + [sym_string_literal] = STATE(2839), + [sym_raw_string_literal] = STATE(2839), + [sym_boolean_literal] = STATE(2839), + [sym_line_comment] = STATE(450), + [sym_block_comment] = STATE(450), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1613), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1613), + }, + [451] = { + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2463), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(2464), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_type_binding] = STATE(2660), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), + [sym_label] = STATE(3608), + [sym_block] = STATE(2660), + [sym__literal] = STATE(2660), + [sym_string_literal] = STATE(2839), + [sym_raw_string_literal] = STATE(2839), + [sym_boolean_literal] = STATE(2839), + [sym_line_comment] = STATE(451), + [sym_block_comment] = STATE(451), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(1591), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(1597), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(1607), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1613), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1613), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1613), + }, + [452] = { + [sym_else_clause] = STATE(461), + [sym_line_comment] = STATE(452), + [sym_block_comment] = STATE(452), + [sym_identifier] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1247), + [anon_sym_LBRACK] = ACTIONS(1247), + [anon_sym_RBRACE] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1249), + [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_u8] = ACTIONS(1249), + [anon_sym_i8] = ACTIONS(1249), + [anon_sym_u16] = ACTIONS(1249), + [anon_sym_i16] = ACTIONS(1249), + [anon_sym_u32] = ACTIONS(1249), + [anon_sym_i32] = ACTIONS(1249), + [anon_sym_u64] = ACTIONS(1249), + [anon_sym_i64] = ACTIONS(1249), + [anon_sym_u128] = ACTIONS(1249), + [anon_sym_i128] = ACTIONS(1249), + [anon_sym_isize] = ACTIONS(1249), + [anon_sym_usize] = ACTIONS(1249), + [anon_sym_f32] = ACTIONS(1249), + [anon_sym_f64] = ACTIONS(1249), + [anon_sym_bool] = ACTIONS(1249), + [anon_sym_str] = ACTIONS(1249), + [anon_sym_char] = ACTIONS(1249), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1249), + [anon_sym_PERCENT] = ACTIONS(1249), + [anon_sym_CARET] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1249), + [anon_sym_AMP_AMP] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1247), + [anon_sym_LT_LT] = ACTIONS(1249), + [anon_sym_GT_GT] = ACTIONS(1249), + [anon_sym_PLUS_EQ] = ACTIONS(1247), + [anon_sym_DASH_EQ] = ACTIONS(1247), + [anon_sym_STAR_EQ] = ACTIONS(1247), + [anon_sym_SLASH_EQ] = ACTIONS(1247), + [anon_sym_PERCENT_EQ] = ACTIONS(1247), + [anon_sym_CARET_EQ] = ACTIONS(1247), + [anon_sym_AMP_EQ] = ACTIONS(1247), + [anon_sym_PIPE_EQ] = ACTIONS(1247), + [anon_sym_LT_LT_EQ] = ACTIONS(1247), + [anon_sym_GT_GT_EQ] = ACTIONS(1247), + [anon_sym_EQ] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1247), + [anon_sym_BANG_EQ] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1249), + [anon_sym_GT_EQ] = ACTIONS(1247), + [anon_sym_LT_EQ] = ACTIONS(1247), + [anon_sym__] = ACTIONS(1249), + [anon_sym_DOT] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1247), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1247), + [anon_sym_COMMA] = ACTIONS(1247), + [anon_sym_COLON_COLON] = ACTIONS(1247), + [anon_sym_POUND] = ACTIONS(1247), + [anon_sym_as] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(1249), + [anon_sym_union] = ACTIONS(1249), + [anon_sym_ref] = ACTIONS(1249), + [anon_sym_else] = ACTIONS(1635), + [sym_mutable_specifier] = ACTIONS(1249), + [sym_integer_literal] = ACTIONS(1247), + [aux_sym_string_literal_token1] = ACTIONS(1247), + [sym_char_literal] = ACTIONS(1247), + [anon_sym_true] = ACTIONS(1249), + [anon_sym_false] = ACTIONS(1249), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1249), + [sym_super] = ACTIONS(1249), + [sym_crate] = ACTIONS(1249), + [sym_metavariable] = ACTIONS(1247), + [sym__raw_string_literal_start] = ACTIONS(1247), + [sym_float_literal] = ACTIONS(1247), + }, + [453] = { + [sym_line_comment] = STATE(453), + [sym_block_comment] = STATE(453), + [sym_identifier] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_QMARK] = ACTIONS(1265), + [anon_sym_u8] = ACTIONS(1267), + [anon_sym_i8] = ACTIONS(1267), + [anon_sym_u16] = ACTIONS(1267), + [anon_sym_i16] = ACTIONS(1267), + [anon_sym_u32] = ACTIONS(1267), + [anon_sym_i32] = ACTIONS(1267), + [anon_sym_u64] = ACTIONS(1267), + [anon_sym_i64] = ACTIONS(1267), + [anon_sym_u128] = ACTIONS(1267), + [anon_sym_i128] = ACTIONS(1267), + [anon_sym_isize] = ACTIONS(1267), + [anon_sym_usize] = ACTIONS(1267), + [anon_sym_f32] = ACTIONS(1267), + [anon_sym_f64] = ACTIONS(1267), + [anon_sym_bool] = ACTIONS(1267), + [anon_sym_str] = ACTIONS(1267), + [anon_sym_char] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1265), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_PLUS_EQ] = ACTIONS(1265), + [anon_sym_DASH_EQ] = ACTIONS(1265), + [anon_sym_STAR_EQ] = ACTIONS(1265), + [anon_sym_SLASH_EQ] = ACTIONS(1265), + [anon_sym_PERCENT_EQ] = ACTIONS(1265), + [anon_sym_CARET_EQ] = ACTIONS(1265), + [anon_sym_AMP_EQ] = ACTIONS(1265), + [anon_sym_PIPE_EQ] = ACTIONS(1265), + [anon_sym_LT_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_GT_EQ] = ACTIONS(1265), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym__] = ACTIONS(1267), + [anon_sym_DOT] = ACTIONS(1267), + [anon_sym_DOT_DOT] = ACTIONS(1267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_COMMA] = ACTIONS(1265), + [anon_sym_COLON_COLON] = ACTIONS(1265), + [anon_sym_POUND] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1267), + [sym_integer_literal] = ACTIONS(1265), + [aux_sym_string_literal_token1] = ACTIONS(1265), + [sym_char_literal] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1267), + [anon_sym_false] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1267), + [sym_super] = ACTIONS(1267), + [sym_crate] = ACTIONS(1267), + [sym_metavariable] = ACTIONS(1265), + [sym__raw_string_literal_start] = ACTIONS(1265), + [sym_float_literal] = ACTIONS(1265), + }, + [454] = { + [sym_line_comment] = STATE(454), + [sym_block_comment] = STATE(454), + [sym_identifier] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1269), + [anon_sym_RBRACE] = ACTIONS(1269), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_QMARK] = ACTIONS(1269), + [anon_sym_u8] = ACTIONS(1271), + [anon_sym_i8] = ACTIONS(1271), + [anon_sym_u16] = ACTIONS(1271), + [anon_sym_i16] = ACTIONS(1271), + [anon_sym_u32] = ACTIONS(1271), + [anon_sym_i32] = ACTIONS(1271), + [anon_sym_u64] = ACTIONS(1271), + [anon_sym_i64] = ACTIONS(1271), + [anon_sym_u128] = ACTIONS(1271), + [anon_sym_i128] = ACTIONS(1271), + [anon_sym_isize] = ACTIONS(1271), + [anon_sym_usize] = ACTIONS(1271), + [anon_sym_f32] = ACTIONS(1271), + [anon_sym_f64] = ACTIONS(1271), + [anon_sym_bool] = ACTIONS(1271), + [anon_sym_str] = ACTIONS(1271), + [anon_sym_char] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_PERCENT] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym_AMP] = ACTIONS(1271), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_AMP_AMP] = ACTIONS(1269), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1271), + [anon_sym_GT_GT] = ACTIONS(1271), + [anon_sym_PLUS_EQ] = ACTIONS(1269), + [anon_sym_DASH_EQ] = ACTIONS(1269), + [anon_sym_STAR_EQ] = ACTIONS(1269), + [anon_sym_SLASH_EQ] = ACTIONS(1269), + [anon_sym_PERCENT_EQ] = ACTIONS(1269), + [anon_sym_CARET_EQ] = ACTIONS(1269), + [anon_sym_AMP_EQ] = ACTIONS(1269), + [anon_sym_PIPE_EQ] = ACTIONS(1269), + [anon_sym_LT_LT_EQ] = ACTIONS(1269), + [anon_sym_GT_GT_EQ] = ACTIONS(1269), + [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1269), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_LT_EQ] = ACTIONS(1269), + [anon_sym__] = ACTIONS(1271), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1269), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_COLON_COLON] = ACTIONS(1269), + [anon_sym_POUND] = ACTIONS(1269), + [anon_sym_as] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_ref] = ACTIONS(1271), + [anon_sym_else] = ACTIONS(1271), + [sym_mutable_specifier] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1269), + [aux_sym_string_literal_token1] = ACTIONS(1269), + [sym_char_literal] = ACTIONS(1269), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1271), + [sym_super] = ACTIONS(1271), + [sym_crate] = ACTIONS(1271), + [sym_metavariable] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1269), + }, + [455] = { + [sym_line_comment] = STATE(455), + [sym_block_comment] = STATE(455), [sym_identifier] = ACTIONS(1263), [anon_sym_LPAREN] = ACTIONS(1261), [anon_sym_LBRACK] = ACTIONS(1261), @@ -66916,9 +67572,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1261), [sym_float_literal] = ACTIONS(1261), }, - [450] = { - [sym_line_comment] = STATE(450), - [sym_block_comment] = STATE(450), + [456] = { + [sym_line_comment] = STATE(456), + [sym_block_comment] = STATE(456), [sym_identifier] = ACTIONS(1259), [anon_sym_LPAREN] = ACTIONS(1257), [anon_sym_LBRACK] = ACTIONS(1257), @@ -66999,9 +67655,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1257), [sym_float_literal] = ACTIONS(1257), }, - [451] = { - [sym_line_comment] = STATE(451), - [sym_block_comment] = STATE(451), + [457] = { + [sym_line_comment] = STATE(457), + [sym_block_comment] = STATE(457), [sym_identifier] = ACTIONS(1255), [anon_sym_LPAREN] = ACTIONS(1253), [anon_sym_LBRACK] = ACTIONS(1253), @@ -67082,913 +67738,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1253), [sym_float_literal] = ACTIONS(1253), }, - [452] = { - [sym_line_comment] = STATE(452), - [sym_block_comment] = STATE(452), - [sym_identifier] = ACTIONS(1247), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_PLUS] = ACTIONS(1247), - [anon_sym_STAR] = ACTIONS(1247), - [anon_sym_QMARK] = ACTIONS(1245), - [anon_sym_u8] = ACTIONS(1247), - [anon_sym_i8] = ACTIONS(1247), - [anon_sym_u16] = ACTIONS(1247), - [anon_sym_i16] = ACTIONS(1247), - [anon_sym_u32] = ACTIONS(1247), - [anon_sym_i32] = ACTIONS(1247), - [anon_sym_u64] = ACTIONS(1247), - [anon_sym_i64] = ACTIONS(1247), - [anon_sym_u128] = ACTIONS(1247), - [anon_sym_i128] = ACTIONS(1247), - [anon_sym_isize] = ACTIONS(1247), - [anon_sym_usize] = ACTIONS(1247), - [anon_sym_f32] = ACTIONS(1247), - [anon_sym_f64] = ACTIONS(1247), - [anon_sym_bool] = ACTIONS(1247), - [anon_sym_str] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1247), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_PERCENT] = ACTIONS(1247), - [anon_sym_CARET] = ACTIONS(1247), - [anon_sym_AMP] = ACTIONS(1247), - [anon_sym_PIPE] = ACTIONS(1247), - [anon_sym_AMP_AMP] = ACTIONS(1245), - [anon_sym_PIPE_PIPE] = ACTIONS(1245), - [anon_sym_LT_LT] = ACTIONS(1247), - [anon_sym_GT_GT] = ACTIONS(1247), - [anon_sym_PLUS_EQ] = ACTIONS(1245), - [anon_sym_DASH_EQ] = ACTIONS(1245), - [anon_sym_STAR_EQ] = ACTIONS(1245), - [anon_sym_SLASH_EQ] = ACTIONS(1245), - [anon_sym_PERCENT_EQ] = ACTIONS(1245), - [anon_sym_CARET_EQ] = ACTIONS(1245), - [anon_sym_AMP_EQ] = ACTIONS(1245), - [anon_sym_PIPE_EQ] = ACTIONS(1245), - [anon_sym_LT_LT_EQ] = ACTIONS(1245), - [anon_sym_GT_GT_EQ] = ACTIONS(1245), - [anon_sym_EQ] = ACTIONS(1247), - [anon_sym_EQ_EQ] = ACTIONS(1245), - [anon_sym_BANG_EQ] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1247), - [anon_sym_GT_EQ] = ACTIONS(1245), - [anon_sym_LT_EQ] = ACTIONS(1245), - [anon_sym__] = ACTIONS(1247), - [anon_sym_DOT] = ACTIONS(1247), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1245), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(1245), - [anon_sym_COLON_COLON] = ACTIONS(1245), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_as] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_default] = ACTIONS(1247), - [anon_sym_union] = ACTIONS(1247), - [anon_sym_ref] = ACTIONS(1247), - [anon_sym_else] = ACTIONS(1247), - [sym_mutable_specifier] = ACTIONS(1247), - [sym_integer_literal] = ACTIONS(1245), - [aux_sym_string_literal_token1] = ACTIONS(1245), - [sym_char_literal] = ACTIONS(1245), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1247), - [sym_super] = ACTIONS(1247), - [sym_crate] = ACTIONS(1247), - [sym_metavariable] = ACTIONS(1245), - [sym__raw_string_literal_start] = ACTIONS(1245), - [sym_float_literal] = ACTIONS(1245), - }, - [453] = { - [sym_line_comment] = STATE(453), - [sym_block_comment] = STATE(453), - [sym_identifier] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(1249), - [anon_sym_u8] = ACTIONS(1251), - [anon_sym_i8] = ACTIONS(1251), - [anon_sym_u16] = ACTIONS(1251), - [anon_sym_i16] = ACTIONS(1251), - [anon_sym_u32] = ACTIONS(1251), - [anon_sym_i32] = ACTIONS(1251), - [anon_sym_u64] = ACTIONS(1251), - [anon_sym_i64] = ACTIONS(1251), - [anon_sym_u128] = ACTIONS(1251), - [anon_sym_i128] = ACTIONS(1251), - [anon_sym_isize] = ACTIONS(1251), - [anon_sym_usize] = ACTIONS(1251), - [anon_sym_f32] = ACTIONS(1251), - [anon_sym_f64] = ACTIONS(1251), - [anon_sym_bool] = ACTIONS(1251), - [anon_sym_str] = ACTIONS(1251), - [anon_sym_char] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_SLASH] = ACTIONS(1251), - [anon_sym_PERCENT] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_PIPE] = ACTIONS(1251), - [anon_sym_AMP_AMP] = ACTIONS(1249), - [anon_sym_PIPE_PIPE] = ACTIONS(1249), - [anon_sym_LT_LT] = ACTIONS(1251), - [anon_sym_GT_GT] = ACTIONS(1251), - [anon_sym_PLUS_EQ] = ACTIONS(1249), - [anon_sym_DASH_EQ] = ACTIONS(1249), - [anon_sym_STAR_EQ] = ACTIONS(1249), - [anon_sym_SLASH_EQ] = ACTIONS(1249), - [anon_sym_PERCENT_EQ] = ACTIONS(1249), - [anon_sym_CARET_EQ] = ACTIONS(1249), - [anon_sym_AMP_EQ] = ACTIONS(1249), - [anon_sym_PIPE_EQ] = ACTIONS(1249), - [anon_sym_LT_LT_EQ] = ACTIONS(1249), - [anon_sym_GT_GT_EQ] = ACTIONS(1249), - [anon_sym_EQ] = ACTIONS(1251), - [anon_sym_EQ_EQ] = ACTIONS(1249), - [anon_sym_BANG_EQ] = ACTIONS(1249), - [anon_sym_GT] = ACTIONS(1251), - [anon_sym_LT] = ACTIONS(1251), - [anon_sym_GT_EQ] = ACTIONS(1249), - [anon_sym_LT_EQ] = ACTIONS(1249), - [anon_sym__] = ACTIONS(1251), - [anon_sym_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1249), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1249), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_COLON_COLON] = ACTIONS(1249), - [anon_sym_POUND] = ACTIONS(1249), - [anon_sym_as] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1251), - [anon_sym_union] = ACTIONS(1251), - [anon_sym_ref] = ACTIONS(1251), - [anon_sym_else] = ACTIONS(1251), - [sym_mutable_specifier] = ACTIONS(1251), - [sym_integer_literal] = ACTIONS(1249), - [aux_sym_string_literal_token1] = ACTIONS(1249), - [sym_char_literal] = ACTIONS(1249), - [anon_sym_true] = ACTIONS(1251), - [anon_sym_false] = ACTIONS(1251), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1251), - [sym_super] = ACTIONS(1251), - [sym_crate] = ACTIONS(1251), - [sym_metavariable] = ACTIONS(1249), - [sym__raw_string_literal_start] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1249), - }, - [454] = { - [sym_line_comment] = STATE(454), - [sym_block_comment] = STATE(454), - [sym_identifier] = ACTIONS(1359), - [anon_sym_LPAREN] = ACTIONS(1357), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_RBRACE] = ACTIONS(1357), - [anon_sym_PLUS] = ACTIONS(1359), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_QMARK] = ACTIONS(1357), - [anon_sym_u8] = ACTIONS(1359), - [anon_sym_i8] = ACTIONS(1359), - [anon_sym_u16] = ACTIONS(1359), - [anon_sym_i16] = ACTIONS(1359), - [anon_sym_u32] = ACTIONS(1359), - [anon_sym_i32] = ACTIONS(1359), - [anon_sym_u64] = ACTIONS(1359), - [anon_sym_i64] = ACTIONS(1359), - [anon_sym_u128] = ACTIONS(1359), - [anon_sym_i128] = ACTIONS(1359), - [anon_sym_isize] = ACTIONS(1359), - [anon_sym_usize] = ACTIONS(1359), - [anon_sym_f32] = ACTIONS(1359), - [anon_sym_f64] = ACTIONS(1359), - [anon_sym_bool] = ACTIONS(1359), - [anon_sym_str] = ACTIONS(1359), - [anon_sym_char] = ACTIONS(1359), - [anon_sym_DASH] = ACTIONS(1359), - [anon_sym_SLASH] = ACTIONS(1359), - [anon_sym_PERCENT] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1359), - [anon_sym_AMP] = ACTIONS(1359), - [anon_sym_PIPE] = ACTIONS(1359), - [anon_sym_AMP_AMP] = ACTIONS(1357), - [anon_sym_PIPE_PIPE] = ACTIONS(1357), - [anon_sym_LT_LT] = ACTIONS(1359), - [anon_sym_GT_GT] = ACTIONS(1359), - [anon_sym_PLUS_EQ] = ACTIONS(1357), - [anon_sym_DASH_EQ] = ACTIONS(1357), - [anon_sym_STAR_EQ] = ACTIONS(1357), - [anon_sym_SLASH_EQ] = ACTIONS(1357), - [anon_sym_PERCENT_EQ] = ACTIONS(1357), - [anon_sym_CARET_EQ] = ACTIONS(1357), - [anon_sym_AMP_EQ] = ACTIONS(1357), - [anon_sym_PIPE_EQ] = ACTIONS(1357), - [anon_sym_LT_LT_EQ] = ACTIONS(1357), - [anon_sym_GT_GT_EQ] = ACTIONS(1357), - [anon_sym_EQ] = ACTIONS(1359), - [anon_sym_EQ_EQ] = ACTIONS(1357), - [anon_sym_BANG_EQ] = ACTIONS(1357), - [anon_sym_GT] = ACTIONS(1359), - [anon_sym_LT] = ACTIONS(1359), - [anon_sym_GT_EQ] = ACTIONS(1357), - [anon_sym_LT_EQ] = ACTIONS(1357), - [anon_sym__] = ACTIONS(1359), - [anon_sym_DOT] = ACTIONS(1359), - [anon_sym_DOT_DOT] = ACTIONS(1359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1357), - [anon_sym_COMMA] = ACTIONS(1357), - [anon_sym_COLON_COLON] = ACTIONS(1357), - [anon_sym_POUND] = ACTIONS(1357), - [anon_sym_as] = ACTIONS(1359), - [anon_sym_const] = ACTIONS(1359), - [anon_sym_default] = ACTIONS(1359), - [anon_sym_union] = ACTIONS(1359), - [anon_sym_ref] = ACTIONS(1359), - [sym_mutable_specifier] = ACTIONS(1359), - [sym_integer_literal] = ACTIONS(1357), - [aux_sym_string_literal_token1] = ACTIONS(1357), - [sym_char_literal] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1359), - [anon_sym_false] = ACTIONS(1359), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1359), - [sym_super] = ACTIONS(1359), - [sym_crate] = ACTIONS(1359), - [sym_metavariable] = ACTIONS(1357), - [sym__raw_string_literal_start] = ACTIONS(1357), - [sym_float_literal] = ACTIONS(1357), - }, - [455] = { - [sym_line_comment] = STATE(455), - [sym_block_comment] = STATE(455), - [sym_identifier] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1301), - [anon_sym_LBRACK] = ACTIONS(1301), - [anon_sym_RBRACE] = ACTIONS(1301), - [anon_sym_PLUS] = ACTIONS(1303), - [anon_sym_STAR] = ACTIONS(1303), - [anon_sym_QMARK] = ACTIONS(1301), - [anon_sym_u8] = ACTIONS(1303), - [anon_sym_i8] = ACTIONS(1303), - [anon_sym_u16] = ACTIONS(1303), - [anon_sym_i16] = ACTIONS(1303), - [anon_sym_u32] = ACTIONS(1303), - [anon_sym_i32] = ACTIONS(1303), - [anon_sym_u64] = ACTIONS(1303), - [anon_sym_i64] = ACTIONS(1303), - [anon_sym_u128] = ACTIONS(1303), - [anon_sym_i128] = ACTIONS(1303), - [anon_sym_isize] = ACTIONS(1303), - [anon_sym_usize] = ACTIONS(1303), - [anon_sym_f32] = ACTIONS(1303), - [anon_sym_f64] = ACTIONS(1303), - [anon_sym_bool] = ACTIONS(1303), - [anon_sym_str] = ACTIONS(1303), - [anon_sym_char] = ACTIONS(1303), - [anon_sym_DASH] = ACTIONS(1303), - [anon_sym_SLASH] = ACTIONS(1303), - [anon_sym_PERCENT] = ACTIONS(1303), - [anon_sym_CARET] = ACTIONS(1303), - [anon_sym_AMP] = ACTIONS(1303), - [anon_sym_PIPE] = ACTIONS(1303), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [anon_sym_LT_LT] = ACTIONS(1303), - [anon_sym_GT_GT] = ACTIONS(1303), - [anon_sym_PLUS_EQ] = ACTIONS(1301), - [anon_sym_DASH_EQ] = ACTIONS(1301), - [anon_sym_STAR_EQ] = ACTIONS(1301), - [anon_sym_SLASH_EQ] = ACTIONS(1301), - [anon_sym_PERCENT_EQ] = ACTIONS(1301), - [anon_sym_CARET_EQ] = ACTIONS(1301), - [anon_sym_AMP_EQ] = ACTIONS(1301), - [anon_sym_PIPE_EQ] = ACTIONS(1301), - [anon_sym_LT_LT_EQ] = ACTIONS(1301), - [anon_sym_GT_GT_EQ] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1303), - [anon_sym_EQ_EQ] = ACTIONS(1301), - [anon_sym_BANG_EQ] = ACTIONS(1301), - [anon_sym_GT] = ACTIONS(1303), - [anon_sym_LT] = ACTIONS(1303), - [anon_sym_GT_EQ] = ACTIONS(1301), - [anon_sym_LT_EQ] = ACTIONS(1301), - [anon_sym__] = ACTIONS(1303), - [anon_sym_DOT] = ACTIONS(1303), - [anon_sym_DOT_DOT] = ACTIONS(1303), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1301), - [anon_sym_COMMA] = ACTIONS(1301), - [anon_sym_COLON_COLON] = ACTIONS(1301), - [anon_sym_POUND] = ACTIONS(1301), - [anon_sym_as] = ACTIONS(1303), - [anon_sym_const] = ACTIONS(1303), - [anon_sym_default] = ACTIONS(1303), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_ref] = ACTIONS(1303), - [sym_mutable_specifier] = ACTIONS(1303), - [sym_integer_literal] = ACTIONS(1301), - [aux_sym_string_literal_token1] = ACTIONS(1301), - [sym_char_literal] = ACTIONS(1301), - [anon_sym_true] = ACTIONS(1303), - [anon_sym_false] = ACTIONS(1303), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1303), - [sym_super] = ACTIONS(1303), - [sym_crate] = ACTIONS(1303), - [sym_metavariable] = ACTIONS(1301), - [sym__raw_string_literal_start] = ACTIONS(1301), - [sym_float_literal] = ACTIONS(1301), - }, - [456] = { - [sym_line_comment] = STATE(456), - [sym_block_comment] = STATE(456), - [sym_identifier] = ACTIONS(1629), - [anon_sym_LPAREN] = ACTIONS(1631), - [anon_sym_LBRACK] = ACTIONS(1631), - [anon_sym_RBRACE] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [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), - [anon_sym_DASH] = ACTIONS(1629), - [anon_sym_SLASH] = ACTIONS(1289), - [anon_sym_PERCENT] = ACTIONS(1289), - [anon_sym_CARET] = ACTIONS(1289), - [anon_sym_AMP] = ACTIONS(1629), - [anon_sym_PIPE] = ACTIONS(1629), - [anon_sym_AMP_AMP] = ACTIONS(1291), - [anon_sym_PIPE_PIPE] = ACTIONS(1291), - [anon_sym_LT_LT] = ACTIONS(1289), - [anon_sym_GT_GT] = ACTIONS(1289), - [anon_sym_PLUS_EQ] = ACTIONS(1291), - [anon_sym_DASH_EQ] = ACTIONS(1291), - [anon_sym_STAR_EQ] = ACTIONS(1291), - [anon_sym_SLASH_EQ] = ACTIONS(1291), - [anon_sym_PERCENT_EQ] = ACTIONS(1291), - [anon_sym_CARET_EQ] = ACTIONS(1291), - [anon_sym_AMP_EQ] = ACTIONS(1291), - [anon_sym_PIPE_EQ] = ACTIONS(1291), - [anon_sym_LT_LT_EQ] = ACTIONS(1291), - [anon_sym_GT_GT_EQ] = ACTIONS(1291), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_EQ_EQ] = ACTIONS(1291), - [anon_sym_BANG_EQ] = ACTIONS(1291), - [anon_sym_GT] = ACTIONS(1289), - [anon_sym_LT] = ACTIONS(1629), - [anon_sym_GT_EQ] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(1291), - [anon_sym__] = ACTIONS(1629), - [anon_sym_DOT] = ACTIONS(1289), - [anon_sym_DOT_DOT] = ACTIONS(1629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1291), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1291), - [anon_sym_COMMA] = ACTIONS(1291), - [anon_sym_COLON_COLON] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(1631), - [anon_sym_as] = ACTIONS(1289), - [anon_sym_const] = ACTIONS(1629), - [anon_sym_default] = ACTIONS(1629), - [anon_sym_union] = ACTIONS(1629), - [anon_sym_ref] = ACTIONS(1629), - [sym_mutable_specifier] = ACTIONS(1629), - [sym_integer_literal] = ACTIONS(1631), - [aux_sym_string_literal_token1] = ACTIONS(1631), - [sym_char_literal] = ACTIONS(1631), - [anon_sym_true] = ACTIONS(1629), - [anon_sym_false] = ACTIONS(1629), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1629), - [sym_super] = ACTIONS(1629), - [sym_crate] = ACTIONS(1629), - [sym_metavariable] = ACTIONS(1631), - [sym__raw_string_literal_start] = ACTIONS(1631), - [sym_float_literal] = ACTIONS(1631), - }, - [457] = { - [sym_line_comment] = STATE(457), - [sym_block_comment] = STATE(457), - [sym_identifier] = ACTIONS(1347), - [anon_sym_LPAREN] = ACTIONS(1345), - [anon_sym_LBRACK] = ACTIONS(1345), - [anon_sym_RBRACE] = ACTIONS(1345), - [anon_sym_PLUS] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1347), - [anon_sym_QMARK] = ACTIONS(1345), - [anon_sym_u8] = ACTIONS(1347), - [anon_sym_i8] = ACTIONS(1347), - [anon_sym_u16] = ACTIONS(1347), - [anon_sym_i16] = ACTIONS(1347), - [anon_sym_u32] = ACTIONS(1347), - [anon_sym_i32] = ACTIONS(1347), - [anon_sym_u64] = ACTIONS(1347), - [anon_sym_i64] = ACTIONS(1347), - [anon_sym_u128] = ACTIONS(1347), - [anon_sym_i128] = ACTIONS(1347), - [anon_sym_isize] = ACTIONS(1347), - [anon_sym_usize] = ACTIONS(1347), - [anon_sym_f32] = ACTIONS(1347), - [anon_sym_f64] = ACTIONS(1347), - [anon_sym_bool] = ACTIONS(1347), - [anon_sym_str] = ACTIONS(1347), - [anon_sym_char] = ACTIONS(1347), - [anon_sym_DASH] = ACTIONS(1347), - [anon_sym_SLASH] = ACTIONS(1347), - [anon_sym_PERCENT] = ACTIONS(1347), - [anon_sym_CARET] = ACTIONS(1347), - [anon_sym_AMP] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_AMP_AMP] = ACTIONS(1345), - [anon_sym_PIPE_PIPE] = ACTIONS(1345), - [anon_sym_LT_LT] = ACTIONS(1347), - [anon_sym_GT_GT] = ACTIONS(1347), - [anon_sym_PLUS_EQ] = ACTIONS(1345), - [anon_sym_DASH_EQ] = ACTIONS(1345), - [anon_sym_STAR_EQ] = ACTIONS(1345), - [anon_sym_SLASH_EQ] = ACTIONS(1345), - [anon_sym_PERCENT_EQ] = ACTIONS(1345), - [anon_sym_CARET_EQ] = ACTIONS(1345), - [anon_sym_AMP_EQ] = ACTIONS(1345), - [anon_sym_PIPE_EQ] = ACTIONS(1345), - [anon_sym_LT_LT_EQ] = ACTIONS(1345), - [anon_sym_GT_GT_EQ] = ACTIONS(1345), - [anon_sym_EQ] = ACTIONS(1347), - [anon_sym_EQ_EQ] = ACTIONS(1345), - [anon_sym_BANG_EQ] = ACTIONS(1345), - [anon_sym_GT] = ACTIONS(1347), - [anon_sym_LT] = ACTIONS(1347), - [anon_sym_GT_EQ] = ACTIONS(1345), - [anon_sym_LT_EQ] = ACTIONS(1345), - [anon_sym__] = ACTIONS(1347), - [anon_sym_DOT] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1347), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1345), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1345), - [anon_sym_COMMA] = ACTIONS(1345), - [anon_sym_COLON_COLON] = ACTIONS(1345), - [anon_sym_POUND] = ACTIONS(1345), - [anon_sym_as] = ACTIONS(1347), - [anon_sym_const] = ACTIONS(1347), - [anon_sym_default] = ACTIONS(1347), - [anon_sym_union] = ACTIONS(1347), - [anon_sym_ref] = ACTIONS(1347), - [sym_mutable_specifier] = ACTIONS(1347), - [sym_integer_literal] = ACTIONS(1345), - [aux_sym_string_literal_token1] = ACTIONS(1345), - [sym_char_literal] = ACTIONS(1345), - [anon_sym_true] = ACTIONS(1347), - [anon_sym_false] = ACTIONS(1347), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1347), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1345), - [sym__raw_string_literal_start] = ACTIONS(1345), - [sym_float_literal] = ACTIONS(1345), - }, [458] = { + [sym_attribute_item] = STATE(1485), + [sym_inner_attribute_item] = STATE(1485), + [sym_bracketed_type] = STATE(3551), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3283), + [sym_macro_invocation] = STATE(2882), + [sym_scoped_identifier] = STATE(2161), + [sym_scoped_type_identifier] = STATE(2974), + [sym_match_arm] = STATE(1492), + [sym_last_match_arm] = STATE(3366), + [sym_match_pattern] = STATE(3417), + [sym_const_block] = STATE(2882), + [sym__pattern] = STATE(2763), + [sym_tuple_pattern] = STATE(2882), + [sym_slice_pattern] = STATE(2882), + [sym_tuple_struct_pattern] = STATE(2882), + [sym_struct_pattern] = STATE(2882), + [sym_remaining_field_pattern] = STATE(2882), + [sym_mut_pattern] = STATE(2882), + [sym_range_pattern] = STATE(2882), + [sym_ref_pattern] = STATE(2882), + [sym_captured_pattern] = STATE(2882), + [sym_reference_pattern] = STATE(2882), + [sym_or_pattern] = STATE(2882), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2305), + [sym_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_boolean_literal] = STATE(2305), [sym_line_comment] = STATE(458), [sym_block_comment] = STATE(458), - [sym_identifier] = ACTIONS(1339), - [anon_sym_LPAREN] = ACTIONS(1337), - [anon_sym_LBRACK] = ACTIONS(1337), - [anon_sym_RBRACE] = ACTIONS(1337), - [anon_sym_PLUS] = ACTIONS(1339), - [anon_sym_STAR] = ACTIONS(1339), - [anon_sym_QMARK] = ACTIONS(1337), - [anon_sym_u8] = ACTIONS(1339), - [anon_sym_i8] = ACTIONS(1339), - [anon_sym_u16] = ACTIONS(1339), - [anon_sym_i16] = ACTIONS(1339), - [anon_sym_u32] = ACTIONS(1339), - [anon_sym_i32] = ACTIONS(1339), - [anon_sym_u64] = ACTIONS(1339), - [anon_sym_i64] = ACTIONS(1339), - [anon_sym_u128] = ACTIONS(1339), - [anon_sym_i128] = ACTIONS(1339), - [anon_sym_isize] = ACTIONS(1339), - [anon_sym_usize] = ACTIONS(1339), - [anon_sym_f32] = ACTIONS(1339), - [anon_sym_f64] = ACTIONS(1339), - [anon_sym_bool] = ACTIONS(1339), - [anon_sym_str] = ACTIONS(1339), - [anon_sym_char] = ACTIONS(1339), - [anon_sym_DASH] = ACTIONS(1339), - [anon_sym_SLASH] = ACTIONS(1339), - [anon_sym_PERCENT] = ACTIONS(1339), - [anon_sym_CARET] = ACTIONS(1339), - [anon_sym_AMP] = ACTIONS(1339), - [anon_sym_PIPE] = ACTIONS(1339), - [anon_sym_AMP_AMP] = ACTIONS(1337), - [anon_sym_PIPE_PIPE] = ACTIONS(1337), - [anon_sym_LT_LT] = ACTIONS(1339), - [anon_sym_GT_GT] = ACTIONS(1339), - [anon_sym_PLUS_EQ] = ACTIONS(1337), - [anon_sym_DASH_EQ] = ACTIONS(1337), - [anon_sym_STAR_EQ] = ACTIONS(1337), - [anon_sym_SLASH_EQ] = ACTIONS(1337), - [anon_sym_PERCENT_EQ] = ACTIONS(1337), - [anon_sym_CARET_EQ] = ACTIONS(1337), - [anon_sym_AMP_EQ] = ACTIONS(1337), - [anon_sym_PIPE_EQ] = ACTIONS(1337), - [anon_sym_LT_LT_EQ] = ACTIONS(1337), - [anon_sym_GT_GT_EQ] = ACTIONS(1337), - [anon_sym_EQ] = ACTIONS(1339), - [anon_sym_EQ_EQ] = ACTIONS(1337), - [anon_sym_BANG_EQ] = ACTIONS(1337), - [anon_sym_GT] = ACTIONS(1339), - [anon_sym_LT] = ACTIONS(1339), - [anon_sym_GT_EQ] = ACTIONS(1337), - [anon_sym_LT_EQ] = ACTIONS(1337), - [anon_sym__] = ACTIONS(1339), - [anon_sym_DOT] = ACTIONS(1339), - [anon_sym_DOT_DOT] = ACTIONS(1339), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1337), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1337), - [anon_sym_COMMA] = ACTIONS(1337), - [anon_sym_COLON_COLON] = ACTIONS(1337), - [anon_sym_POUND] = ACTIONS(1337), - [anon_sym_as] = ACTIONS(1339), - [anon_sym_const] = ACTIONS(1339), - [anon_sym_default] = ACTIONS(1339), - [anon_sym_union] = ACTIONS(1339), - [anon_sym_ref] = ACTIONS(1339), - [sym_mutable_specifier] = ACTIONS(1339), - [sym_integer_literal] = ACTIONS(1337), - [aux_sym_string_literal_token1] = ACTIONS(1337), - [sym_char_literal] = ACTIONS(1337), - [anon_sym_true] = ACTIONS(1339), - [anon_sym_false] = ACTIONS(1339), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1339), - [sym_super] = ACTIONS(1339), - [sym_crate] = ACTIONS(1339), - [sym_metavariable] = ACTIONS(1337), - [sym__raw_string_literal_start] = ACTIONS(1337), - [sym_float_literal] = ACTIONS(1337), + [aux_sym_match_block_repeat1] = STATE(597), + [aux_sym_match_arm_repeat1] = STATE(766), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(1641), + [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1657), + [anon_sym_POUND] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1663), + [anon_sym_union] = ACTIONS(1663), + [anon_sym_ref] = ACTIONS(1665), + [sym_mutable_specifier] = ACTIONS(1667), + [sym_integer_literal] = ACTIONS(1669), + [aux_sym_string_literal_token1] = ACTIONS(1671), + [sym_char_literal] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1675), + [sym_super] = ACTIONS(1675), + [sym_crate] = ACTIONS(1675), + [sym_metavariable] = ACTIONS(1677), + [sym__raw_string_literal_start] = ACTIONS(1679), + [sym_float_literal] = ACTIONS(1669), }, [459] = { [sym_line_comment] = STATE(459), [sym_block_comment] = STATE(459), - [sym_identifier] = ACTIONS(1271), - [anon_sym_LPAREN] = ACTIONS(1269), - [anon_sym_LBRACK] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1271), - [anon_sym_STAR] = ACTIONS(1271), - [anon_sym_QMARK] = ACTIONS(1269), - [anon_sym_u8] = ACTIONS(1271), - [anon_sym_i8] = ACTIONS(1271), - [anon_sym_u16] = ACTIONS(1271), - [anon_sym_i16] = ACTIONS(1271), - [anon_sym_u32] = ACTIONS(1271), - [anon_sym_i32] = ACTIONS(1271), - [anon_sym_u64] = ACTIONS(1271), - [anon_sym_i64] = ACTIONS(1271), - [anon_sym_u128] = ACTIONS(1271), - [anon_sym_i128] = ACTIONS(1271), - [anon_sym_isize] = ACTIONS(1271), - [anon_sym_usize] = ACTIONS(1271), - [anon_sym_f32] = ACTIONS(1271), - [anon_sym_f64] = ACTIONS(1271), - [anon_sym_bool] = ACTIONS(1271), - [anon_sym_str] = ACTIONS(1271), - [anon_sym_char] = ACTIONS(1271), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_SLASH] = ACTIONS(1271), - [anon_sym_PERCENT] = ACTIONS(1271), - [anon_sym_CARET] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(1271), - [anon_sym_PIPE] = ACTIONS(1271), - [anon_sym_AMP_AMP] = ACTIONS(1269), - [anon_sym_PIPE_PIPE] = ACTIONS(1269), - [anon_sym_LT_LT] = ACTIONS(1271), - [anon_sym_GT_GT] = ACTIONS(1271), - [anon_sym_PLUS_EQ] = ACTIONS(1269), - [anon_sym_DASH_EQ] = ACTIONS(1269), - [anon_sym_STAR_EQ] = ACTIONS(1269), - [anon_sym_SLASH_EQ] = ACTIONS(1269), - [anon_sym_PERCENT_EQ] = ACTIONS(1269), - [anon_sym_CARET_EQ] = ACTIONS(1269), - [anon_sym_AMP_EQ] = ACTIONS(1269), - [anon_sym_PIPE_EQ] = ACTIONS(1269), - [anon_sym_LT_LT_EQ] = ACTIONS(1269), - [anon_sym_GT_GT_EQ] = ACTIONS(1269), - [anon_sym_EQ] = ACTIONS(1271), - [anon_sym_EQ_EQ] = ACTIONS(1269), - [anon_sym_BANG_EQ] = ACTIONS(1269), - [anon_sym_GT] = ACTIONS(1271), - [anon_sym_LT] = ACTIONS(1271), - [anon_sym_GT_EQ] = ACTIONS(1269), - [anon_sym_LT_EQ] = ACTIONS(1269), - [anon_sym__] = ACTIONS(1271), - [anon_sym_DOT] = ACTIONS(1271), - [anon_sym_DOT_DOT] = ACTIONS(1271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1269), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1269), - [anon_sym_COMMA] = ACTIONS(1269), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_POUND] = ACTIONS(1269), - [anon_sym_as] = ACTIONS(1271), - [anon_sym_const] = ACTIONS(1271), - [anon_sym_default] = ACTIONS(1271), - [anon_sym_union] = ACTIONS(1271), - [anon_sym_ref] = ACTIONS(1271), - [sym_mutable_specifier] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1269), - [aux_sym_string_literal_token1] = ACTIONS(1269), - [sym_char_literal] = ACTIONS(1269), - [anon_sym_true] = ACTIONS(1271), - [anon_sym_false] = ACTIONS(1271), + [sym_identifier] = ACTIONS(1311), + [anon_sym_LPAREN] = ACTIONS(1309), + [anon_sym_LBRACK] = ACTIONS(1309), + [anon_sym_RBRACE] = ACTIONS(1309), + [anon_sym_PLUS] = ACTIONS(1311), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_QMARK] = ACTIONS(1309), + [anon_sym_u8] = ACTIONS(1311), + [anon_sym_i8] = ACTIONS(1311), + [anon_sym_u16] = ACTIONS(1311), + [anon_sym_i16] = ACTIONS(1311), + [anon_sym_u32] = ACTIONS(1311), + [anon_sym_i32] = ACTIONS(1311), + [anon_sym_u64] = ACTIONS(1311), + [anon_sym_i64] = ACTIONS(1311), + [anon_sym_u128] = ACTIONS(1311), + [anon_sym_i128] = ACTIONS(1311), + [anon_sym_isize] = ACTIONS(1311), + [anon_sym_usize] = ACTIONS(1311), + [anon_sym_f32] = ACTIONS(1311), + [anon_sym_f64] = ACTIONS(1311), + [anon_sym_bool] = ACTIONS(1311), + [anon_sym_str] = ACTIONS(1311), + [anon_sym_char] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), + [anon_sym_SLASH] = ACTIONS(1311), + [anon_sym_PERCENT] = ACTIONS(1311), + [anon_sym_CARET] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1311), + [anon_sym_AMP_AMP] = ACTIONS(1309), + [anon_sym_PIPE_PIPE] = ACTIONS(1309), + [anon_sym_LT_LT] = ACTIONS(1311), + [anon_sym_GT_GT] = ACTIONS(1311), + [anon_sym_PLUS_EQ] = ACTIONS(1309), + [anon_sym_DASH_EQ] = ACTIONS(1309), + [anon_sym_STAR_EQ] = ACTIONS(1309), + [anon_sym_SLASH_EQ] = ACTIONS(1309), + [anon_sym_PERCENT_EQ] = ACTIONS(1309), + [anon_sym_CARET_EQ] = ACTIONS(1309), + [anon_sym_AMP_EQ] = ACTIONS(1309), + [anon_sym_PIPE_EQ] = ACTIONS(1309), + [anon_sym_LT_LT_EQ] = ACTIONS(1309), + [anon_sym_GT_GT_EQ] = ACTIONS(1309), + [anon_sym_EQ] = ACTIONS(1311), + [anon_sym_EQ_EQ] = ACTIONS(1309), + [anon_sym_BANG_EQ] = ACTIONS(1309), + [anon_sym_GT] = ACTIONS(1311), + [anon_sym_LT] = ACTIONS(1311), + [anon_sym_GT_EQ] = ACTIONS(1309), + [anon_sym_LT_EQ] = ACTIONS(1309), + [anon_sym__] = ACTIONS(1311), + [anon_sym_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1309), + [anon_sym_COMMA] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(1309), + [anon_sym_POUND] = ACTIONS(1309), + [anon_sym_as] = ACTIONS(1311), + [anon_sym_const] = ACTIONS(1311), + [anon_sym_default] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1311), + [sym_mutable_specifier] = ACTIONS(1311), + [sym_integer_literal] = ACTIONS(1309), + [aux_sym_string_literal_token1] = ACTIONS(1309), + [sym_char_literal] = ACTIONS(1309), + [anon_sym_true] = ACTIONS(1311), + [anon_sym_false] = ACTIONS(1311), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1271), - [sym_super] = ACTIONS(1271), - [sym_crate] = ACTIONS(1271), - [sym_metavariable] = ACTIONS(1269), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1269), + [sym_self] = ACTIONS(1311), + [sym_super] = ACTIONS(1311), + [sym_crate] = ACTIONS(1311), + [sym_metavariable] = ACTIONS(1309), + [sym__raw_string_literal_start] = ACTIONS(1309), + [sym_float_literal] = ACTIONS(1309), }, [460] = { [sym_line_comment] = STATE(460), [sym_block_comment] = STATE(460), - [sym_identifier] = ACTIONS(1323), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_LBRACK] = ACTIONS(1321), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_PLUS] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(1323), - [anon_sym_QMARK] = ACTIONS(1321), - [anon_sym_u8] = ACTIONS(1323), - [anon_sym_i8] = ACTIONS(1323), - [anon_sym_u16] = ACTIONS(1323), - [anon_sym_i16] = ACTIONS(1323), - [anon_sym_u32] = ACTIONS(1323), - [anon_sym_i32] = ACTIONS(1323), - [anon_sym_u64] = ACTIONS(1323), - [anon_sym_i64] = ACTIONS(1323), - [anon_sym_u128] = ACTIONS(1323), - [anon_sym_i128] = ACTIONS(1323), - [anon_sym_isize] = ACTIONS(1323), - [anon_sym_usize] = ACTIONS(1323), - [anon_sym_f32] = ACTIONS(1323), - [anon_sym_f64] = ACTIONS(1323), - [anon_sym_bool] = ACTIONS(1323), - [anon_sym_str] = ACTIONS(1323), - [anon_sym_char] = ACTIONS(1323), - [anon_sym_DASH] = ACTIONS(1323), - [anon_sym_SLASH] = ACTIONS(1323), - [anon_sym_PERCENT] = ACTIONS(1323), - [anon_sym_CARET] = ACTIONS(1323), - [anon_sym_AMP] = ACTIONS(1323), - [anon_sym_PIPE] = ACTIONS(1323), - [anon_sym_AMP_AMP] = ACTIONS(1321), - [anon_sym_PIPE_PIPE] = ACTIONS(1321), - [anon_sym_LT_LT] = ACTIONS(1323), - [anon_sym_GT_GT] = ACTIONS(1323), - [anon_sym_PLUS_EQ] = ACTIONS(1321), - [anon_sym_DASH_EQ] = ACTIONS(1321), - [anon_sym_STAR_EQ] = ACTIONS(1321), - [anon_sym_SLASH_EQ] = ACTIONS(1321), - [anon_sym_PERCENT_EQ] = ACTIONS(1321), - [anon_sym_CARET_EQ] = ACTIONS(1321), - [anon_sym_AMP_EQ] = ACTIONS(1321), - [anon_sym_PIPE_EQ] = ACTIONS(1321), - [anon_sym_LT_LT_EQ] = ACTIONS(1321), - [anon_sym_GT_GT_EQ] = ACTIONS(1321), - [anon_sym_EQ] = ACTIONS(1323), - [anon_sym_EQ_EQ] = ACTIONS(1321), - [anon_sym_BANG_EQ] = ACTIONS(1321), - [anon_sym_GT] = ACTIONS(1323), - [anon_sym_LT] = ACTIONS(1323), - [anon_sym_GT_EQ] = ACTIONS(1321), - [anon_sym_LT_EQ] = ACTIONS(1321), - [anon_sym__] = ACTIONS(1323), - [anon_sym_DOT] = ACTIONS(1323), - [anon_sym_DOT_DOT] = ACTIONS(1323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1321), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1321), - [anon_sym_COMMA] = ACTIONS(1321), - [anon_sym_COLON_COLON] = ACTIONS(1321), - [anon_sym_POUND] = ACTIONS(1321), - [anon_sym_as] = ACTIONS(1323), - [anon_sym_const] = ACTIONS(1323), - [anon_sym_default] = ACTIONS(1323), - [anon_sym_union] = ACTIONS(1323), - [anon_sym_ref] = ACTIONS(1323), - [sym_mutable_specifier] = ACTIONS(1323), - [sym_integer_literal] = ACTIONS(1321), - [aux_sym_string_literal_token1] = ACTIONS(1321), - [sym_char_literal] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1323), - [anon_sym_false] = ACTIONS(1323), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1323), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1321), - [sym__raw_string_literal_start] = ACTIONS(1321), - [sym_float_literal] = ACTIONS(1321), - }, - [461] = { - [sym_line_comment] = STATE(461), - [sym_block_comment] = STATE(461), - [sym_identifier] = ACTIONS(1331), - [anon_sym_LPAREN] = ACTIONS(1329), - [anon_sym_LBRACK] = ACTIONS(1329), - [anon_sym_RBRACE] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_QMARK] = ACTIONS(1329), - [anon_sym_u8] = ACTIONS(1331), - [anon_sym_i8] = ACTIONS(1331), - [anon_sym_u16] = ACTIONS(1331), - [anon_sym_i16] = ACTIONS(1331), - [anon_sym_u32] = ACTIONS(1331), - [anon_sym_i32] = ACTIONS(1331), - [anon_sym_u64] = ACTIONS(1331), - [anon_sym_i64] = ACTIONS(1331), - [anon_sym_u128] = ACTIONS(1331), - [anon_sym_i128] = ACTIONS(1331), - [anon_sym_isize] = ACTIONS(1331), - [anon_sym_usize] = ACTIONS(1331), - [anon_sym_f32] = ACTIONS(1331), - [anon_sym_f64] = ACTIONS(1331), - [anon_sym_bool] = ACTIONS(1331), - [anon_sym_str] = ACTIONS(1331), - [anon_sym_char] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_SLASH] = ACTIONS(1331), - [anon_sym_PERCENT] = ACTIONS(1331), - [anon_sym_CARET] = ACTIONS(1331), - [anon_sym_AMP] = ACTIONS(1331), - [anon_sym_PIPE] = ACTIONS(1331), - [anon_sym_AMP_AMP] = ACTIONS(1329), - [anon_sym_PIPE_PIPE] = ACTIONS(1329), - [anon_sym_LT_LT] = ACTIONS(1331), - [anon_sym_GT_GT] = ACTIONS(1331), - [anon_sym_PLUS_EQ] = ACTIONS(1329), - [anon_sym_DASH_EQ] = ACTIONS(1329), - [anon_sym_STAR_EQ] = ACTIONS(1329), - [anon_sym_SLASH_EQ] = ACTIONS(1329), - [anon_sym_PERCENT_EQ] = ACTIONS(1329), - [anon_sym_CARET_EQ] = ACTIONS(1329), - [anon_sym_AMP_EQ] = ACTIONS(1329), - [anon_sym_PIPE_EQ] = ACTIONS(1329), - [anon_sym_LT_LT_EQ] = ACTIONS(1329), - [anon_sym_GT_GT_EQ] = ACTIONS(1329), - [anon_sym_EQ] = ACTIONS(1331), - [anon_sym_EQ_EQ] = ACTIONS(1329), - [anon_sym_BANG_EQ] = ACTIONS(1329), - [anon_sym_GT] = ACTIONS(1331), - [anon_sym_LT] = ACTIONS(1331), - [anon_sym_GT_EQ] = ACTIONS(1329), - [anon_sym_LT_EQ] = ACTIONS(1329), - [anon_sym__] = ACTIONS(1331), - [anon_sym_DOT] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(1331), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1329), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1329), - [anon_sym_COMMA] = ACTIONS(1329), - [anon_sym_COLON_COLON] = ACTIONS(1329), - [anon_sym_POUND] = ACTIONS(1329), - [anon_sym_as] = ACTIONS(1331), - [anon_sym_const] = ACTIONS(1331), - [anon_sym_default] = ACTIONS(1331), - [anon_sym_union] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1331), - [sym_mutable_specifier] = ACTIONS(1331), - [sym_integer_literal] = ACTIONS(1329), - [aux_sym_string_literal_token1] = ACTIONS(1329), - [sym_char_literal] = ACTIONS(1329), - [anon_sym_true] = ACTIONS(1331), - [anon_sym_false] = ACTIONS(1331), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1331), - [sym_super] = ACTIONS(1331), - [sym_crate] = ACTIONS(1331), - [sym_metavariable] = ACTIONS(1329), - [sym__raw_string_literal_start] = ACTIONS(1329), - [sym_float_literal] = ACTIONS(1329), - }, - [462] = { - [sym_attribute_item] = STATE(1486), - [sym_inner_attribute_item] = STATE(1486), - [sym_bracketed_type] = STATE(3540), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3274), - [sym_macro_invocation] = STATE(3031), - [sym_scoped_identifier] = STATE(2153), - [sym_scoped_type_identifier] = STATE(2935), - [sym_match_arm] = STATE(1487), - [sym_last_match_arm] = STATE(3416), - [sym_match_pattern] = STATE(3402), - [sym_const_block] = STATE(3031), - [sym__pattern] = STATE(3016), - [sym_tuple_pattern] = STATE(3031), - [sym_slice_pattern] = STATE(3031), - [sym_tuple_struct_pattern] = STATE(3031), - [sym_struct_pattern] = STATE(3031), - [sym_remaining_field_pattern] = STATE(3031), - [sym_mut_pattern] = STATE(3031), - [sym_range_pattern] = STATE(3031), - [sym_ref_pattern] = STATE(3031), - [sym_captured_pattern] = STATE(3031), - [sym_reference_pattern] = STATE(3031), - [sym_or_pattern] = STATE(3031), - [sym__literal_pattern] = STATE(2307), - [sym_negative_literal] = STATE(2311), - [sym_string_literal] = STATE(2311), - [sym_raw_string_literal] = STATE(2311), - [sym_boolean_literal] = STATE(2311), - [sym_line_comment] = STATE(462), - [sym_block_comment] = STATE(462), - [aux_sym_match_block_repeat1] = STATE(746), - [aux_sym_match_arm_repeat1] = STATE(761), - [sym_identifier] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1637), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_COLON_COLON] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_ref] = ACTIONS(1661), - [sym_mutable_specifier] = ACTIONS(1663), - [sym_integer_literal] = ACTIONS(1665), - [aux_sym_string_literal_token1] = ACTIONS(1667), - [sym_char_literal] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1671), - [sym_super] = ACTIONS(1671), - [sym_crate] = ACTIONS(1671), - [sym_metavariable] = ACTIONS(1673), - [sym__raw_string_literal_start] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(1665), - }, - [463] = { - [sym_line_comment] = STATE(463), - [sym_block_comment] = STATE(463), [sym_identifier] = ACTIONS(1307), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_LBRACK] = ACTIONS(1305), @@ -68068,501 +67984,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1305), [sym_float_literal] = ACTIONS(1305), }, - [464] = { - [sym_line_comment] = STATE(464), - [sym_block_comment] = STATE(464), - [sym_identifier] = ACTIONS(1335), - [anon_sym_LPAREN] = ACTIONS(1333), - [anon_sym_LBRACK] = ACTIONS(1333), - [anon_sym_RBRACE] = ACTIONS(1333), - [anon_sym_PLUS] = ACTIONS(1335), - [anon_sym_STAR] = ACTIONS(1335), - [anon_sym_QMARK] = ACTIONS(1333), - [anon_sym_u8] = ACTIONS(1335), - [anon_sym_i8] = ACTIONS(1335), - [anon_sym_u16] = ACTIONS(1335), - [anon_sym_i16] = ACTIONS(1335), - [anon_sym_u32] = ACTIONS(1335), - [anon_sym_i32] = ACTIONS(1335), - [anon_sym_u64] = ACTIONS(1335), - [anon_sym_i64] = ACTIONS(1335), - [anon_sym_u128] = ACTIONS(1335), - [anon_sym_i128] = ACTIONS(1335), - [anon_sym_isize] = ACTIONS(1335), - [anon_sym_usize] = ACTIONS(1335), - [anon_sym_f32] = ACTIONS(1335), - [anon_sym_f64] = ACTIONS(1335), - [anon_sym_bool] = ACTIONS(1335), - [anon_sym_str] = ACTIONS(1335), - [anon_sym_char] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1335), - [anon_sym_SLASH] = ACTIONS(1335), - [anon_sym_PERCENT] = ACTIONS(1335), - [anon_sym_CARET] = ACTIONS(1335), - [anon_sym_AMP] = ACTIONS(1335), - [anon_sym_PIPE] = ACTIONS(1335), - [anon_sym_AMP_AMP] = ACTIONS(1333), - [anon_sym_PIPE_PIPE] = ACTIONS(1333), - [anon_sym_LT_LT] = ACTIONS(1335), - [anon_sym_GT_GT] = ACTIONS(1335), - [anon_sym_PLUS_EQ] = ACTIONS(1333), - [anon_sym_DASH_EQ] = ACTIONS(1333), - [anon_sym_STAR_EQ] = ACTIONS(1333), - [anon_sym_SLASH_EQ] = ACTIONS(1333), - [anon_sym_PERCENT_EQ] = ACTIONS(1333), - [anon_sym_CARET_EQ] = ACTIONS(1333), - [anon_sym_AMP_EQ] = ACTIONS(1333), - [anon_sym_PIPE_EQ] = ACTIONS(1333), - [anon_sym_LT_LT_EQ] = ACTIONS(1333), - [anon_sym_GT_GT_EQ] = ACTIONS(1333), - [anon_sym_EQ] = ACTIONS(1335), - [anon_sym_EQ_EQ] = ACTIONS(1333), - [anon_sym_BANG_EQ] = ACTIONS(1333), - [anon_sym_GT] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1335), - [anon_sym_GT_EQ] = ACTIONS(1333), - [anon_sym_LT_EQ] = ACTIONS(1333), - [anon_sym__] = ACTIONS(1335), - [anon_sym_DOT] = ACTIONS(1335), - [anon_sym_DOT_DOT] = ACTIONS(1335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1333), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1333), - [anon_sym_COMMA] = ACTIONS(1333), - [anon_sym_COLON_COLON] = ACTIONS(1333), - [anon_sym_POUND] = ACTIONS(1333), - [anon_sym_as] = ACTIONS(1335), - [anon_sym_const] = ACTIONS(1335), - [anon_sym_default] = ACTIONS(1335), - [anon_sym_union] = ACTIONS(1335), - [anon_sym_ref] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1335), - [sym_integer_literal] = ACTIONS(1333), - [aux_sym_string_literal_token1] = ACTIONS(1333), - [sym_char_literal] = ACTIONS(1333), - [anon_sym_true] = ACTIONS(1335), - [anon_sym_false] = ACTIONS(1335), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1335), - [sym_super] = ACTIONS(1335), - [sym_crate] = ACTIONS(1335), - [sym_metavariable] = ACTIONS(1333), - [sym__raw_string_literal_start] = ACTIONS(1333), - [sym_float_literal] = ACTIONS(1333), - }, - [465] = { - [sym_line_comment] = STATE(465), - [sym_block_comment] = STATE(465), - [sym_identifier] = ACTIONS(1677), - [anon_sym_LPAREN] = ACTIONS(1679), - [anon_sym_LBRACK] = ACTIONS(1679), - [anon_sym_RBRACE] = ACTIONS(1291), - [anon_sym_PLUS] = ACTIONS(1289), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [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_DASH] = ACTIONS(1677), - [anon_sym_SLASH] = ACTIONS(1289), - [anon_sym_PERCENT] = ACTIONS(1289), - [anon_sym_CARET] = ACTIONS(1289), - [anon_sym_AMP] = ACTIONS(1677), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_AMP_AMP] = ACTIONS(1291), - [anon_sym_PIPE_PIPE] = ACTIONS(1291), - [anon_sym_LT_LT] = ACTIONS(1289), - [anon_sym_GT_GT] = ACTIONS(1289), - [anon_sym_PLUS_EQ] = ACTIONS(1291), - [anon_sym_DASH_EQ] = ACTIONS(1291), - [anon_sym_STAR_EQ] = ACTIONS(1291), - [anon_sym_SLASH_EQ] = ACTIONS(1291), - [anon_sym_PERCENT_EQ] = ACTIONS(1291), - [anon_sym_CARET_EQ] = ACTIONS(1291), - [anon_sym_AMP_EQ] = ACTIONS(1291), - [anon_sym_PIPE_EQ] = ACTIONS(1291), - [anon_sym_LT_LT_EQ] = ACTIONS(1291), - [anon_sym_GT_GT_EQ] = ACTIONS(1291), - [anon_sym_EQ] = ACTIONS(1289), - [anon_sym_EQ_EQ] = ACTIONS(1291), - [anon_sym_BANG_EQ] = ACTIONS(1291), - [anon_sym_GT] = ACTIONS(1289), - [anon_sym_LT] = ACTIONS(1677), - [anon_sym_GT_EQ] = ACTIONS(1291), - [anon_sym_LT_EQ] = ACTIONS(1291), - [anon_sym__] = ACTIONS(1677), - [anon_sym_DOT] = ACTIONS(1289), - [anon_sym_DOT_DOT] = ACTIONS(1677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1291), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1291), - [anon_sym_COMMA] = ACTIONS(1291), - [anon_sym_COLON_COLON] = ACTIONS(1679), - [anon_sym_POUND] = ACTIONS(1679), - [anon_sym_as] = ACTIONS(1289), - [anon_sym_const] = ACTIONS(1677), - [anon_sym_default] = ACTIONS(1677), - [anon_sym_union] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1677), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1677), - [anon_sym_false] = ACTIONS(1677), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1677), - [sym_super] = ACTIONS(1677), - [sym_crate] = ACTIONS(1677), - [sym_metavariable] = ACTIONS(1679), - [sym__raw_string_literal_start] = ACTIONS(1679), - [sym_float_literal] = ACTIONS(1679), - }, - [466] = { - [sym_attribute_item] = STATE(1486), - [sym_inner_attribute_item] = STATE(1486), - [sym_bracketed_type] = STATE(3540), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3274), - [sym_macro_invocation] = STATE(3031), - [sym_scoped_identifier] = STATE(2153), - [sym_scoped_type_identifier] = STATE(2935), - [sym_match_arm] = STATE(1487), - [sym_last_match_arm] = STATE(3487), - [sym_match_pattern] = STATE(3402), - [sym_const_block] = STATE(3031), - [sym__pattern] = STATE(3016), - [sym_tuple_pattern] = STATE(3031), - [sym_slice_pattern] = STATE(3031), - [sym_tuple_struct_pattern] = STATE(3031), - [sym_struct_pattern] = STATE(3031), - [sym_remaining_field_pattern] = STATE(3031), - [sym_mut_pattern] = STATE(3031), - [sym_range_pattern] = STATE(3031), - [sym_ref_pattern] = STATE(3031), - [sym_captured_pattern] = STATE(3031), - [sym_reference_pattern] = STATE(3031), - [sym_or_pattern] = STATE(3031), - [sym__literal_pattern] = STATE(2307), - [sym_negative_literal] = STATE(2311), - [sym_string_literal] = STATE(2311), - [sym_raw_string_literal] = STATE(2311), - [sym_boolean_literal] = STATE(2311), - [sym_line_comment] = STATE(466), - [sym_block_comment] = STATE(466), - [aux_sym_match_block_repeat1] = STATE(738), - [aux_sym_match_arm_repeat1] = STATE(761), - [sym_identifier] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1637), - [anon_sym_RBRACE] = ACTIONS(1681), - [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_DASH] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_COLON_COLON] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_ref] = ACTIONS(1661), - [sym_mutable_specifier] = ACTIONS(1663), - [sym_integer_literal] = ACTIONS(1665), - [aux_sym_string_literal_token1] = ACTIONS(1667), - [sym_char_literal] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1671), - [sym_super] = ACTIONS(1671), - [sym_crate] = ACTIONS(1671), - [sym_metavariable] = ACTIONS(1673), - [sym__raw_string_literal_start] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(1665), - }, - [467] = { - [sym_line_comment] = STATE(467), - [sym_block_comment] = STATE(467), - [sym_identifier] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1309), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_QMARK] = ACTIONS(1309), - [anon_sym_u8] = ACTIONS(1311), - [anon_sym_i8] = ACTIONS(1311), - [anon_sym_u16] = ACTIONS(1311), - [anon_sym_i16] = ACTIONS(1311), - [anon_sym_u32] = ACTIONS(1311), - [anon_sym_i32] = ACTIONS(1311), - [anon_sym_u64] = ACTIONS(1311), - [anon_sym_i64] = ACTIONS(1311), - [anon_sym_u128] = ACTIONS(1311), - [anon_sym_i128] = ACTIONS(1311), - [anon_sym_isize] = ACTIONS(1311), - [anon_sym_usize] = ACTIONS(1311), - [anon_sym_f32] = ACTIONS(1311), - [anon_sym_f64] = ACTIONS(1311), - [anon_sym_bool] = ACTIONS(1311), - [anon_sym_str] = ACTIONS(1311), - [anon_sym_char] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_SLASH] = ACTIONS(1311), - [anon_sym_PERCENT] = ACTIONS(1311), - [anon_sym_CARET] = ACTIONS(1311), - [anon_sym_AMP] = ACTIONS(1311), - [anon_sym_PIPE] = ACTIONS(1311), - [anon_sym_AMP_AMP] = ACTIONS(1309), - [anon_sym_PIPE_PIPE] = ACTIONS(1309), - [anon_sym_LT_LT] = ACTIONS(1311), - [anon_sym_GT_GT] = ACTIONS(1311), - [anon_sym_PLUS_EQ] = ACTIONS(1309), - [anon_sym_DASH_EQ] = ACTIONS(1309), - [anon_sym_STAR_EQ] = ACTIONS(1309), - [anon_sym_SLASH_EQ] = ACTIONS(1309), - [anon_sym_PERCENT_EQ] = ACTIONS(1309), - [anon_sym_CARET_EQ] = ACTIONS(1309), - [anon_sym_AMP_EQ] = ACTIONS(1309), - [anon_sym_PIPE_EQ] = ACTIONS(1309), - [anon_sym_LT_LT_EQ] = ACTIONS(1309), - [anon_sym_GT_GT_EQ] = ACTIONS(1309), - [anon_sym_EQ] = ACTIONS(1311), - [anon_sym_EQ_EQ] = ACTIONS(1309), - [anon_sym_BANG_EQ] = ACTIONS(1309), - [anon_sym_GT] = ACTIONS(1311), - [anon_sym_LT] = ACTIONS(1311), - [anon_sym_GT_EQ] = ACTIONS(1309), - [anon_sym_LT_EQ] = ACTIONS(1309), - [anon_sym__] = ACTIONS(1311), - [anon_sym_DOT] = ACTIONS(1311), - [anon_sym_DOT_DOT] = ACTIONS(1311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1309), - [anon_sym_COMMA] = ACTIONS(1309), - [anon_sym_COLON_COLON] = ACTIONS(1309), - [anon_sym_POUND] = ACTIONS(1309), - [anon_sym_as] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [anon_sym_default] = ACTIONS(1311), - [anon_sym_union] = ACTIONS(1311), - [anon_sym_ref] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1311), - [sym_integer_literal] = ACTIONS(1309), - [aux_sym_string_literal_token1] = ACTIONS(1309), - [sym_char_literal] = ACTIONS(1309), - [anon_sym_true] = ACTIONS(1311), - [anon_sym_false] = ACTIONS(1311), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1311), - [sym_super] = ACTIONS(1311), - [sym_crate] = ACTIONS(1311), - [sym_metavariable] = ACTIONS(1309), - [sym__raw_string_literal_start] = ACTIONS(1309), - [sym_float_literal] = ACTIONS(1309), - }, - [468] = { - [sym_line_comment] = STATE(468), - [sym_block_comment] = STATE(468), - [sym_identifier] = ACTIONS(1283), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1281), - [anon_sym_RBRACE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_QMARK] = ACTIONS(1281), - [anon_sym_u8] = ACTIONS(1283), - [anon_sym_i8] = ACTIONS(1283), - [anon_sym_u16] = ACTIONS(1283), - [anon_sym_i16] = ACTIONS(1283), - [anon_sym_u32] = ACTIONS(1283), - [anon_sym_i32] = ACTIONS(1283), - [anon_sym_u64] = ACTIONS(1283), - [anon_sym_i64] = ACTIONS(1283), - [anon_sym_u128] = ACTIONS(1283), - [anon_sym_i128] = ACTIONS(1283), - [anon_sym_isize] = ACTIONS(1283), - [anon_sym_usize] = ACTIONS(1283), - [anon_sym_f32] = ACTIONS(1283), - [anon_sym_f64] = ACTIONS(1283), - [anon_sym_bool] = ACTIONS(1283), - [anon_sym_str] = ACTIONS(1283), - [anon_sym_char] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1283), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_PIPE] = ACTIONS(1283), - [anon_sym_AMP_AMP] = ACTIONS(1281), - [anon_sym_PIPE_PIPE] = ACTIONS(1281), - [anon_sym_LT_LT] = ACTIONS(1283), - [anon_sym_GT_GT] = ACTIONS(1283), - [anon_sym_PLUS_EQ] = ACTIONS(1281), - [anon_sym_DASH_EQ] = ACTIONS(1281), - [anon_sym_STAR_EQ] = ACTIONS(1281), - [anon_sym_SLASH_EQ] = ACTIONS(1281), - [anon_sym_PERCENT_EQ] = ACTIONS(1281), - [anon_sym_CARET_EQ] = ACTIONS(1281), - [anon_sym_AMP_EQ] = ACTIONS(1281), - [anon_sym_PIPE_EQ] = ACTIONS(1281), - [anon_sym_LT_LT_EQ] = ACTIONS(1281), - [anon_sym_GT_GT_EQ] = ACTIONS(1281), - [anon_sym_EQ] = ACTIONS(1283), - [anon_sym_EQ_EQ] = ACTIONS(1281), - [anon_sym_BANG_EQ] = ACTIONS(1281), - [anon_sym_GT] = ACTIONS(1283), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT_EQ] = ACTIONS(1281), - [anon_sym_LT_EQ] = ACTIONS(1281), - [anon_sym__] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_DOT_DOT] = ACTIONS(1283), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1281), - [anon_sym_COMMA] = ACTIONS(1281), - [anon_sym_COLON_COLON] = ACTIONS(1281), - [anon_sym_POUND] = ACTIONS(1281), - [anon_sym_as] = ACTIONS(1283), - [anon_sym_const] = ACTIONS(1283), - [anon_sym_default] = ACTIONS(1283), - [anon_sym_union] = ACTIONS(1283), - [anon_sym_ref] = ACTIONS(1283), - [sym_mutable_specifier] = ACTIONS(1283), - [sym_integer_literal] = ACTIONS(1281), - [aux_sym_string_literal_token1] = ACTIONS(1281), - [sym_char_literal] = ACTIONS(1281), - [anon_sym_true] = ACTIONS(1283), - [anon_sym_false] = ACTIONS(1283), + [461] = { + [sym_line_comment] = STATE(461), + [sym_block_comment] = STATE(461), + [sym_identifier] = ACTIONS(1287), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_u8] = ACTIONS(1287), + [anon_sym_i8] = ACTIONS(1287), + [anon_sym_u16] = ACTIONS(1287), + [anon_sym_i16] = ACTIONS(1287), + [anon_sym_u32] = ACTIONS(1287), + [anon_sym_i32] = ACTIONS(1287), + [anon_sym_u64] = ACTIONS(1287), + [anon_sym_i64] = ACTIONS(1287), + [anon_sym_u128] = ACTIONS(1287), + [anon_sym_i128] = ACTIONS(1287), + [anon_sym_isize] = ACTIONS(1287), + [anon_sym_usize] = ACTIONS(1287), + [anon_sym_f32] = ACTIONS(1287), + [anon_sym_f64] = ACTIONS(1287), + [anon_sym_bool] = ACTIONS(1287), + [anon_sym_str] = ACTIONS(1287), + [anon_sym_char] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_SLASH] = ACTIONS(1287), + [anon_sym_PERCENT] = ACTIONS(1287), + [anon_sym_CARET] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PIPE] = ACTIONS(1287), + [anon_sym_AMP_AMP] = ACTIONS(1285), + [anon_sym_PIPE_PIPE] = ACTIONS(1285), + [anon_sym_LT_LT] = ACTIONS(1287), + [anon_sym_GT_GT] = ACTIONS(1287), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_PERCENT_EQ] = ACTIONS(1285), + [anon_sym_CARET_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_EQ] = ACTIONS(1287), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_LT] = ACTIONS(1287), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym__] = ACTIONS(1287), + [anon_sym_DOT] = ACTIONS(1287), + [anon_sym_DOT_DOT] = ACTIONS(1287), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_COLON_COLON] = ACTIONS(1285), + [anon_sym_POUND] = ACTIONS(1285), + [anon_sym_as] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_default] = ACTIONS(1287), + [anon_sym_union] = ACTIONS(1287), + [anon_sym_ref] = ACTIONS(1287), + [sym_mutable_specifier] = ACTIONS(1287), + [sym_integer_literal] = ACTIONS(1285), + [aux_sym_string_literal_token1] = ACTIONS(1285), + [sym_char_literal] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1283), - [sym_super] = ACTIONS(1283), - [sym_crate] = ACTIONS(1283), - [sym_metavariable] = ACTIONS(1281), - [sym__raw_string_literal_start] = ACTIONS(1281), - [sym_float_literal] = ACTIONS(1281), - }, - [469] = { - [sym_attribute_item] = STATE(1486), - [sym_inner_attribute_item] = STATE(1486), - [sym_bracketed_type] = STATE(3540), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3274), - [sym_macro_invocation] = STATE(3031), - [sym_scoped_identifier] = STATE(2153), - [sym_scoped_type_identifier] = STATE(2935), - [sym_match_arm] = STATE(1487), - [sym_last_match_arm] = STATE(3383), - [sym_match_pattern] = STATE(3402), - [sym_const_block] = STATE(3031), - [sym__pattern] = STATE(3016), - [sym_tuple_pattern] = STATE(3031), - [sym_slice_pattern] = STATE(3031), - [sym_tuple_struct_pattern] = STATE(3031), - [sym_struct_pattern] = STATE(3031), - [sym_remaining_field_pattern] = STATE(3031), - [sym_mut_pattern] = STATE(3031), - [sym_range_pattern] = STATE(3031), - [sym_ref_pattern] = STATE(3031), - [sym_captured_pattern] = STATE(3031), - [sym_reference_pattern] = STATE(3031), - [sym_or_pattern] = STATE(3031), - [sym__literal_pattern] = STATE(2307), - [sym_negative_literal] = STATE(2311), - [sym_string_literal] = STATE(2311), - [sym_raw_string_literal] = STATE(2311), - [sym_boolean_literal] = STATE(2311), - [sym_line_comment] = STATE(469), - [sym_block_comment] = STATE(469), - [aux_sym_match_block_repeat1] = STATE(748), - [aux_sym_match_arm_repeat1] = STATE(761), - [sym_identifier] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1637), - [anon_sym_RBRACE] = ACTIONS(1683), - [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_DASH] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_COLON_COLON] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_ref] = ACTIONS(1661), - [sym_mutable_specifier] = ACTIONS(1663), - [sym_integer_literal] = ACTIONS(1665), - [aux_sym_string_literal_token1] = ACTIONS(1667), - [sym_char_literal] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1671), - [sym_super] = ACTIONS(1671), - [sym_crate] = ACTIONS(1671), - [sym_metavariable] = ACTIONS(1673), - [sym__raw_string_literal_start] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(1665), + [sym_self] = ACTIONS(1287), + [sym_super] = ACTIONS(1287), + [sym_crate] = ACTIONS(1287), + [sym_metavariable] = ACTIONS(1285), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1285), }, - [470] = { - [sym_line_comment] = STATE(470), - [sym_block_comment] = STATE(470), + [462] = { + [sym_line_comment] = STATE(462), + [sym_block_comment] = STATE(462), [sym_identifier] = ACTIONS(1275), [anon_sym_LPAREN] = ACTIONS(1273), [anon_sym_LBRACK] = ACTIONS(1273), @@ -68642,173 +68148,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1273), [sym_float_literal] = ACTIONS(1273), }, - [471] = { - [sym_attribute_item] = STATE(1486), - [sym_inner_attribute_item] = STATE(1486), - [sym_bracketed_type] = STATE(3540), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3274), - [sym_macro_invocation] = STATE(3031), - [sym_scoped_identifier] = STATE(2153), - [sym_scoped_type_identifier] = STATE(2935), - [sym_match_arm] = STATE(1487), - [sym_last_match_arm] = STATE(3578), - [sym_match_pattern] = STATE(3402), - [sym_const_block] = STATE(3031), - [sym__pattern] = STATE(3016), - [sym_tuple_pattern] = STATE(3031), - [sym_slice_pattern] = STATE(3031), - [sym_tuple_struct_pattern] = STATE(3031), - [sym_struct_pattern] = STATE(3031), - [sym_remaining_field_pattern] = STATE(3031), - [sym_mut_pattern] = STATE(3031), - [sym_range_pattern] = STATE(3031), - [sym_ref_pattern] = STATE(3031), - [sym_captured_pattern] = STATE(3031), - [sym_reference_pattern] = STATE(3031), - [sym_or_pattern] = STATE(3031), - [sym__literal_pattern] = STATE(2307), - [sym_negative_literal] = STATE(2311), - [sym_string_literal] = STATE(2311), - [sym_raw_string_literal] = STATE(2311), - [sym_boolean_literal] = STATE(2311), - [sym_line_comment] = STATE(471), - [sym_block_comment] = STATE(471), - [aux_sym_match_block_repeat1] = STATE(613), - [aux_sym_match_arm_repeat1] = STATE(761), - [sym_identifier] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1637), - [anon_sym_RBRACE] = ACTIONS(1685), - [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_DASH] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_COLON_COLON] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_ref] = ACTIONS(1661), - [sym_mutable_specifier] = ACTIONS(1663), - [sym_integer_literal] = ACTIONS(1665), - [aux_sym_string_literal_token1] = ACTIONS(1667), - [sym_char_literal] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1671), - [sym_super] = ACTIONS(1671), - [sym_crate] = ACTIONS(1671), - [sym_metavariable] = ACTIONS(1673), - [sym__raw_string_literal_start] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(1665), - }, - [472] = { - [sym_line_comment] = STATE(472), - [sym_block_comment] = STATE(472), - [sym_identifier] = ACTIONS(1299), - [anon_sym_LPAREN] = ACTIONS(1297), - [anon_sym_LBRACK] = ACTIONS(1297), - [anon_sym_RBRACE] = ACTIONS(1297), - [anon_sym_PLUS] = ACTIONS(1299), - [anon_sym_STAR] = ACTIONS(1299), - [anon_sym_QMARK] = ACTIONS(1297), - [anon_sym_u8] = ACTIONS(1299), - [anon_sym_i8] = ACTIONS(1299), - [anon_sym_u16] = ACTIONS(1299), - [anon_sym_i16] = ACTIONS(1299), - [anon_sym_u32] = ACTIONS(1299), - [anon_sym_i32] = ACTIONS(1299), - [anon_sym_u64] = ACTIONS(1299), - [anon_sym_i64] = ACTIONS(1299), - [anon_sym_u128] = ACTIONS(1299), - [anon_sym_i128] = ACTIONS(1299), - [anon_sym_isize] = ACTIONS(1299), - [anon_sym_usize] = ACTIONS(1299), - [anon_sym_f32] = ACTIONS(1299), - [anon_sym_f64] = ACTIONS(1299), - [anon_sym_bool] = ACTIONS(1299), - [anon_sym_str] = ACTIONS(1299), - [anon_sym_char] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1299), - [anon_sym_SLASH] = ACTIONS(1299), - [anon_sym_PERCENT] = ACTIONS(1299), - [anon_sym_CARET] = ACTIONS(1299), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1299), - [anon_sym_AMP_AMP] = ACTIONS(1297), - [anon_sym_PIPE_PIPE] = ACTIONS(1297), - [anon_sym_LT_LT] = ACTIONS(1299), - [anon_sym_GT_GT] = ACTIONS(1299), - [anon_sym_PLUS_EQ] = ACTIONS(1297), - [anon_sym_DASH_EQ] = ACTIONS(1297), - [anon_sym_STAR_EQ] = ACTIONS(1297), - [anon_sym_SLASH_EQ] = ACTIONS(1297), - [anon_sym_PERCENT_EQ] = ACTIONS(1297), - [anon_sym_CARET_EQ] = ACTIONS(1297), - [anon_sym_AMP_EQ] = ACTIONS(1297), - [anon_sym_PIPE_EQ] = ACTIONS(1297), - [anon_sym_LT_LT_EQ] = ACTIONS(1297), - [anon_sym_GT_GT_EQ] = ACTIONS(1297), - [anon_sym_EQ] = ACTIONS(1299), - [anon_sym_EQ_EQ] = ACTIONS(1297), - [anon_sym_BANG_EQ] = ACTIONS(1297), - [anon_sym_GT] = ACTIONS(1299), - [anon_sym_LT] = ACTIONS(1299), - [anon_sym_GT_EQ] = ACTIONS(1297), - [anon_sym_LT_EQ] = ACTIONS(1297), - [anon_sym__] = ACTIONS(1299), - [anon_sym_DOT] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1299), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1297), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1297), - [anon_sym_COMMA] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1297), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_as] = ACTIONS(1299), - [anon_sym_const] = ACTIONS(1299), - [anon_sym_default] = ACTIONS(1299), - [anon_sym_union] = ACTIONS(1299), - [anon_sym_ref] = ACTIONS(1299), - [sym_mutable_specifier] = ACTIONS(1299), - [sym_integer_literal] = ACTIONS(1297), - [aux_sym_string_literal_token1] = ACTIONS(1297), - [sym_char_literal] = ACTIONS(1297), - [anon_sym_true] = ACTIONS(1299), - [anon_sym_false] = ACTIONS(1299), + [463] = { + [sym_line_comment] = STATE(463), + [sym_block_comment] = STATE(463), + [sym_identifier] = ACTIONS(1279), + [anon_sym_LPAREN] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1277), + [anon_sym_RBRACE] = ACTIONS(1277), + [anon_sym_PLUS] = ACTIONS(1279), + [anon_sym_STAR] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1277), + [anon_sym_u8] = ACTIONS(1279), + [anon_sym_i8] = ACTIONS(1279), + [anon_sym_u16] = ACTIONS(1279), + [anon_sym_i16] = ACTIONS(1279), + [anon_sym_u32] = ACTIONS(1279), + [anon_sym_i32] = ACTIONS(1279), + [anon_sym_u64] = ACTIONS(1279), + [anon_sym_i64] = ACTIONS(1279), + [anon_sym_u128] = ACTIONS(1279), + [anon_sym_i128] = ACTIONS(1279), + [anon_sym_isize] = ACTIONS(1279), + [anon_sym_usize] = ACTIONS(1279), + [anon_sym_f32] = ACTIONS(1279), + [anon_sym_f64] = ACTIONS(1279), + [anon_sym_bool] = ACTIONS(1279), + [anon_sym_str] = ACTIONS(1279), + [anon_sym_char] = ACTIONS(1279), + [anon_sym_DASH] = ACTIONS(1279), + [anon_sym_SLASH] = ACTIONS(1279), + [anon_sym_PERCENT] = ACTIONS(1279), + [anon_sym_CARET] = ACTIONS(1279), + [anon_sym_AMP] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1277), + [anon_sym_PIPE_PIPE] = ACTIONS(1277), + [anon_sym_LT_LT] = ACTIONS(1279), + [anon_sym_GT_GT] = ACTIONS(1279), + [anon_sym_PLUS_EQ] = ACTIONS(1277), + [anon_sym_DASH_EQ] = ACTIONS(1277), + [anon_sym_STAR_EQ] = ACTIONS(1277), + [anon_sym_SLASH_EQ] = ACTIONS(1277), + [anon_sym_PERCENT_EQ] = ACTIONS(1277), + [anon_sym_CARET_EQ] = ACTIONS(1277), + [anon_sym_AMP_EQ] = ACTIONS(1277), + [anon_sym_PIPE_EQ] = ACTIONS(1277), + [anon_sym_LT_LT_EQ] = ACTIONS(1277), + [anon_sym_GT_GT_EQ] = ACTIONS(1277), + [anon_sym_EQ] = ACTIONS(1279), + [anon_sym_EQ_EQ] = ACTIONS(1277), + [anon_sym_BANG_EQ] = ACTIONS(1277), + [anon_sym_GT] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(1279), + [anon_sym_GT_EQ] = ACTIONS(1277), + [anon_sym_LT_EQ] = ACTIONS(1277), + [anon_sym__] = ACTIONS(1279), + [anon_sym_DOT] = ACTIONS(1279), + [anon_sym_DOT_DOT] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), + [anon_sym_COMMA] = ACTIONS(1277), + [anon_sym_COLON_COLON] = ACTIONS(1277), + [anon_sym_POUND] = ACTIONS(1277), + [anon_sym_as] = ACTIONS(1279), + [anon_sym_const] = ACTIONS(1279), + [anon_sym_default] = ACTIONS(1279), + [anon_sym_union] = ACTIONS(1279), + [anon_sym_ref] = ACTIONS(1279), + [sym_mutable_specifier] = ACTIONS(1279), + [sym_integer_literal] = ACTIONS(1277), + [aux_sym_string_literal_token1] = ACTIONS(1277), + [sym_char_literal] = ACTIONS(1277), + [anon_sym_true] = ACTIONS(1279), + [anon_sym_false] = ACTIONS(1279), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1299), - [sym_super] = ACTIONS(1299), - [sym_crate] = ACTIONS(1299), - [sym_metavariable] = ACTIONS(1297), - [sym__raw_string_literal_start] = ACTIONS(1297), - [sym_float_literal] = ACTIONS(1297), + [sym_self] = ACTIONS(1279), + [sym_super] = ACTIONS(1279), + [sym_crate] = ACTIONS(1279), + [sym_metavariable] = ACTIONS(1277), + [sym__raw_string_literal_start] = ACTIONS(1277), + [sym_float_literal] = ACTIONS(1277), }, - [473] = { - [sym_line_comment] = STATE(473), - [sym_block_comment] = STATE(473), + [464] = { + [sym_line_comment] = STATE(464), + [sym_block_comment] = STATE(464), + [sym_identifier] = ACTIONS(1291), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_LBRACK] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_QMARK] = ACTIONS(1289), + [anon_sym_u8] = ACTIONS(1291), + [anon_sym_i8] = ACTIONS(1291), + [anon_sym_u16] = ACTIONS(1291), + [anon_sym_i16] = ACTIONS(1291), + [anon_sym_u32] = ACTIONS(1291), + [anon_sym_i32] = ACTIONS(1291), + [anon_sym_u64] = ACTIONS(1291), + [anon_sym_i64] = ACTIONS(1291), + [anon_sym_u128] = ACTIONS(1291), + [anon_sym_i128] = ACTIONS(1291), + [anon_sym_isize] = ACTIONS(1291), + [anon_sym_usize] = ACTIONS(1291), + [anon_sym_f32] = ACTIONS(1291), + [anon_sym_f64] = ACTIONS(1291), + [anon_sym_bool] = ACTIONS(1291), + [anon_sym_str] = ACTIONS(1291), + [anon_sym_char] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(1291), + [anon_sym_PERCENT] = ACTIONS(1291), + [anon_sym_CARET] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_PIPE] = ACTIONS(1291), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_PIPE_PIPE] = ACTIONS(1289), + [anon_sym_LT_LT] = ACTIONS(1291), + [anon_sym_GT_GT] = ACTIONS(1291), + [anon_sym_PLUS_EQ] = ACTIONS(1289), + [anon_sym_DASH_EQ] = ACTIONS(1289), + [anon_sym_STAR_EQ] = ACTIONS(1289), + [anon_sym_SLASH_EQ] = ACTIONS(1289), + [anon_sym_PERCENT_EQ] = ACTIONS(1289), + [anon_sym_CARET_EQ] = ACTIONS(1289), + [anon_sym_AMP_EQ] = ACTIONS(1289), + [anon_sym_PIPE_EQ] = ACTIONS(1289), + [anon_sym_LT_LT_EQ] = ACTIONS(1289), + [anon_sym_GT_GT_EQ] = ACTIONS(1289), + [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_EQ_EQ] = ACTIONS(1289), + [anon_sym_BANG_EQ] = ACTIONS(1289), + [anon_sym_GT] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1291), + [anon_sym_GT_EQ] = ACTIONS(1289), + [anon_sym_LT_EQ] = ACTIONS(1289), + [anon_sym__] = ACTIONS(1291), + [anon_sym_DOT] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1289), + [anon_sym_COMMA] = ACTIONS(1289), + [anon_sym_COLON_COLON] = ACTIONS(1289), + [anon_sym_POUND] = ACTIONS(1289), + [anon_sym_as] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_default] = ACTIONS(1291), + [anon_sym_union] = ACTIONS(1291), + [anon_sym_ref] = ACTIONS(1291), + [sym_mutable_specifier] = ACTIONS(1291), + [sym_integer_literal] = ACTIONS(1289), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1289), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1291), + [sym_super] = ACTIONS(1291), + [sym_crate] = ACTIONS(1291), + [sym_metavariable] = ACTIONS(1289), + [sym__raw_string_literal_start] = ACTIONS(1289), + [sym_float_literal] = ACTIONS(1289), + }, + [465] = { + [sym_line_comment] = STATE(465), + [sym_block_comment] = STATE(465), [sym_identifier] = ACTIONS(1315), [anon_sym_LPAREN] = ACTIONS(1313), [anon_sym_LBRACK] = ACTIONS(1313), @@ -68888,91 +68394,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1313), [sym_float_literal] = ACTIONS(1313), }, - [474] = { - [sym_line_comment] = STATE(474), - [sym_block_comment] = STATE(474), - [sym_identifier] = ACTIONS(1267), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1265), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1267), - [anon_sym_QMARK] = ACTIONS(1265), - [anon_sym_u8] = ACTIONS(1267), - [anon_sym_i8] = ACTIONS(1267), - [anon_sym_u16] = ACTIONS(1267), - [anon_sym_i16] = ACTIONS(1267), - [anon_sym_u32] = ACTIONS(1267), - [anon_sym_i32] = ACTIONS(1267), - [anon_sym_u64] = ACTIONS(1267), - [anon_sym_i64] = ACTIONS(1267), - [anon_sym_u128] = ACTIONS(1267), - [anon_sym_i128] = ACTIONS(1267), - [anon_sym_isize] = ACTIONS(1267), - [anon_sym_usize] = ACTIONS(1267), - [anon_sym_f32] = ACTIONS(1267), - [anon_sym_f64] = ACTIONS(1267), - [anon_sym_bool] = ACTIONS(1267), - [anon_sym_str] = ACTIONS(1267), - [anon_sym_char] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1267), - [anon_sym_SLASH] = ACTIONS(1267), - [anon_sym_PERCENT] = ACTIONS(1267), - [anon_sym_CARET] = ACTIONS(1267), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1267), - [anon_sym_AMP_AMP] = ACTIONS(1265), - [anon_sym_PIPE_PIPE] = ACTIONS(1265), - [anon_sym_LT_LT] = ACTIONS(1267), - [anon_sym_GT_GT] = ACTIONS(1267), - [anon_sym_PLUS_EQ] = ACTIONS(1265), - [anon_sym_DASH_EQ] = ACTIONS(1265), - [anon_sym_STAR_EQ] = ACTIONS(1265), - [anon_sym_SLASH_EQ] = ACTIONS(1265), - [anon_sym_PERCENT_EQ] = ACTIONS(1265), - [anon_sym_CARET_EQ] = ACTIONS(1265), - [anon_sym_AMP_EQ] = ACTIONS(1265), - [anon_sym_PIPE_EQ] = ACTIONS(1265), - [anon_sym_LT_LT_EQ] = ACTIONS(1265), - [anon_sym_GT_GT_EQ] = ACTIONS(1265), - [anon_sym_EQ] = ACTIONS(1267), - [anon_sym_EQ_EQ] = ACTIONS(1265), - [anon_sym_BANG_EQ] = ACTIONS(1265), - [anon_sym_GT] = ACTIONS(1267), - [anon_sym_LT] = ACTIONS(1267), - [anon_sym_GT_EQ] = ACTIONS(1265), - [anon_sym_LT_EQ] = ACTIONS(1265), - [anon_sym__] = ACTIONS(1267), - [anon_sym_DOT] = ACTIONS(1267), - [anon_sym_DOT_DOT] = ACTIONS(1267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), - [anon_sym_COMMA] = ACTIONS(1265), - [anon_sym_COLON_COLON] = ACTIONS(1265), - [anon_sym_POUND] = ACTIONS(1265), - [anon_sym_as] = ACTIONS(1267), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1267), - [anon_sym_union] = ACTIONS(1267), - [anon_sym_ref] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1267), - [sym_integer_literal] = ACTIONS(1265), - [aux_sym_string_literal_token1] = ACTIONS(1265), - [sym_char_literal] = ACTIONS(1265), - [anon_sym_true] = ACTIONS(1267), - [anon_sym_false] = ACTIONS(1267), + [466] = { + [sym_line_comment] = STATE(466), + [sym_block_comment] = STATE(466), + [sym_identifier] = ACTIONS(1343), + [anon_sym_LPAREN] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1343), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1343), + [anon_sym_SLASH] = ACTIONS(1343), + [anon_sym_PERCENT] = ACTIONS(1343), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1343), + [anon_sym_PIPE] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1341), + [anon_sym_PIPE_PIPE] = ACTIONS(1341), + [anon_sym_LT_LT] = ACTIONS(1343), + [anon_sym_GT_GT] = ACTIONS(1343), + [anon_sym_PLUS_EQ] = ACTIONS(1341), + [anon_sym_DASH_EQ] = ACTIONS(1341), + [anon_sym_STAR_EQ] = ACTIONS(1341), + [anon_sym_SLASH_EQ] = ACTIONS(1341), + [anon_sym_PERCENT_EQ] = ACTIONS(1341), + [anon_sym_CARET_EQ] = ACTIONS(1341), + [anon_sym_AMP_EQ] = ACTIONS(1341), + [anon_sym_PIPE_EQ] = ACTIONS(1341), + [anon_sym_LT_LT_EQ] = ACTIONS(1341), + [anon_sym_GT_GT_EQ] = ACTIONS(1341), + [anon_sym_EQ] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1341), + [anon_sym_BANG_EQ] = ACTIONS(1341), + [anon_sym_GT] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1343), + [anon_sym_GT_EQ] = ACTIONS(1341), + [anon_sym_LT_EQ] = ACTIONS(1341), + [anon_sym__] = ACTIONS(1343), + [anon_sym_DOT] = ACTIONS(1343), + [anon_sym_DOT_DOT] = ACTIONS(1343), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1341), + [anon_sym_COMMA] = ACTIONS(1341), + [anon_sym_COLON_COLON] = ACTIONS(1341), + [anon_sym_POUND] = ACTIONS(1341), + [anon_sym_as] = ACTIONS(1343), + [anon_sym_const] = ACTIONS(1343), + [anon_sym_default] = ACTIONS(1343), + [anon_sym_union] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1343), + [sym_mutable_specifier] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1341), + [sym_char_literal] = ACTIONS(1341), + [anon_sym_true] = ACTIONS(1343), + [anon_sym_false] = ACTIONS(1343), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1343), + [sym_super] = ACTIONS(1343), + [sym_crate] = ACTIONS(1343), + [sym_metavariable] = ACTIONS(1341), + [sym__raw_string_literal_start] = ACTIONS(1341), + [sym_float_literal] = ACTIONS(1341), + }, + [467] = { + [sym_line_comment] = STATE(467), + [sym_block_comment] = STATE(467), + [sym_identifier] = ACTIONS(1363), + [anon_sym_LPAREN] = ACTIONS(1361), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_RBRACE] = ACTIONS(1361), + [anon_sym_PLUS] = ACTIONS(1363), + [anon_sym_STAR] = ACTIONS(1363), + [anon_sym_QMARK] = ACTIONS(1361), + [anon_sym_u8] = ACTIONS(1363), + [anon_sym_i8] = ACTIONS(1363), + [anon_sym_u16] = ACTIONS(1363), + [anon_sym_i16] = ACTIONS(1363), + [anon_sym_u32] = ACTIONS(1363), + [anon_sym_i32] = ACTIONS(1363), + [anon_sym_u64] = ACTIONS(1363), + [anon_sym_i64] = ACTIONS(1363), + [anon_sym_u128] = ACTIONS(1363), + [anon_sym_i128] = ACTIONS(1363), + [anon_sym_isize] = ACTIONS(1363), + [anon_sym_usize] = ACTIONS(1363), + [anon_sym_f32] = ACTIONS(1363), + [anon_sym_f64] = ACTIONS(1363), + [anon_sym_bool] = ACTIONS(1363), + [anon_sym_str] = ACTIONS(1363), + [anon_sym_char] = ACTIONS(1363), + [anon_sym_DASH] = ACTIONS(1363), + [anon_sym_SLASH] = ACTIONS(1363), + [anon_sym_PERCENT] = ACTIONS(1363), + [anon_sym_CARET] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), + [anon_sym_PIPE] = ACTIONS(1363), + [anon_sym_AMP_AMP] = ACTIONS(1361), + [anon_sym_PIPE_PIPE] = ACTIONS(1361), + [anon_sym_LT_LT] = ACTIONS(1363), + [anon_sym_GT_GT] = ACTIONS(1363), + [anon_sym_PLUS_EQ] = ACTIONS(1361), + [anon_sym_DASH_EQ] = ACTIONS(1361), + [anon_sym_STAR_EQ] = ACTIONS(1361), + [anon_sym_SLASH_EQ] = ACTIONS(1361), + [anon_sym_PERCENT_EQ] = ACTIONS(1361), + [anon_sym_CARET_EQ] = ACTIONS(1361), + [anon_sym_AMP_EQ] = ACTIONS(1361), + [anon_sym_PIPE_EQ] = ACTIONS(1361), + [anon_sym_LT_LT_EQ] = ACTIONS(1361), + [anon_sym_GT_GT_EQ] = ACTIONS(1361), + [anon_sym_EQ] = ACTIONS(1363), + [anon_sym_EQ_EQ] = ACTIONS(1361), + [anon_sym_BANG_EQ] = ACTIONS(1361), + [anon_sym_GT] = ACTIONS(1363), + [anon_sym_LT] = ACTIONS(1363), + [anon_sym_GT_EQ] = ACTIONS(1361), + [anon_sym_LT_EQ] = ACTIONS(1361), + [anon_sym__] = ACTIONS(1363), + [anon_sym_DOT] = ACTIONS(1363), + [anon_sym_DOT_DOT] = ACTIONS(1363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1361), + [anon_sym_COMMA] = ACTIONS(1361), + [anon_sym_COLON_COLON] = ACTIONS(1361), + [anon_sym_POUND] = ACTIONS(1361), + [anon_sym_as] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), + [anon_sym_default] = ACTIONS(1363), + [anon_sym_union] = ACTIONS(1363), + [anon_sym_ref] = ACTIONS(1363), + [sym_mutable_specifier] = ACTIONS(1363), + [sym_integer_literal] = ACTIONS(1361), + [aux_sym_string_literal_token1] = ACTIONS(1361), + [sym_char_literal] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(1363), + [anon_sym_false] = ACTIONS(1363), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1363), + [sym_super] = ACTIONS(1363), + [sym_crate] = ACTIONS(1363), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1361), + [sym_float_literal] = ACTIONS(1361), + }, + [468] = { + [sym_attribute_item] = STATE(1485), + [sym_inner_attribute_item] = STATE(1485), + [sym_bracketed_type] = STATE(3551), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3283), + [sym_macro_invocation] = STATE(2882), + [sym_scoped_identifier] = STATE(2161), + [sym_scoped_type_identifier] = STATE(2974), + [sym_match_arm] = STATE(1492), + [sym_last_match_arm] = STATE(3427), + [sym_match_pattern] = STATE(3417), + [sym_const_block] = STATE(2882), + [sym__pattern] = STATE(2763), + [sym_tuple_pattern] = STATE(2882), + [sym_slice_pattern] = STATE(2882), + [sym_tuple_struct_pattern] = STATE(2882), + [sym_struct_pattern] = STATE(2882), + [sym_remaining_field_pattern] = STATE(2882), + [sym_mut_pattern] = STATE(2882), + [sym_range_pattern] = STATE(2882), + [sym_ref_pattern] = STATE(2882), + [sym_captured_pattern] = STATE(2882), + [sym_reference_pattern] = STATE(2882), + [sym_or_pattern] = STATE(2882), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2305), + [sym_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_boolean_literal] = STATE(2305), + [sym_line_comment] = STATE(468), + [sym_block_comment] = STATE(468), + [aux_sym_match_block_repeat1] = STATE(740), + [aux_sym_match_arm_repeat1] = STATE(766), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(1641), + [anon_sym_RBRACE] = ACTIONS(1681), + [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_DASH] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1657), + [anon_sym_POUND] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1663), + [anon_sym_union] = ACTIONS(1663), + [anon_sym_ref] = ACTIONS(1665), + [sym_mutable_specifier] = ACTIONS(1667), + [sym_integer_literal] = ACTIONS(1669), + [aux_sym_string_literal_token1] = ACTIONS(1671), + [sym_char_literal] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1675), + [sym_super] = ACTIONS(1675), + [sym_crate] = ACTIONS(1675), + [sym_metavariable] = ACTIONS(1677), + [sym__raw_string_literal_start] = ACTIONS(1679), + [sym_float_literal] = ACTIONS(1669), + }, + [469] = { + [sym_attribute_item] = STATE(1485), + [sym_inner_attribute_item] = STATE(1485), + [sym_bracketed_type] = STATE(3551), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3283), + [sym_macro_invocation] = STATE(2882), + [sym_scoped_identifier] = STATE(2161), + [sym_scoped_type_identifier] = STATE(2974), + [sym_match_arm] = STATE(1492), + [sym_last_match_arm] = STATE(3459), + [sym_match_pattern] = STATE(3417), + [sym_const_block] = STATE(2882), + [sym__pattern] = STATE(2763), + [sym_tuple_pattern] = STATE(2882), + [sym_slice_pattern] = STATE(2882), + [sym_tuple_struct_pattern] = STATE(2882), + [sym_struct_pattern] = STATE(2882), + [sym_remaining_field_pattern] = STATE(2882), + [sym_mut_pattern] = STATE(2882), + [sym_range_pattern] = STATE(2882), + [sym_ref_pattern] = STATE(2882), + [sym_captured_pattern] = STATE(2882), + [sym_reference_pattern] = STATE(2882), + [sym_or_pattern] = STATE(2882), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2305), + [sym_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_boolean_literal] = STATE(2305), + [sym_line_comment] = STATE(469), + [sym_block_comment] = STATE(469), + [aux_sym_match_block_repeat1] = STATE(751), + [aux_sym_match_arm_repeat1] = STATE(766), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(1641), + [anon_sym_RBRACE] = ACTIONS(1683), + [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_DASH] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1657), + [anon_sym_POUND] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1663), + [anon_sym_union] = ACTIONS(1663), + [anon_sym_ref] = ACTIONS(1665), + [sym_mutable_specifier] = ACTIONS(1667), + [sym_integer_literal] = ACTIONS(1669), + [aux_sym_string_literal_token1] = ACTIONS(1671), + [sym_char_literal] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1675), + [sym_super] = ACTIONS(1675), + [sym_crate] = ACTIONS(1675), + [sym_metavariable] = ACTIONS(1677), + [sym__raw_string_literal_start] = ACTIONS(1679), + [sym_float_literal] = ACTIONS(1669), + }, + [470] = { + [sym_line_comment] = STATE(470), + [sym_block_comment] = STATE(470), + [sym_identifier] = ACTIONS(1299), + [anon_sym_LPAREN] = ACTIONS(1297), + [anon_sym_LBRACK] = ACTIONS(1297), + [anon_sym_RBRACE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1299), + [anon_sym_QMARK] = ACTIONS(1297), + [anon_sym_u8] = ACTIONS(1299), + [anon_sym_i8] = ACTIONS(1299), + [anon_sym_u16] = ACTIONS(1299), + [anon_sym_i16] = ACTIONS(1299), + [anon_sym_u32] = ACTIONS(1299), + [anon_sym_i32] = ACTIONS(1299), + [anon_sym_u64] = ACTIONS(1299), + [anon_sym_i64] = ACTIONS(1299), + [anon_sym_u128] = ACTIONS(1299), + [anon_sym_i128] = ACTIONS(1299), + [anon_sym_isize] = ACTIONS(1299), + [anon_sym_usize] = ACTIONS(1299), + [anon_sym_f32] = ACTIONS(1299), + [anon_sym_f64] = ACTIONS(1299), + [anon_sym_bool] = ACTIONS(1299), + [anon_sym_str] = ACTIONS(1299), + [anon_sym_char] = ACTIONS(1299), + [anon_sym_DASH] = ACTIONS(1299), + [anon_sym_SLASH] = ACTIONS(1299), + [anon_sym_PERCENT] = ACTIONS(1299), + [anon_sym_CARET] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1299), + [anon_sym_PIPE] = ACTIONS(1299), + [anon_sym_AMP_AMP] = ACTIONS(1297), + [anon_sym_PIPE_PIPE] = ACTIONS(1297), + [anon_sym_LT_LT] = ACTIONS(1299), + [anon_sym_GT_GT] = ACTIONS(1299), + [anon_sym_PLUS_EQ] = ACTIONS(1297), + [anon_sym_DASH_EQ] = ACTIONS(1297), + [anon_sym_STAR_EQ] = ACTIONS(1297), + [anon_sym_SLASH_EQ] = ACTIONS(1297), + [anon_sym_PERCENT_EQ] = ACTIONS(1297), + [anon_sym_CARET_EQ] = ACTIONS(1297), + [anon_sym_AMP_EQ] = ACTIONS(1297), + [anon_sym_PIPE_EQ] = ACTIONS(1297), + [anon_sym_LT_LT_EQ] = ACTIONS(1297), + [anon_sym_GT_GT_EQ] = ACTIONS(1297), + [anon_sym_EQ] = ACTIONS(1299), + [anon_sym_EQ_EQ] = ACTIONS(1297), + [anon_sym_BANG_EQ] = ACTIONS(1297), + [anon_sym_GT] = ACTIONS(1299), + [anon_sym_LT] = ACTIONS(1299), + [anon_sym_GT_EQ] = ACTIONS(1297), + [anon_sym_LT_EQ] = ACTIONS(1297), + [anon_sym__] = ACTIONS(1299), + [anon_sym_DOT] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(1299), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1297), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1297), + [anon_sym_COMMA] = ACTIONS(1297), + [anon_sym_COLON_COLON] = ACTIONS(1297), + [anon_sym_POUND] = ACTIONS(1297), + [anon_sym_as] = ACTIONS(1299), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1299), + [anon_sym_union] = ACTIONS(1299), + [anon_sym_ref] = ACTIONS(1299), + [sym_mutable_specifier] = ACTIONS(1299), + [sym_integer_literal] = ACTIONS(1297), + [aux_sym_string_literal_token1] = ACTIONS(1297), + [sym_char_literal] = ACTIONS(1297), + [anon_sym_true] = ACTIONS(1299), + [anon_sym_false] = ACTIONS(1299), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1267), - [sym_super] = ACTIONS(1267), - [sym_crate] = ACTIONS(1267), - [sym_metavariable] = ACTIONS(1265), - [sym__raw_string_literal_start] = ACTIONS(1265), - [sym_float_literal] = ACTIONS(1265), + [sym_self] = ACTIONS(1299), + [sym_super] = ACTIONS(1299), + [sym_crate] = ACTIONS(1299), + [sym_metavariable] = ACTIONS(1297), + [sym__raw_string_literal_start] = ACTIONS(1297), + [sym_float_literal] = ACTIONS(1297), }, - [475] = { - [sym_line_comment] = STATE(475), - [sym_block_comment] = STATE(475), + [471] = { + [sym_line_comment] = STATE(471), + [sym_block_comment] = STATE(471), [sym_identifier] = ACTIONS(1355), [anon_sym_LPAREN] = ACTIONS(1353), [anon_sym_LBRACK] = ACTIONS(1353), @@ -69052,417 +68886,911 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1353), [sym_float_literal] = ACTIONS(1353), }, - [476] = { - [sym_line_comment] = STATE(476), - [sym_block_comment] = STATE(476), - [sym_identifier] = ACTIONS(1351), - [anon_sym_LPAREN] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(1349), - [anon_sym_RBRACE] = ACTIONS(1349), - [anon_sym_PLUS] = ACTIONS(1351), - [anon_sym_STAR] = ACTIONS(1351), - [anon_sym_QMARK] = ACTIONS(1349), - [anon_sym_u8] = ACTIONS(1351), - [anon_sym_i8] = ACTIONS(1351), - [anon_sym_u16] = ACTIONS(1351), - [anon_sym_i16] = ACTIONS(1351), - [anon_sym_u32] = ACTIONS(1351), - [anon_sym_i32] = ACTIONS(1351), - [anon_sym_u64] = ACTIONS(1351), - [anon_sym_i64] = ACTIONS(1351), - [anon_sym_u128] = ACTIONS(1351), - [anon_sym_i128] = ACTIONS(1351), - [anon_sym_isize] = ACTIONS(1351), - [anon_sym_usize] = ACTIONS(1351), - [anon_sym_f32] = ACTIONS(1351), - [anon_sym_f64] = ACTIONS(1351), - [anon_sym_bool] = ACTIONS(1351), - [anon_sym_str] = ACTIONS(1351), - [anon_sym_char] = ACTIONS(1351), - [anon_sym_DASH] = ACTIONS(1351), - [anon_sym_SLASH] = ACTIONS(1351), - [anon_sym_PERCENT] = ACTIONS(1351), - [anon_sym_CARET] = ACTIONS(1351), - [anon_sym_AMP] = ACTIONS(1351), - [anon_sym_PIPE] = ACTIONS(1351), - [anon_sym_AMP_AMP] = ACTIONS(1349), - [anon_sym_PIPE_PIPE] = ACTIONS(1349), - [anon_sym_LT_LT] = ACTIONS(1351), - [anon_sym_GT_GT] = ACTIONS(1351), - [anon_sym_PLUS_EQ] = ACTIONS(1349), - [anon_sym_DASH_EQ] = ACTIONS(1349), - [anon_sym_STAR_EQ] = ACTIONS(1349), - [anon_sym_SLASH_EQ] = ACTIONS(1349), - [anon_sym_PERCENT_EQ] = ACTIONS(1349), - [anon_sym_CARET_EQ] = ACTIONS(1349), - [anon_sym_AMP_EQ] = ACTIONS(1349), - [anon_sym_PIPE_EQ] = ACTIONS(1349), - [anon_sym_LT_LT_EQ] = ACTIONS(1349), - [anon_sym_GT_GT_EQ] = ACTIONS(1349), - [anon_sym_EQ] = ACTIONS(1351), - [anon_sym_EQ_EQ] = ACTIONS(1349), - [anon_sym_BANG_EQ] = ACTIONS(1349), - [anon_sym_GT] = ACTIONS(1351), - [anon_sym_LT] = ACTIONS(1351), - [anon_sym_GT_EQ] = ACTIONS(1349), - [anon_sym_LT_EQ] = ACTIONS(1349), - [anon_sym__] = ACTIONS(1351), - [anon_sym_DOT] = ACTIONS(1351), - [anon_sym_DOT_DOT] = ACTIONS(1351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1349), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1349), - [anon_sym_COMMA] = ACTIONS(1349), - [anon_sym_COLON_COLON] = ACTIONS(1349), - [anon_sym_POUND] = ACTIONS(1349), - [anon_sym_as] = ACTIONS(1351), - [anon_sym_const] = ACTIONS(1351), - [anon_sym_default] = ACTIONS(1351), - [anon_sym_union] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1351), - [sym_mutable_specifier] = ACTIONS(1351), - [sym_integer_literal] = ACTIONS(1349), - [aux_sym_string_literal_token1] = ACTIONS(1349), - [sym_char_literal] = ACTIONS(1349), - [anon_sym_true] = ACTIONS(1351), - [anon_sym_false] = ACTIONS(1351), + [472] = { + [sym_line_comment] = STATE(472), + [sym_block_comment] = STATE(472), + [sym_identifier] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1357), + [anon_sym_LBRACK] = ACTIONS(1357), + [anon_sym_RBRACE] = ACTIONS(1357), + [anon_sym_PLUS] = ACTIONS(1359), + [anon_sym_STAR] = ACTIONS(1359), + [anon_sym_QMARK] = ACTIONS(1357), + [anon_sym_u8] = ACTIONS(1359), + [anon_sym_i8] = ACTIONS(1359), + [anon_sym_u16] = ACTIONS(1359), + [anon_sym_i16] = ACTIONS(1359), + [anon_sym_u32] = ACTIONS(1359), + [anon_sym_i32] = ACTIONS(1359), + [anon_sym_u64] = ACTIONS(1359), + [anon_sym_i64] = ACTIONS(1359), + [anon_sym_u128] = ACTIONS(1359), + [anon_sym_i128] = ACTIONS(1359), + [anon_sym_isize] = ACTIONS(1359), + [anon_sym_usize] = ACTIONS(1359), + [anon_sym_f32] = ACTIONS(1359), + [anon_sym_f64] = ACTIONS(1359), + [anon_sym_bool] = ACTIONS(1359), + [anon_sym_str] = ACTIONS(1359), + [anon_sym_char] = ACTIONS(1359), + [anon_sym_DASH] = ACTIONS(1359), + [anon_sym_SLASH] = ACTIONS(1359), + [anon_sym_PERCENT] = ACTIONS(1359), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_AMP] = ACTIONS(1359), + [anon_sym_PIPE] = ACTIONS(1359), + [anon_sym_AMP_AMP] = ACTIONS(1357), + [anon_sym_PIPE_PIPE] = ACTIONS(1357), + [anon_sym_LT_LT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1359), + [anon_sym_PLUS_EQ] = ACTIONS(1357), + [anon_sym_DASH_EQ] = ACTIONS(1357), + [anon_sym_STAR_EQ] = ACTIONS(1357), + [anon_sym_SLASH_EQ] = ACTIONS(1357), + [anon_sym_PERCENT_EQ] = ACTIONS(1357), + [anon_sym_CARET_EQ] = ACTIONS(1357), + [anon_sym_AMP_EQ] = ACTIONS(1357), + [anon_sym_PIPE_EQ] = ACTIONS(1357), + [anon_sym_LT_LT_EQ] = ACTIONS(1357), + [anon_sym_GT_GT_EQ] = ACTIONS(1357), + [anon_sym_EQ] = ACTIONS(1359), + [anon_sym_EQ_EQ] = ACTIONS(1357), + [anon_sym_BANG_EQ] = ACTIONS(1357), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT_EQ] = ACTIONS(1357), + [anon_sym_LT_EQ] = ACTIONS(1357), + [anon_sym__] = ACTIONS(1359), + [anon_sym_DOT] = ACTIONS(1359), + [anon_sym_DOT_DOT] = ACTIONS(1359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1357), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1357), + [anon_sym_COMMA] = ACTIONS(1357), + [anon_sym_COLON_COLON] = ACTIONS(1357), + [anon_sym_POUND] = ACTIONS(1357), + [anon_sym_as] = ACTIONS(1359), + [anon_sym_const] = ACTIONS(1359), + [anon_sym_default] = ACTIONS(1359), + [anon_sym_union] = ACTIONS(1359), + [anon_sym_ref] = ACTIONS(1359), + [sym_mutable_specifier] = ACTIONS(1359), + [sym_integer_literal] = ACTIONS(1357), + [aux_sym_string_literal_token1] = ACTIONS(1357), + [sym_char_literal] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(1359), + [anon_sym_false] = ACTIONS(1359), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1351), - [sym_super] = ACTIONS(1351), - [sym_crate] = ACTIONS(1351), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1349), - [sym_float_literal] = ACTIONS(1349), + [sym_self] = ACTIONS(1359), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1357), + [sym__raw_string_literal_start] = ACTIONS(1357), + [sym_float_literal] = ACTIONS(1357), }, - [477] = { - [sym_line_comment] = STATE(477), - [sym_block_comment] = STATE(477), - [sym_identifier] = ACTIONS(1279), - [anon_sym_LPAREN] = ACTIONS(1277), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_RBRACE] = ACTIONS(1277), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(1279), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_u8] = ACTIONS(1279), - [anon_sym_i8] = ACTIONS(1279), - [anon_sym_u16] = ACTIONS(1279), - [anon_sym_i16] = ACTIONS(1279), - [anon_sym_u32] = ACTIONS(1279), - [anon_sym_i32] = ACTIONS(1279), - [anon_sym_u64] = ACTIONS(1279), - [anon_sym_i64] = ACTIONS(1279), - [anon_sym_u128] = ACTIONS(1279), - [anon_sym_i128] = ACTIONS(1279), - [anon_sym_isize] = ACTIONS(1279), - [anon_sym_usize] = ACTIONS(1279), - [anon_sym_f32] = ACTIONS(1279), - [anon_sym_f64] = ACTIONS(1279), - [anon_sym_bool] = ACTIONS(1279), - [anon_sym_str] = ACTIONS(1279), - [anon_sym_char] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_SLASH] = ACTIONS(1279), - [anon_sym_PERCENT] = ACTIONS(1279), - [anon_sym_CARET] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1277), - [anon_sym_PIPE_PIPE] = ACTIONS(1277), - [anon_sym_LT_LT] = ACTIONS(1279), - [anon_sym_GT_GT] = ACTIONS(1279), - [anon_sym_PLUS_EQ] = ACTIONS(1277), - [anon_sym_DASH_EQ] = ACTIONS(1277), - [anon_sym_STAR_EQ] = ACTIONS(1277), - [anon_sym_SLASH_EQ] = ACTIONS(1277), - [anon_sym_PERCENT_EQ] = ACTIONS(1277), - [anon_sym_CARET_EQ] = ACTIONS(1277), - [anon_sym_AMP_EQ] = ACTIONS(1277), - [anon_sym_PIPE_EQ] = ACTIONS(1277), - [anon_sym_LT_LT_EQ] = ACTIONS(1277), - [anon_sym_GT_GT_EQ] = ACTIONS(1277), - [anon_sym_EQ] = ACTIONS(1279), - [anon_sym_EQ_EQ] = ACTIONS(1277), - [anon_sym_BANG_EQ] = ACTIONS(1277), - [anon_sym_GT] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1279), - [anon_sym_GT_EQ] = ACTIONS(1277), - [anon_sym_LT_EQ] = ACTIONS(1277), - [anon_sym__] = ACTIONS(1279), - [anon_sym_DOT] = ACTIONS(1279), - [anon_sym_DOT_DOT] = ACTIONS(1279), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1277), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(1277), - [anon_sym_COLON_COLON] = ACTIONS(1277), - [anon_sym_POUND] = ACTIONS(1277), - [anon_sym_as] = ACTIONS(1279), - [anon_sym_const] = ACTIONS(1279), - [anon_sym_default] = ACTIONS(1279), - [anon_sym_union] = ACTIONS(1279), - [anon_sym_ref] = ACTIONS(1279), - [sym_mutable_specifier] = ACTIONS(1279), - [sym_integer_literal] = ACTIONS(1277), - [aux_sym_string_literal_token1] = ACTIONS(1277), - [sym_char_literal] = ACTIONS(1277), - [anon_sym_true] = ACTIONS(1279), - [anon_sym_false] = ACTIONS(1279), + [473] = { + [sym_line_comment] = STATE(473), + [sym_block_comment] = STATE(473), + [sym_identifier] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_LBRACK] = ACTIONS(1337), + [anon_sym_RBRACE] = ACTIONS(1337), + [anon_sym_PLUS] = ACTIONS(1339), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_QMARK] = ACTIONS(1337), + [anon_sym_u8] = ACTIONS(1339), + [anon_sym_i8] = ACTIONS(1339), + [anon_sym_u16] = ACTIONS(1339), + [anon_sym_i16] = ACTIONS(1339), + [anon_sym_u32] = ACTIONS(1339), + [anon_sym_i32] = ACTIONS(1339), + [anon_sym_u64] = ACTIONS(1339), + [anon_sym_i64] = ACTIONS(1339), + [anon_sym_u128] = ACTIONS(1339), + [anon_sym_i128] = ACTIONS(1339), + [anon_sym_isize] = ACTIONS(1339), + [anon_sym_usize] = ACTIONS(1339), + [anon_sym_f32] = ACTIONS(1339), + [anon_sym_f64] = ACTIONS(1339), + [anon_sym_bool] = ACTIONS(1339), + [anon_sym_str] = ACTIONS(1339), + [anon_sym_char] = ACTIONS(1339), + [anon_sym_DASH] = ACTIONS(1339), + [anon_sym_SLASH] = ACTIONS(1339), + [anon_sym_PERCENT] = ACTIONS(1339), + [anon_sym_CARET] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1339), + [anon_sym_PIPE] = ACTIONS(1339), + [anon_sym_AMP_AMP] = ACTIONS(1337), + [anon_sym_PIPE_PIPE] = ACTIONS(1337), + [anon_sym_LT_LT] = ACTIONS(1339), + [anon_sym_GT_GT] = ACTIONS(1339), + [anon_sym_PLUS_EQ] = ACTIONS(1337), + [anon_sym_DASH_EQ] = ACTIONS(1337), + [anon_sym_STAR_EQ] = ACTIONS(1337), + [anon_sym_SLASH_EQ] = ACTIONS(1337), + [anon_sym_PERCENT_EQ] = ACTIONS(1337), + [anon_sym_CARET_EQ] = ACTIONS(1337), + [anon_sym_AMP_EQ] = ACTIONS(1337), + [anon_sym_PIPE_EQ] = ACTIONS(1337), + [anon_sym_LT_LT_EQ] = ACTIONS(1337), + [anon_sym_GT_GT_EQ] = ACTIONS(1337), + [anon_sym_EQ] = ACTIONS(1339), + [anon_sym_EQ_EQ] = ACTIONS(1337), + [anon_sym_BANG_EQ] = ACTIONS(1337), + [anon_sym_GT] = ACTIONS(1339), + [anon_sym_LT] = ACTIONS(1339), + [anon_sym_GT_EQ] = ACTIONS(1337), + [anon_sym_LT_EQ] = ACTIONS(1337), + [anon_sym__] = ACTIONS(1339), + [anon_sym_DOT] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1337), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1337), + [anon_sym_COMMA] = ACTIONS(1337), + [anon_sym_COLON_COLON] = ACTIONS(1337), + [anon_sym_POUND] = ACTIONS(1337), + [anon_sym_as] = ACTIONS(1339), + [anon_sym_const] = ACTIONS(1339), + [anon_sym_default] = ACTIONS(1339), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_ref] = ACTIONS(1339), + [sym_mutable_specifier] = ACTIONS(1339), + [sym_integer_literal] = ACTIONS(1337), + [aux_sym_string_literal_token1] = ACTIONS(1337), + [sym_char_literal] = ACTIONS(1337), + [anon_sym_true] = ACTIONS(1339), + [anon_sym_false] = ACTIONS(1339), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1279), - [sym_super] = ACTIONS(1279), - [sym_crate] = ACTIONS(1279), - [sym_metavariable] = ACTIONS(1277), - [sym__raw_string_literal_start] = ACTIONS(1277), - [sym_float_literal] = ACTIONS(1277), + [sym_self] = ACTIONS(1339), + [sym_super] = ACTIONS(1339), + [sym_crate] = ACTIONS(1339), + [sym_metavariable] = ACTIONS(1337), + [sym__raw_string_literal_start] = ACTIONS(1337), + [sym_float_literal] = ACTIONS(1337), }, - [478] = { - [sym_line_comment] = STATE(478), - [sym_block_comment] = STATE(478), - [sym_identifier] = ACTIONS(1295), - [anon_sym_LPAREN] = ACTIONS(1293), - [anon_sym_LBRACK] = ACTIONS(1293), - [anon_sym_RBRACE] = ACTIONS(1293), - [anon_sym_PLUS] = ACTIONS(1295), - [anon_sym_STAR] = ACTIONS(1295), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_u8] = ACTIONS(1295), - [anon_sym_i8] = ACTIONS(1295), - [anon_sym_u16] = ACTIONS(1295), - [anon_sym_i16] = ACTIONS(1295), - [anon_sym_u32] = ACTIONS(1295), - [anon_sym_i32] = ACTIONS(1295), - [anon_sym_u64] = ACTIONS(1295), - [anon_sym_i64] = ACTIONS(1295), - [anon_sym_u128] = ACTIONS(1295), - [anon_sym_i128] = ACTIONS(1295), - [anon_sym_isize] = ACTIONS(1295), - [anon_sym_usize] = ACTIONS(1295), - [anon_sym_f32] = ACTIONS(1295), - [anon_sym_f64] = ACTIONS(1295), - [anon_sym_bool] = ACTIONS(1295), - [anon_sym_str] = ACTIONS(1295), - [anon_sym_char] = ACTIONS(1295), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_SLASH] = ACTIONS(1295), - [anon_sym_PERCENT] = ACTIONS(1295), - [anon_sym_CARET] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(1295), - [anon_sym_PIPE] = ACTIONS(1295), - [anon_sym_AMP_AMP] = ACTIONS(1293), - [anon_sym_PIPE_PIPE] = ACTIONS(1293), - [anon_sym_LT_LT] = ACTIONS(1295), - [anon_sym_GT_GT] = ACTIONS(1295), - [anon_sym_PLUS_EQ] = ACTIONS(1293), - [anon_sym_DASH_EQ] = ACTIONS(1293), - [anon_sym_STAR_EQ] = ACTIONS(1293), - [anon_sym_SLASH_EQ] = ACTIONS(1293), - [anon_sym_PERCENT_EQ] = ACTIONS(1293), - [anon_sym_CARET_EQ] = ACTIONS(1293), - [anon_sym_AMP_EQ] = ACTIONS(1293), - [anon_sym_PIPE_EQ] = ACTIONS(1293), - [anon_sym_LT_LT_EQ] = ACTIONS(1293), - [anon_sym_GT_GT_EQ] = ACTIONS(1293), - [anon_sym_EQ] = ACTIONS(1295), - [anon_sym_EQ_EQ] = ACTIONS(1293), - [anon_sym_BANG_EQ] = ACTIONS(1293), - [anon_sym_GT] = ACTIONS(1295), - [anon_sym_LT] = ACTIONS(1295), - [anon_sym_GT_EQ] = ACTIONS(1293), - [anon_sym_LT_EQ] = ACTIONS(1293), - [anon_sym__] = ACTIONS(1295), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_DOT_DOT] = ACTIONS(1295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1293), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1293), - [anon_sym_COMMA] = ACTIONS(1293), - [anon_sym_COLON_COLON] = ACTIONS(1293), - [anon_sym_POUND] = ACTIONS(1293), - [anon_sym_as] = ACTIONS(1295), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1295), - [anon_sym_union] = ACTIONS(1295), - [anon_sym_ref] = ACTIONS(1295), - [sym_mutable_specifier] = ACTIONS(1295), - [sym_integer_literal] = ACTIONS(1293), - [aux_sym_string_literal_token1] = ACTIONS(1293), - [sym_char_literal] = ACTIONS(1293), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), + [474] = { + [sym_line_comment] = STATE(474), + [sym_block_comment] = STATE(474), + [sym_identifier] = ACTIONS(1331), + [anon_sym_LPAREN] = ACTIONS(1329), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_RBRACE] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1331), + [anon_sym_QMARK] = ACTIONS(1329), + [anon_sym_u8] = ACTIONS(1331), + [anon_sym_i8] = ACTIONS(1331), + [anon_sym_u16] = ACTIONS(1331), + [anon_sym_i16] = ACTIONS(1331), + [anon_sym_u32] = ACTIONS(1331), + [anon_sym_i32] = ACTIONS(1331), + [anon_sym_u64] = ACTIONS(1331), + [anon_sym_i64] = ACTIONS(1331), + [anon_sym_u128] = ACTIONS(1331), + [anon_sym_i128] = ACTIONS(1331), + [anon_sym_isize] = ACTIONS(1331), + [anon_sym_usize] = ACTIONS(1331), + [anon_sym_f32] = ACTIONS(1331), + [anon_sym_f64] = ACTIONS(1331), + [anon_sym_bool] = ACTIONS(1331), + [anon_sym_str] = ACTIONS(1331), + [anon_sym_char] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_SLASH] = ACTIONS(1331), + [anon_sym_PERCENT] = ACTIONS(1331), + [anon_sym_CARET] = ACTIONS(1331), + [anon_sym_AMP] = ACTIONS(1331), + [anon_sym_PIPE] = ACTIONS(1331), + [anon_sym_AMP_AMP] = ACTIONS(1329), + [anon_sym_PIPE_PIPE] = ACTIONS(1329), + [anon_sym_LT_LT] = ACTIONS(1331), + [anon_sym_GT_GT] = ACTIONS(1331), + [anon_sym_PLUS_EQ] = ACTIONS(1329), + [anon_sym_DASH_EQ] = ACTIONS(1329), + [anon_sym_STAR_EQ] = ACTIONS(1329), + [anon_sym_SLASH_EQ] = ACTIONS(1329), + [anon_sym_PERCENT_EQ] = ACTIONS(1329), + [anon_sym_CARET_EQ] = ACTIONS(1329), + [anon_sym_AMP_EQ] = ACTIONS(1329), + [anon_sym_PIPE_EQ] = ACTIONS(1329), + [anon_sym_LT_LT_EQ] = ACTIONS(1329), + [anon_sym_GT_GT_EQ] = ACTIONS(1329), + [anon_sym_EQ] = ACTIONS(1331), + [anon_sym_EQ_EQ] = ACTIONS(1329), + [anon_sym_BANG_EQ] = ACTIONS(1329), + [anon_sym_GT] = ACTIONS(1331), + [anon_sym_LT] = ACTIONS(1331), + [anon_sym_GT_EQ] = ACTIONS(1329), + [anon_sym_LT_EQ] = ACTIONS(1329), + [anon_sym__] = ACTIONS(1331), + [anon_sym_DOT] = ACTIONS(1331), + [anon_sym_DOT_DOT] = ACTIONS(1331), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(1329), + [anon_sym_COLON_COLON] = ACTIONS(1329), + [anon_sym_POUND] = ACTIONS(1329), + [anon_sym_as] = ACTIONS(1331), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1331), + [anon_sym_union] = ACTIONS(1331), + [anon_sym_ref] = ACTIONS(1331), + [sym_mutable_specifier] = ACTIONS(1331), + [sym_integer_literal] = ACTIONS(1329), + [aux_sym_string_literal_token1] = ACTIONS(1329), + [sym_char_literal] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1295), - [sym_super] = ACTIONS(1295), - [sym_crate] = ACTIONS(1295), - [sym_metavariable] = ACTIONS(1293), - [sym__raw_string_literal_start] = ACTIONS(1293), - [sym_float_literal] = ACTIONS(1293), + [sym_self] = ACTIONS(1331), + [sym_super] = ACTIONS(1331), + [sym_crate] = ACTIONS(1331), + [sym_metavariable] = ACTIONS(1329), + [sym__raw_string_literal_start] = ACTIONS(1329), + [sym_float_literal] = ACTIONS(1329), }, - [479] = { - [sym_line_comment] = STATE(479), - [sym_block_comment] = STATE(479), - [ts_builtin_sym_end] = ACTIONS(1687), - [sym_identifier] = ACTIONS(1689), - [anon_sym_SEMI] = ACTIONS(1687), - [anon_sym_macro_rules_BANG] = ACTIONS(1687), + [475] = { + [sym_line_comment] = STATE(475), + [sym_block_comment] = STATE(475), + [sym_identifier] = ACTIONS(1347), + [anon_sym_LPAREN] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1347), + [anon_sym_QMARK] = ACTIONS(1345), + [anon_sym_u8] = ACTIONS(1347), + [anon_sym_i8] = ACTIONS(1347), + [anon_sym_u16] = ACTIONS(1347), + [anon_sym_i16] = ACTIONS(1347), + [anon_sym_u32] = ACTIONS(1347), + [anon_sym_i32] = ACTIONS(1347), + [anon_sym_u64] = ACTIONS(1347), + [anon_sym_i64] = ACTIONS(1347), + [anon_sym_u128] = ACTIONS(1347), + [anon_sym_i128] = ACTIONS(1347), + [anon_sym_isize] = ACTIONS(1347), + [anon_sym_usize] = ACTIONS(1347), + [anon_sym_f32] = ACTIONS(1347), + [anon_sym_f64] = ACTIONS(1347), + [anon_sym_bool] = ACTIONS(1347), + [anon_sym_str] = ACTIONS(1347), + [anon_sym_char] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_SLASH] = ACTIONS(1347), + [anon_sym_PERCENT] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP_AMP] = ACTIONS(1345), + [anon_sym_PIPE_PIPE] = ACTIONS(1345), + [anon_sym_LT_LT] = ACTIONS(1347), + [anon_sym_GT_GT] = ACTIONS(1347), + [anon_sym_PLUS_EQ] = ACTIONS(1345), + [anon_sym_DASH_EQ] = ACTIONS(1345), + [anon_sym_STAR_EQ] = ACTIONS(1345), + [anon_sym_SLASH_EQ] = ACTIONS(1345), + [anon_sym_PERCENT_EQ] = ACTIONS(1345), + [anon_sym_CARET_EQ] = ACTIONS(1345), + [anon_sym_AMP_EQ] = ACTIONS(1345), + [anon_sym_PIPE_EQ] = ACTIONS(1345), + [anon_sym_LT_LT_EQ] = ACTIONS(1345), + [anon_sym_GT_GT_EQ] = ACTIONS(1345), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_EQ_EQ] = ACTIONS(1345), + [anon_sym_BANG_EQ] = ACTIONS(1345), + [anon_sym_GT] = ACTIONS(1347), + [anon_sym_LT] = ACTIONS(1347), + [anon_sym_GT_EQ] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1345), + [anon_sym__] = ACTIONS(1347), + [anon_sym_DOT] = ACTIONS(1347), + [anon_sym_DOT_DOT] = ACTIONS(1347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1345), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1345), + [anon_sym_COMMA] = ACTIONS(1345), + [anon_sym_COLON_COLON] = ACTIONS(1345), + [anon_sym_POUND] = ACTIONS(1345), + [anon_sym_as] = ACTIONS(1347), + [anon_sym_const] = ACTIONS(1347), + [anon_sym_default] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1347), + [anon_sym_ref] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1347), + [sym_integer_literal] = ACTIONS(1345), + [aux_sym_string_literal_token1] = ACTIONS(1345), + [sym_char_literal] = ACTIONS(1345), + [anon_sym_true] = ACTIONS(1347), + [anon_sym_false] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1347), + [sym_super] = ACTIONS(1347), + [sym_crate] = ACTIONS(1347), + [sym_metavariable] = ACTIONS(1345), + [sym__raw_string_literal_start] = ACTIONS(1345), + [sym_float_literal] = ACTIONS(1345), + }, + [476] = { + [sym_line_comment] = STATE(476), + [sym_block_comment] = STATE(476), + [sym_identifier] = ACTIONS(1283), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1281), + [anon_sym_RBRACE] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_QMARK] = ACTIONS(1281), + [anon_sym_u8] = ACTIONS(1283), + [anon_sym_i8] = ACTIONS(1283), + [anon_sym_u16] = ACTIONS(1283), + [anon_sym_i16] = ACTIONS(1283), + [anon_sym_u32] = ACTIONS(1283), + [anon_sym_i32] = ACTIONS(1283), + [anon_sym_u64] = ACTIONS(1283), + [anon_sym_i64] = ACTIONS(1283), + [anon_sym_u128] = ACTIONS(1283), + [anon_sym_i128] = ACTIONS(1283), + [anon_sym_isize] = ACTIONS(1283), + [anon_sym_usize] = ACTIONS(1283), + [anon_sym_f32] = ACTIONS(1283), + [anon_sym_f64] = ACTIONS(1283), + [anon_sym_bool] = ACTIONS(1283), + [anon_sym_str] = ACTIONS(1283), + [anon_sym_char] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_SLASH] = ACTIONS(1283), + [anon_sym_PERCENT] = ACTIONS(1283), + [anon_sym_CARET] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [anon_sym_LT_LT] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_PLUS_EQ] = ACTIONS(1281), + [anon_sym_DASH_EQ] = ACTIONS(1281), + [anon_sym_STAR_EQ] = ACTIONS(1281), + [anon_sym_SLASH_EQ] = ACTIONS(1281), + [anon_sym_PERCENT_EQ] = ACTIONS(1281), + [anon_sym_CARET_EQ] = ACTIONS(1281), + [anon_sym_AMP_EQ] = ACTIONS(1281), + [anon_sym_PIPE_EQ] = ACTIONS(1281), + [anon_sym_LT_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_GT_EQ] = ACTIONS(1281), + [anon_sym_EQ] = ACTIONS(1283), + [anon_sym_EQ_EQ] = ACTIONS(1281), + [anon_sym_BANG_EQ] = ACTIONS(1281), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT_EQ] = ACTIONS(1281), + [anon_sym_LT_EQ] = ACTIONS(1281), + [anon_sym__] = ACTIONS(1283), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1281), + [anon_sym_COMMA] = ACTIONS(1281), + [anon_sym_COLON_COLON] = ACTIONS(1281), + [anon_sym_POUND] = ACTIONS(1281), + [anon_sym_as] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_ref] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1283), + [sym_integer_literal] = ACTIONS(1281), + [aux_sym_string_literal_token1] = ACTIONS(1281), + [sym_char_literal] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(1283), + [anon_sym_false] = ACTIONS(1283), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1283), + [sym_super] = ACTIONS(1283), + [sym_crate] = ACTIONS(1283), + [sym_metavariable] = ACTIONS(1281), + [sym__raw_string_literal_start] = ACTIONS(1281), + [sym_float_literal] = ACTIONS(1281), + }, + [477] = { + [sym_line_comment] = STATE(477), + [sym_block_comment] = STATE(477), + [sym_identifier] = ACTIONS(1685), [anon_sym_LPAREN] = ACTIONS(1687), [anon_sym_LBRACK] = ACTIONS(1687), - [anon_sym_LBRACE] = ACTIONS(1687), - [anon_sym_RBRACE] = 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_DASH] = ACTIONS(1687), - [anon_sym_BANG] = ACTIONS(1687), - [anon_sym_AMP] = ACTIONS(1687), - [anon_sym_PIPE] = ACTIONS(1687), - [anon_sym_LT] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_QMARK] = ACTIONS(1327), + [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_DASH] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1325), + [anon_sym_PERCENT] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1325), + [anon_sym_AMP] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_AMP_AMP] = ACTIONS(1327), + [anon_sym_PIPE_PIPE] = ACTIONS(1327), + [anon_sym_LT_LT] = ACTIONS(1325), + [anon_sym_GT_GT] = ACTIONS(1325), + [anon_sym_PLUS_EQ] = ACTIONS(1327), + [anon_sym_DASH_EQ] = ACTIONS(1327), + [anon_sym_STAR_EQ] = ACTIONS(1327), + [anon_sym_SLASH_EQ] = ACTIONS(1327), + [anon_sym_PERCENT_EQ] = ACTIONS(1327), + [anon_sym_CARET_EQ] = ACTIONS(1327), + [anon_sym_AMP_EQ] = ACTIONS(1327), + [anon_sym_PIPE_EQ] = ACTIONS(1327), + [anon_sym_LT_LT_EQ] = ACTIONS(1327), + [anon_sym_GT_GT_EQ] = ACTIONS(1327), + [anon_sym_EQ] = ACTIONS(1325), + [anon_sym_EQ_EQ] = ACTIONS(1327), + [anon_sym_BANG_EQ] = ACTIONS(1327), + [anon_sym_GT] = ACTIONS(1325), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1327), + [anon_sym_LT_EQ] = ACTIONS(1327), + [anon_sym__] = ACTIONS(1685), + [anon_sym_DOT] = ACTIONS(1325), + [anon_sym_DOT_DOT] = ACTIONS(1685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1327), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1327), + [anon_sym_COMMA] = ACTIONS(1327), [anon_sym_COLON_COLON] = ACTIONS(1687), [anon_sym_POUND] = ACTIONS(1687), - [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_gen] = 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_extern] = ACTIONS(1689), - [anon_sym_yield] = ACTIONS(1689), - [anon_sym_move] = ACTIONS(1689), - [anon_sym_try] = ACTIONS(1689), + [anon_sym_as] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1685), + [anon_sym_default] = ACTIONS(1685), + [anon_sym_union] = ACTIONS(1685), + [anon_sym_ref] = ACTIONS(1685), + [sym_mutable_specifier] = ACTIONS(1685), [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), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1689), - [sym_super] = ACTIONS(1689), - [sym_crate] = ACTIONS(1689), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), [sym_metavariable] = ACTIONS(1687), [sym__raw_string_literal_start] = ACTIONS(1687), [sym_float_literal] = ACTIONS(1687), }, + [478] = { + [sym_line_comment] = STATE(478), + [sym_block_comment] = STATE(478), + [sym_identifier] = ACTIONS(1319), + [anon_sym_LPAREN] = ACTIONS(1317), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_RBRACE] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1319), + [anon_sym_STAR] = ACTIONS(1319), + [anon_sym_QMARK] = ACTIONS(1317), + [anon_sym_u8] = ACTIONS(1319), + [anon_sym_i8] = ACTIONS(1319), + [anon_sym_u16] = ACTIONS(1319), + [anon_sym_i16] = ACTIONS(1319), + [anon_sym_u32] = ACTIONS(1319), + [anon_sym_i32] = ACTIONS(1319), + [anon_sym_u64] = ACTIONS(1319), + [anon_sym_i64] = ACTIONS(1319), + [anon_sym_u128] = ACTIONS(1319), + [anon_sym_i128] = ACTIONS(1319), + [anon_sym_isize] = ACTIONS(1319), + [anon_sym_usize] = ACTIONS(1319), + [anon_sym_f32] = ACTIONS(1319), + [anon_sym_f64] = ACTIONS(1319), + [anon_sym_bool] = ACTIONS(1319), + [anon_sym_str] = ACTIONS(1319), + [anon_sym_char] = ACTIONS(1319), + [anon_sym_DASH] = ACTIONS(1319), + [anon_sym_SLASH] = ACTIONS(1319), + [anon_sym_PERCENT] = ACTIONS(1319), + [anon_sym_CARET] = ACTIONS(1319), + [anon_sym_AMP] = ACTIONS(1319), + [anon_sym_PIPE] = ACTIONS(1319), + [anon_sym_AMP_AMP] = ACTIONS(1317), + [anon_sym_PIPE_PIPE] = ACTIONS(1317), + [anon_sym_LT_LT] = ACTIONS(1319), + [anon_sym_GT_GT] = ACTIONS(1319), + [anon_sym_PLUS_EQ] = ACTIONS(1317), + [anon_sym_DASH_EQ] = ACTIONS(1317), + [anon_sym_STAR_EQ] = ACTIONS(1317), + [anon_sym_SLASH_EQ] = ACTIONS(1317), + [anon_sym_PERCENT_EQ] = ACTIONS(1317), + [anon_sym_CARET_EQ] = ACTIONS(1317), + [anon_sym_AMP_EQ] = ACTIONS(1317), + [anon_sym_PIPE_EQ] = ACTIONS(1317), + [anon_sym_LT_LT_EQ] = ACTIONS(1317), + [anon_sym_GT_GT_EQ] = ACTIONS(1317), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_EQ_EQ] = ACTIONS(1317), + [anon_sym_BANG_EQ] = ACTIONS(1317), + [anon_sym_GT] = ACTIONS(1319), + [anon_sym_LT] = ACTIONS(1319), + [anon_sym_GT_EQ] = ACTIONS(1317), + [anon_sym_LT_EQ] = ACTIONS(1317), + [anon_sym__] = ACTIONS(1319), + [anon_sym_DOT] = ACTIONS(1319), + [anon_sym_DOT_DOT] = ACTIONS(1319), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1317), + [anon_sym_COMMA] = ACTIONS(1317), + [anon_sym_COLON_COLON] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(1317), + [anon_sym_as] = ACTIONS(1319), + [anon_sym_const] = ACTIONS(1319), + [anon_sym_default] = ACTIONS(1319), + [anon_sym_union] = ACTIONS(1319), + [anon_sym_ref] = ACTIONS(1319), + [sym_mutable_specifier] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1317), + [sym_char_literal] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(1319), + [anon_sym_false] = ACTIONS(1319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1319), + [sym_super] = ACTIONS(1319), + [sym_crate] = ACTIONS(1319), + [sym_metavariable] = ACTIONS(1317), + [sym__raw_string_literal_start] = ACTIONS(1317), + [sym_float_literal] = ACTIONS(1317), + }, + [479] = { + [sym_attribute_item] = STATE(1485), + [sym_inner_attribute_item] = STATE(1485), + [sym_bracketed_type] = STATE(3551), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3283), + [sym_macro_invocation] = STATE(2882), + [sym_scoped_identifier] = STATE(2161), + [sym_scoped_type_identifier] = STATE(2974), + [sym_match_arm] = STATE(1492), + [sym_last_match_arm] = STATE(3401), + [sym_match_pattern] = STATE(3417), + [sym_const_block] = STATE(2882), + [sym__pattern] = STATE(2763), + [sym_tuple_pattern] = STATE(2882), + [sym_slice_pattern] = STATE(2882), + [sym_tuple_struct_pattern] = STATE(2882), + [sym_struct_pattern] = STATE(2882), + [sym_remaining_field_pattern] = STATE(2882), + [sym_mut_pattern] = STATE(2882), + [sym_range_pattern] = STATE(2882), + [sym_ref_pattern] = STATE(2882), + [sym_captured_pattern] = STATE(2882), + [sym_reference_pattern] = STATE(2882), + [sym_or_pattern] = STATE(2882), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2305), + [sym_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_boolean_literal] = STATE(2305), + [sym_line_comment] = STATE(479), + [sym_block_comment] = STATE(479), + [aux_sym_match_block_repeat1] = STATE(754), + [aux_sym_match_arm_repeat1] = STATE(766), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(1641), + [anon_sym_RBRACE] = ACTIONS(1689), + [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_DASH] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1657), + [anon_sym_POUND] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1663), + [anon_sym_union] = ACTIONS(1663), + [anon_sym_ref] = ACTIONS(1665), + [sym_mutable_specifier] = ACTIONS(1667), + [sym_integer_literal] = ACTIONS(1669), + [aux_sym_string_literal_token1] = ACTIONS(1671), + [sym_char_literal] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1675), + [sym_super] = ACTIONS(1675), + [sym_crate] = ACTIONS(1675), + [sym_metavariable] = ACTIONS(1677), + [sym__raw_string_literal_start] = ACTIONS(1679), + [sym_float_literal] = ACTIONS(1669), + }, [480] = { [sym_line_comment] = STATE(480), [sym_block_comment] = STATE(480), - [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_LBRACK] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1691), - [anon_sym_RBRACE] = 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), + [sym_identifier] = ACTIONS(1303), + [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(1303), + [anon_sym_STAR] = ACTIONS(1303), + [anon_sym_QMARK] = ACTIONS(1301), + [anon_sym_u8] = ACTIONS(1303), + [anon_sym_i8] = ACTIONS(1303), + [anon_sym_u16] = ACTIONS(1303), + [anon_sym_i16] = ACTIONS(1303), + [anon_sym_u32] = ACTIONS(1303), + [anon_sym_i32] = ACTIONS(1303), + [anon_sym_u64] = ACTIONS(1303), + [anon_sym_i64] = ACTIONS(1303), + [anon_sym_u128] = ACTIONS(1303), + [anon_sym_i128] = ACTIONS(1303), + [anon_sym_isize] = ACTIONS(1303), + [anon_sym_usize] = ACTIONS(1303), + [anon_sym_f32] = ACTIONS(1303), + [anon_sym_f64] = ACTIONS(1303), + [anon_sym_bool] = ACTIONS(1303), + [anon_sym_str] = ACTIONS(1303), + [anon_sym_char] = ACTIONS(1303), + [anon_sym_DASH] = ACTIONS(1303), + [anon_sym_SLASH] = ACTIONS(1303), + [anon_sym_PERCENT] = ACTIONS(1303), + [anon_sym_CARET] = ACTIONS(1303), + [anon_sym_AMP] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1303), + [anon_sym_AMP_AMP] = ACTIONS(1301), + [anon_sym_PIPE_PIPE] = ACTIONS(1301), + [anon_sym_LT_LT] = ACTIONS(1303), + [anon_sym_GT_GT] = ACTIONS(1303), + [anon_sym_PLUS_EQ] = ACTIONS(1301), + [anon_sym_DASH_EQ] = ACTIONS(1301), + [anon_sym_STAR_EQ] = ACTIONS(1301), + [anon_sym_SLASH_EQ] = ACTIONS(1301), + [anon_sym_PERCENT_EQ] = ACTIONS(1301), + [anon_sym_CARET_EQ] = ACTIONS(1301), + [anon_sym_AMP_EQ] = ACTIONS(1301), + [anon_sym_PIPE_EQ] = ACTIONS(1301), + [anon_sym_LT_LT_EQ] = ACTIONS(1301), + [anon_sym_GT_GT_EQ] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1303), + [anon_sym_EQ_EQ] = ACTIONS(1301), + [anon_sym_BANG_EQ] = ACTIONS(1301), + [anon_sym_GT] = ACTIONS(1303), + [anon_sym_LT] = ACTIONS(1303), + [anon_sym_GT_EQ] = ACTIONS(1301), + [anon_sym_LT_EQ] = ACTIONS(1301), + [anon_sym__] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1303), + [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1301), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1301), + [anon_sym_COMMA] = ACTIONS(1301), + [anon_sym_COLON_COLON] = ACTIONS(1301), + [anon_sym_POUND] = ACTIONS(1301), + [anon_sym_as] = ACTIONS(1303), + [anon_sym_const] = ACTIONS(1303), + [anon_sym_default] = ACTIONS(1303), + [anon_sym_union] = ACTIONS(1303), + [anon_sym_ref] = ACTIONS(1303), + [sym_mutable_specifier] = ACTIONS(1303), + [sym_integer_literal] = ACTIONS(1301), + [aux_sym_string_literal_token1] = ACTIONS(1301), + [sym_char_literal] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(1303), + [anon_sym_false] = ACTIONS(1303), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1303), + [sym_super] = ACTIONS(1303), + [sym_crate] = ACTIONS(1303), + [sym_metavariable] = ACTIONS(1301), + [sym__raw_string_literal_start] = ACTIONS(1301), + [sym_float_literal] = ACTIONS(1301), + }, + [481] = { + [sym_line_comment] = STATE(481), + [sym_block_comment] = STATE(481), + [sym_identifier] = ACTIONS(1335), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_QMARK] = ACTIONS(1333), + [anon_sym_u8] = ACTIONS(1335), + [anon_sym_i8] = ACTIONS(1335), + [anon_sym_u16] = ACTIONS(1335), + [anon_sym_i16] = ACTIONS(1335), + [anon_sym_u32] = ACTIONS(1335), + [anon_sym_i32] = ACTIONS(1335), + [anon_sym_u64] = ACTIONS(1335), + [anon_sym_i64] = ACTIONS(1335), + [anon_sym_u128] = ACTIONS(1335), + [anon_sym_i128] = ACTIONS(1335), + [anon_sym_isize] = ACTIONS(1335), + [anon_sym_usize] = ACTIONS(1335), + [anon_sym_f32] = ACTIONS(1335), + [anon_sym_f64] = ACTIONS(1335), + [anon_sym_bool] = ACTIONS(1335), + [anon_sym_str] = ACTIONS(1335), + [anon_sym_char] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_SLASH] = ACTIONS(1335), + [anon_sym_PERCENT] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_PIPE] = ACTIONS(1335), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_LT_LT] = ACTIONS(1335), + [anon_sym_GT_GT] = ACTIONS(1335), + [anon_sym_PLUS_EQ] = ACTIONS(1333), + [anon_sym_DASH_EQ] = ACTIONS(1333), + [anon_sym_STAR_EQ] = ACTIONS(1333), + [anon_sym_SLASH_EQ] = ACTIONS(1333), + [anon_sym_PERCENT_EQ] = ACTIONS(1333), + [anon_sym_CARET_EQ] = ACTIONS(1333), + [anon_sym_AMP_EQ] = ACTIONS(1333), + [anon_sym_PIPE_EQ] = ACTIONS(1333), + [anon_sym_LT_LT_EQ] = ACTIONS(1333), + [anon_sym_GT_GT_EQ] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1335), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym__] = ACTIONS(1335), + [anon_sym_DOT] = ACTIONS(1335), + [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1333), + [anon_sym_COMMA] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(1333), + [anon_sym_POUND] = ACTIONS(1333), + [anon_sym_as] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_ref] = ACTIONS(1335), + [sym_mutable_specifier] = ACTIONS(1335), + [sym_integer_literal] = ACTIONS(1333), + [aux_sym_string_literal_token1] = ACTIONS(1333), + [sym_char_literal] = ACTIONS(1333), + [anon_sym_true] = ACTIONS(1335), + [anon_sym_false] = ACTIONS(1335), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1335), + [sym_super] = ACTIONS(1335), + [sym_crate] = ACTIONS(1335), + [sym_metavariable] = ACTIONS(1333), + [sym__raw_string_literal_start] = ACTIONS(1333), + [sym_float_literal] = ACTIONS(1333), + }, + [482] = { + [sym_line_comment] = STATE(482), + [sym_block_comment] = STATE(482), + [sym_identifier] = ACTIONS(1691), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1327), + [anon_sym_PLUS] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_QMARK] = ACTIONS(1327), + [anon_sym_u8] = ACTIONS(1691), + [anon_sym_i8] = ACTIONS(1691), + [anon_sym_u16] = ACTIONS(1691), + [anon_sym_i16] = ACTIONS(1691), + [anon_sym_u32] = ACTIONS(1691), + [anon_sym_i32] = ACTIONS(1691), + [anon_sym_u64] = ACTIONS(1691), + [anon_sym_i64] = ACTIONS(1691), + [anon_sym_u128] = ACTIONS(1691), + [anon_sym_i128] = ACTIONS(1691), + [anon_sym_isize] = ACTIONS(1691), + [anon_sym_usize] = ACTIONS(1691), + [anon_sym_f32] = ACTIONS(1691), + [anon_sym_f64] = ACTIONS(1691), + [anon_sym_bool] = ACTIONS(1691), + [anon_sym_str] = ACTIONS(1691), + [anon_sym_char] = ACTIONS(1691), [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1691), + [anon_sym_SLASH] = ACTIONS(1325), + [anon_sym_PERCENT] = ACTIONS(1325), + [anon_sym_CARET] = ACTIONS(1325), [anon_sym_AMP] = ACTIONS(1691), [anon_sym_PIPE] = ACTIONS(1691), + [anon_sym_AMP_AMP] = ACTIONS(1327), + [anon_sym_PIPE_PIPE] = ACTIONS(1327), + [anon_sym_LT_LT] = ACTIONS(1325), + [anon_sym_GT_GT] = ACTIONS(1325), + [anon_sym_PLUS_EQ] = ACTIONS(1327), + [anon_sym_DASH_EQ] = ACTIONS(1327), + [anon_sym_STAR_EQ] = ACTIONS(1327), + [anon_sym_SLASH_EQ] = ACTIONS(1327), + [anon_sym_PERCENT_EQ] = ACTIONS(1327), + [anon_sym_CARET_EQ] = ACTIONS(1327), + [anon_sym_AMP_EQ] = ACTIONS(1327), + [anon_sym_PIPE_EQ] = ACTIONS(1327), + [anon_sym_LT_LT_EQ] = ACTIONS(1327), + [anon_sym_GT_GT_EQ] = ACTIONS(1327), + [anon_sym_EQ] = ACTIONS(1325), + [anon_sym_EQ_EQ] = ACTIONS(1327), + [anon_sym_BANG_EQ] = ACTIONS(1327), + [anon_sym_GT] = ACTIONS(1325), [anon_sym_LT] = ACTIONS(1691), + [anon_sym_GT_EQ] = ACTIONS(1327), + [anon_sym_LT_EQ] = ACTIONS(1327), + [anon_sym__] = ACTIONS(1691), + [anon_sym_DOT] = ACTIONS(1325), [anon_sym_DOT_DOT] = ACTIONS(1691), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_POUND] = ACTIONS(1691), - [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_gen] = 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_extern] = ACTIONS(1693), - [anon_sym_yield] = ACTIONS(1693), - [anon_sym_move] = ACTIONS(1693), - [anon_sym_try] = 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), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1693), - [sym_super] = ACTIONS(1693), - [sym_crate] = ACTIONS(1693), - [sym_metavariable] = ACTIONS(1691), - [sym__raw_string_literal_start] = ACTIONS(1691), - [sym_float_literal] = ACTIONS(1691), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1327), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1327), + [anon_sym_COMMA] = ACTIONS(1327), + [anon_sym_COLON_COLON] = ACTIONS(1693), + [anon_sym_POUND] = ACTIONS(1693), + [anon_sym_as] = ACTIONS(1325), + [anon_sym_const] = ACTIONS(1691), + [anon_sym_default] = ACTIONS(1691), + [anon_sym_union] = ACTIONS(1691), + [anon_sym_ref] = ACTIONS(1691), + [sym_mutable_specifier] = ACTIONS(1691), + [sym_integer_literal] = ACTIONS(1693), + [aux_sym_string_literal_token1] = ACTIONS(1693), + [sym_char_literal] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1691), + [anon_sym_false] = ACTIONS(1691), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1691), + [sym_super] = ACTIONS(1691), + [sym_crate] = ACTIONS(1691), + [sym_metavariable] = ACTIONS(1693), + [sym__raw_string_literal_start] = ACTIONS(1693), + [sym_float_literal] = ACTIONS(1693), }, - [481] = { - [sym_line_comment] = STATE(481), - [sym_block_comment] = STATE(481), + [483] = { + [sym_line_comment] = STATE(483), + [sym_block_comment] = STATE(483), [ts_builtin_sym_end] = ACTIONS(1695), [sym_identifier] = ACTIONS(1697), [anon_sym_SEMI] = ACTIONS(1695), @@ -69541,9 +69869,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1695), [sym_float_literal] = ACTIONS(1695), }, - [482] = { - [sym_line_comment] = STATE(482), - [sym_block_comment] = STATE(482), + [484] = { + [sym_line_comment] = STATE(484), + [sym_block_comment] = STATE(484), [ts_builtin_sym_end] = ACTIONS(1699), [sym_identifier] = ACTIONS(1701), [anon_sym_SEMI] = ACTIONS(1699), @@ -69622,9 +69950,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1699), [sym_float_literal] = ACTIONS(1699), }, - [483] = { - [sym_line_comment] = STATE(483), - [sym_block_comment] = STATE(483), + [485] = { + [sym_line_comment] = STATE(485), + [sym_block_comment] = STATE(485), [ts_builtin_sym_end] = ACTIONS(1703), [sym_identifier] = ACTIONS(1705), [anon_sym_SEMI] = ACTIONS(1703), @@ -69703,9 +70031,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1703), [sym_float_literal] = ACTIONS(1703), }, - [484] = { - [sym_line_comment] = STATE(484), - [sym_block_comment] = STATE(484), + [486] = { + [sym_line_comment] = STATE(486), + [sym_block_comment] = STATE(486), [ts_builtin_sym_end] = ACTIONS(1707), [sym_identifier] = ACTIONS(1709), [anon_sym_SEMI] = ACTIONS(1707), @@ -69784,9 +70112,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1707), [sym_float_literal] = ACTIONS(1707), }, - [485] = { - [sym_line_comment] = STATE(485), - [sym_block_comment] = STATE(485), + [487] = { + [sym_line_comment] = STATE(487), + [sym_block_comment] = STATE(487), [ts_builtin_sym_end] = ACTIONS(1711), [sym_identifier] = ACTIONS(1713), [anon_sym_SEMI] = ACTIONS(1711), @@ -69865,9 +70193,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1711), [sym_float_literal] = ACTIONS(1711), }, - [486] = { - [sym_line_comment] = STATE(486), - [sym_block_comment] = STATE(486), + [488] = { + [sym_line_comment] = STATE(488), + [sym_block_comment] = STATE(488), [ts_builtin_sym_end] = ACTIONS(1715), [sym_identifier] = ACTIONS(1717), [anon_sym_SEMI] = ACTIONS(1715), @@ -69946,9 +70274,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1715), [sym_float_literal] = ACTIONS(1715), }, - [487] = { - [sym_line_comment] = STATE(487), - [sym_block_comment] = STATE(487), + [489] = { + [sym_line_comment] = STATE(489), + [sym_block_comment] = STATE(489), [ts_builtin_sym_end] = ACTIONS(1719), [sym_identifier] = ACTIONS(1721), [anon_sym_SEMI] = ACTIONS(1719), @@ -70027,9 +70355,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1719), [sym_float_literal] = ACTIONS(1719), }, - [488] = { - [sym_line_comment] = STATE(488), - [sym_block_comment] = STATE(488), + [490] = { + [sym_line_comment] = STATE(490), + [sym_block_comment] = STATE(490), [ts_builtin_sym_end] = ACTIONS(1723), [sym_identifier] = ACTIONS(1725), [anon_sym_SEMI] = ACTIONS(1723), @@ -70108,9 +70436,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1723), [sym_float_literal] = ACTIONS(1723), }, - [489] = { - [sym_line_comment] = STATE(489), - [sym_block_comment] = STATE(489), + [491] = { + [sym_line_comment] = STATE(491), + [sym_block_comment] = STATE(491), [ts_builtin_sym_end] = ACTIONS(1727), [sym_identifier] = ACTIONS(1729), [anon_sym_SEMI] = ACTIONS(1727), @@ -70189,9 +70517,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1727), [sym_float_literal] = ACTIONS(1727), }, - [490] = { - [sym_line_comment] = STATE(490), - [sym_block_comment] = STATE(490), + [492] = { + [sym_line_comment] = STATE(492), + [sym_block_comment] = STATE(492), [ts_builtin_sym_end] = ACTIONS(1731), [sym_identifier] = ACTIONS(1733), [anon_sym_SEMI] = ACTIONS(1731), @@ -70270,9 +70598,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1731), [sym_float_literal] = ACTIONS(1731), }, - [491] = { - [sym_line_comment] = STATE(491), - [sym_block_comment] = STATE(491), + [493] = { + [sym_line_comment] = STATE(493), + [sym_block_comment] = STATE(493), [ts_builtin_sym_end] = ACTIONS(1735), [sym_identifier] = ACTIONS(1737), [anon_sym_SEMI] = ACTIONS(1735), @@ -70351,9 +70679,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1735), [sym_float_literal] = ACTIONS(1735), }, - [492] = { - [sym_line_comment] = STATE(492), - [sym_block_comment] = STATE(492), + [494] = { + [sym_line_comment] = STATE(494), + [sym_block_comment] = STATE(494), [ts_builtin_sym_end] = ACTIONS(1739), [sym_identifier] = ACTIONS(1741), [anon_sym_SEMI] = ACTIONS(1739), @@ -70432,9 +70760,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1739), [sym_float_literal] = ACTIONS(1739), }, - [493] = { - [sym_line_comment] = STATE(493), - [sym_block_comment] = STATE(493), + [495] = { + [sym_line_comment] = STATE(495), + [sym_block_comment] = STATE(495), [ts_builtin_sym_end] = ACTIONS(1743), [sym_identifier] = ACTIONS(1745), [anon_sym_SEMI] = ACTIONS(1743), @@ -70513,9 +70841,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1743), [sym_float_literal] = ACTIONS(1743), }, - [494] = { - [sym_line_comment] = STATE(494), - [sym_block_comment] = STATE(494), + [496] = { + [sym_line_comment] = STATE(496), + [sym_block_comment] = STATE(496), [ts_builtin_sym_end] = ACTIONS(1747), [sym_identifier] = ACTIONS(1749), [anon_sym_SEMI] = ACTIONS(1747), @@ -70594,9 +70922,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1747), [sym_float_literal] = ACTIONS(1747), }, - [495] = { - [sym_line_comment] = STATE(495), - [sym_block_comment] = STATE(495), + [497] = { + [sym_line_comment] = STATE(497), + [sym_block_comment] = STATE(497), [ts_builtin_sym_end] = ACTIONS(1751), [sym_identifier] = ACTIONS(1753), [anon_sym_SEMI] = ACTIONS(1751), @@ -70675,9 +71003,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1751), [sym_float_literal] = ACTIONS(1751), }, - [496] = { - [sym_line_comment] = STATE(496), - [sym_block_comment] = STATE(496), + [498] = { + [sym_line_comment] = STATE(498), + [sym_block_comment] = STATE(498), [ts_builtin_sym_end] = ACTIONS(1755), [sym_identifier] = ACTIONS(1757), [anon_sym_SEMI] = ACTIONS(1755), @@ -70756,9 +71084,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1755), [sym_float_literal] = ACTIONS(1755), }, - [497] = { - [sym_line_comment] = STATE(497), - [sym_block_comment] = STATE(497), + [499] = { + [sym_line_comment] = STATE(499), + [sym_block_comment] = STATE(499), [ts_builtin_sym_end] = ACTIONS(1759), [sym_identifier] = ACTIONS(1761), [anon_sym_SEMI] = ACTIONS(1759), @@ -70837,9 +71165,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1759), [sym_float_literal] = ACTIONS(1759), }, - [498] = { - [sym_line_comment] = STATE(498), - [sym_block_comment] = STATE(498), + [500] = { + [sym_line_comment] = STATE(500), + [sym_block_comment] = STATE(500), [ts_builtin_sym_end] = ACTIONS(1763), [sym_identifier] = ACTIONS(1765), [anon_sym_SEMI] = ACTIONS(1763), @@ -70918,9 +71246,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1763), [sym_float_literal] = ACTIONS(1763), }, - [499] = { - [sym_line_comment] = STATE(499), - [sym_block_comment] = STATE(499), + [501] = { + [sym_line_comment] = STATE(501), + [sym_block_comment] = STATE(501), [ts_builtin_sym_end] = ACTIONS(1767), [sym_identifier] = ACTIONS(1769), [anon_sym_SEMI] = ACTIONS(1767), @@ -70999,9 +71327,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1767), [sym_float_literal] = ACTIONS(1767), }, - [500] = { - [sym_line_comment] = STATE(500), - [sym_block_comment] = STATE(500), + [502] = { + [sym_line_comment] = STATE(502), + [sym_block_comment] = STATE(502), [ts_builtin_sym_end] = ACTIONS(1771), [sym_identifier] = ACTIONS(1773), [anon_sym_SEMI] = ACTIONS(1771), @@ -71080,9 +71408,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1771), [sym_float_literal] = ACTIONS(1771), }, - [501] = { - [sym_line_comment] = STATE(501), - [sym_block_comment] = STATE(501), + [503] = { + [sym_line_comment] = STATE(503), + [sym_block_comment] = STATE(503), [ts_builtin_sym_end] = ACTIONS(1775), [sym_identifier] = ACTIONS(1777), [anon_sym_SEMI] = ACTIONS(1775), @@ -71161,9 +71489,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1775), [sym_float_literal] = ACTIONS(1775), }, - [502] = { - [sym_line_comment] = STATE(502), - [sym_block_comment] = STATE(502), + [504] = { + [sym_line_comment] = STATE(504), + [sym_block_comment] = STATE(504), [ts_builtin_sym_end] = ACTIONS(1779), [sym_identifier] = ACTIONS(1781), [anon_sym_SEMI] = ACTIONS(1779), @@ -71242,9 +71570,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1779), [sym_float_literal] = ACTIONS(1779), }, - [503] = { - [sym_line_comment] = STATE(503), - [sym_block_comment] = STATE(503), + [505] = { + [sym_line_comment] = STATE(505), + [sym_block_comment] = STATE(505), [ts_builtin_sym_end] = ACTIONS(1783), [sym_identifier] = ACTIONS(1785), [anon_sym_SEMI] = ACTIONS(1783), @@ -71323,9 +71651,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1783), [sym_float_literal] = ACTIONS(1783), }, - [504] = { - [sym_line_comment] = STATE(504), - [sym_block_comment] = STATE(504), + [506] = { + [sym_line_comment] = STATE(506), + [sym_block_comment] = STATE(506), [ts_builtin_sym_end] = ACTIONS(1787), [sym_identifier] = ACTIONS(1789), [anon_sym_SEMI] = ACTIONS(1787), @@ -71404,9 +71732,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1787), [sym_float_literal] = ACTIONS(1787), }, - [505] = { - [sym_line_comment] = STATE(505), - [sym_block_comment] = STATE(505), + [507] = { + [sym_line_comment] = STATE(507), + [sym_block_comment] = STATE(507), [ts_builtin_sym_end] = ACTIONS(1791), [sym_identifier] = ACTIONS(1793), [anon_sym_SEMI] = ACTIONS(1791), @@ -71485,9 +71813,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1791), [sym_float_literal] = ACTIONS(1791), }, - [506] = { - [sym_line_comment] = STATE(506), - [sym_block_comment] = STATE(506), + [508] = { + [sym_line_comment] = STATE(508), + [sym_block_comment] = STATE(508), [ts_builtin_sym_end] = ACTIONS(1795), [sym_identifier] = ACTIONS(1797), [anon_sym_SEMI] = ACTIONS(1795), @@ -71566,9 +71894,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1795), [sym_float_literal] = ACTIONS(1795), }, - [507] = { - [sym_line_comment] = STATE(507), - [sym_block_comment] = STATE(507), + [509] = { + [sym_line_comment] = STATE(509), + [sym_block_comment] = STATE(509), [ts_builtin_sym_end] = ACTIONS(1799), [sym_identifier] = ACTIONS(1801), [anon_sym_SEMI] = ACTIONS(1799), @@ -71647,9 +71975,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1799), [sym_float_literal] = ACTIONS(1799), }, - [508] = { - [sym_line_comment] = STATE(508), - [sym_block_comment] = STATE(508), + [510] = { + [sym_line_comment] = STATE(510), + [sym_block_comment] = STATE(510), [ts_builtin_sym_end] = ACTIONS(1803), [sym_identifier] = ACTIONS(1805), [anon_sym_SEMI] = ACTIONS(1803), @@ -71728,9 +72056,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1803), [sym_float_literal] = ACTIONS(1803), }, - [509] = { - [sym_line_comment] = STATE(509), - [sym_block_comment] = STATE(509), + [511] = { + [sym_line_comment] = STATE(511), + [sym_block_comment] = STATE(511), [ts_builtin_sym_end] = ACTIONS(1807), [sym_identifier] = ACTIONS(1809), [anon_sym_SEMI] = ACTIONS(1807), @@ -71809,9 +72137,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1807), [sym_float_literal] = ACTIONS(1807), }, - [510] = { - [sym_line_comment] = STATE(510), - [sym_block_comment] = STATE(510), + [512] = { + [sym_line_comment] = STATE(512), + [sym_block_comment] = STATE(512), [ts_builtin_sym_end] = ACTIONS(1811), [sym_identifier] = ACTIONS(1813), [anon_sym_SEMI] = ACTIONS(1811), @@ -71890,9 +72218,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1811), [sym_float_literal] = ACTIONS(1811), }, - [511] = { - [sym_line_comment] = STATE(511), - [sym_block_comment] = STATE(511), + [513] = { + [sym_line_comment] = STATE(513), + [sym_block_comment] = STATE(513), [ts_builtin_sym_end] = ACTIONS(1815), [sym_identifier] = ACTIONS(1817), [anon_sym_SEMI] = ACTIONS(1815), @@ -71971,9 +72299,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1815), [sym_float_literal] = ACTIONS(1815), }, - [512] = { - [sym_line_comment] = STATE(512), - [sym_block_comment] = STATE(512), + [514] = { + [sym_line_comment] = STATE(514), + [sym_block_comment] = STATE(514), [ts_builtin_sym_end] = ACTIONS(1819), [sym_identifier] = ACTIONS(1821), [anon_sym_SEMI] = ACTIONS(1819), @@ -72052,9 +72380,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1819), [sym_float_literal] = ACTIONS(1819), }, - [513] = { - [sym_line_comment] = STATE(513), - [sym_block_comment] = STATE(513), + [515] = { + [sym_line_comment] = STATE(515), + [sym_block_comment] = STATE(515), [ts_builtin_sym_end] = ACTIONS(1823), [sym_identifier] = ACTIONS(1825), [anon_sym_SEMI] = ACTIONS(1823), @@ -72133,9 +72461,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1823), [sym_float_literal] = ACTIONS(1823), }, - [514] = { - [sym_line_comment] = STATE(514), - [sym_block_comment] = STATE(514), + [516] = { + [sym_line_comment] = STATE(516), + [sym_block_comment] = STATE(516), [ts_builtin_sym_end] = ACTIONS(1827), [sym_identifier] = ACTIONS(1829), [anon_sym_SEMI] = ACTIONS(1827), @@ -72214,9 +72542,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1827), [sym_float_literal] = ACTIONS(1827), }, - [515] = { - [sym_line_comment] = STATE(515), - [sym_block_comment] = STATE(515), + [517] = { + [sym_line_comment] = STATE(517), + [sym_block_comment] = STATE(517), [ts_builtin_sym_end] = ACTIONS(1831), [sym_identifier] = ACTIONS(1833), [anon_sym_SEMI] = ACTIONS(1831), @@ -72295,9 +72623,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1831), [sym_float_literal] = ACTIONS(1831), }, - [516] = { - [sym_line_comment] = STATE(516), - [sym_block_comment] = STATE(516), + [518] = { + [sym_line_comment] = STATE(518), + [sym_block_comment] = STATE(518), [ts_builtin_sym_end] = ACTIONS(1835), [sym_identifier] = ACTIONS(1837), [anon_sym_SEMI] = ACTIONS(1835), @@ -72376,9 +72704,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1835), [sym_float_literal] = ACTIONS(1835), }, - [517] = { - [sym_line_comment] = STATE(517), - [sym_block_comment] = STATE(517), + [519] = { + [sym_line_comment] = STATE(519), + [sym_block_comment] = STATE(519), [ts_builtin_sym_end] = ACTIONS(1839), [sym_identifier] = ACTIONS(1841), [anon_sym_SEMI] = ACTIONS(1839), @@ -72457,9 +72785,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1839), [sym_float_literal] = ACTIONS(1839), }, - [518] = { - [sym_line_comment] = STATE(518), - [sym_block_comment] = STATE(518), + [520] = { + [sym_line_comment] = STATE(520), + [sym_block_comment] = STATE(520), [ts_builtin_sym_end] = ACTIONS(1843), [sym_identifier] = ACTIONS(1845), [anon_sym_SEMI] = ACTIONS(1843), @@ -72538,9 +72866,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1843), [sym_float_literal] = ACTIONS(1843), }, - [519] = { - [sym_line_comment] = STATE(519), - [sym_block_comment] = STATE(519), + [521] = { + [sym_line_comment] = STATE(521), + [sym_block_comment] = STATE(521), [ts_builtin_sym_end] = ACTIONS(1847), [sym_identifier] = ACTIONS(1849), [anon_sym_SEMI] = ACTIONS(1847), @@ -72619,9 +72947,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1847), [sym_float_literal] = ACTIONS(1847), }, - [520] = { - [sym_line_comment] = STATE(520), - [sym_block_comment] = STATE(520), + [522] = { + [sym_line_comment] = STATE(522), + [sym_block_comment] = STATE(522), [ts_builtin_sym_end] = ACTIONS(1851), [sym_identifier] = ACTIONS(1853), [anon_sym_SEMI] = ACTIONS(1851), @@ -72700,9 +73028,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1851), [sym_float_literal] = ACTIONS(1851), }, - [521] = { - [sym_line_comment] = STATE(521), - [sym_block_comment] = STATE(521), + [523] = { + [sym_line_comment] = STATE(523), + [sym_block_comment] = STATE(523), [ts_builtin_sym_end] = ACTIONS(1855), [sym_identifier] = ACTIONS(1857), [anon_sym_SEMI] = ACTIONS(1855), @@ -72781,9 +73109,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1855), [sym_float_literal] = ACTIONS(1855), }, - [522] = { - [sym_line_comment] = STATE(522), - [sym_block_comment] = STATE(522), + [524] = { + [sym_line_comment] = STATE(524), + [sym_block_comment] = STATE(524), [ts_builtin_sym_end] = ACTIONS(1859), [sym_identifier] = ACTIONS(1861), [anon_sym_SEMI] = ACTIONS(1859), @@ -72862,9 +73190,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1859), [sym_float_literal] = ACTIONS(1859), }, - [523] = { - [sym_line_comment] = STATE(523), - [sym_block_comment] = STATE(523), + [525] = { + [sym_line_comment] = STATE(525), + [sym_block_comment] = STATE(525), [ts_builtin_sym_end] = ACTIONS(1863), [sym_identifier] = ACTIONS(1865), [anon_sym_SEMI] = ACTIONS(1863), @@ -72943,9 +73271,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1863), [sym_float_literal] = ACTIONS(1863), }, - [524] = { - [sym_line_comment] = STATE(524), - [sym_block_comment] = STATE(524), + [526] = { + [sym_line_comment] = STATE(526), + [sym_block_comment] = STATE(526), [ts_builtin_sym_end] = ACTIONS(1867), [sym_identifier] = ACTIONS(1869), [anon_sym_SEMI] = ACTIONS(1867), @@ -73024,9 +73352,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1867), [sym_float_literal] = ACTIONS(1867), }, - [525] = { - [sym_line_comment] = STATE(525), - [sym_block_comment] = STATE(525), + [527] = { + [sym_line_comment] = STATE(527), + [sym_block_comment] = STATE(527), [ts_builtin_sym_end] = ACTIONS(1871), [sym_identifier] = ACTIONS(1873), [anon_sym_SEMI] = ACTIONS(1871), @@ -73105,9 +73433,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1871), [sym_float_literal] = ACTIONS(1871), }, - [526] = { - [sym_line_comment] = STATE(526), - [sym_block_comment] = STATE(526), + [528] = { + [sym_line_comment] = STATE(528), + [sym_block_comment] = STATE(528), [ts_builtin_sym_end] = ACTIONS(1875), [sym_identifier] = ACTIONS(1877), [anon_sym_SEMI] = ACTIONS(1875), @@ -73186,9 +73514,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1875), [sym_float_literal] = ACTIONS(1875), }, - [527] = { - [sym_line_comment] = STATE(527), - [sym_block_comment] = STATE(527), + [529] = { + [sym_line_comment] = STATE(529), + [sym_block_comment] = STATE(529), [ts_builtin_sym_end] = ACTIONS(1879), [sym_identifier] = ACTIONS(1881), [anon_sym_SEMI] = ACTIONS(1879), @@ -73267,9 +73595,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1879), [sym_float_literal] = ACTIONS(1879), }, - [528] = { - [sym_line_comment] = STATE(528), - [sym_block_comment] = STATE(528), + [530] = { + [sym_line_comment] = STATE(530), + [sym_block_comment] = STATE(530), [ts_builtin_sym_end] = ACTIONS(1883), [sym_identifier] = ACTIONS(1885), [anon_sym_SEMI] = ACTIONS(1883), @@ -73348,9 +73676,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1883), [sym_float_literal] = ACTIONS(1883), }, - [529] = { - [sym_line_comment] = STATE(529), - [sym_block_comment] = STATE(529), + [531] = { + [sym_line_comment] = STATE(531), + [sym_block_comment] = STATE(531), [ts_builtin_sym_end] = ACTIONS(1887), [sym_identifier] = ACTIONS(1889), [anon_sym_SEMI] = ACTIONS(1887), @@ -73429,9 +73757,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1887), [sym_float_literal] = ACTIONS(1887), }, - [530] = { - [sym_line_comment] = STATE(530), - [sym_block_comment] = STATE(530), + [532] = { + [sym_line_comment] = STATE(532), + [sym_block_comment] = STATE(532), [ts_builtin_sym_end] = ACTIONS(1891), [sym_identifier] = ACTIONS(1893), [anon_sym_SEMI] = ACTIONS(1891), @@ -73510,9 +73838,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1891), [sym_float_literal] = ACTIONS(1891), }, - [531] = { - [sym_line_comment] = STATE(531), - [sym_block_comment] = STATE(531), + [533] = { + [sym_line_comment] = STATE(533), + [sym_block_comment] = STATE(533), [ts_builtin_sym_end] = ACTIONS(1895), [sym_identifier] = ACTIONS(1897), [anon_sym_SEMI] = ACTIONS(1895), @@ -73591,9 +73919,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1895), [sym_float_literal] = ACTIONS(1895), }, - [532] = { - [sym_line_comment] = STATE(532), - [sym_block_comment] = STATE(532), + [534] = { + [sym_line_comment] = STATE(534), + [sym_block_comment] = STATE(534), [ts_builtin_sym_end] = ACTIONS(1899), [sym_identifier] = ACTIONS(1901), [anon_sym_SEMI] = ACTIONS(1899), @@ -73672,9 +74000,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1899), [sym_float_literal] = ACTIONS(1899), }, - [533] = { - [sym_line_comment] = STATE(533), - [sym_block_comment] = STATE(533), + [535] = { + [sym_line_comment] = STATE(535), + [sym_block_comment] = STATE(535), [ts_builtin_sym_end] = ACTIONS(1903), [sym_identifier] = ACTIONS(1905), [anon_sym_SEMI] = ACTIONS(1903), @@ -73753,9 +74081,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1903), [sym_float_literal] = ACTIONS(1903), }, - [534] = { - [sym_line_comment] = STATE(534), - [sym_block_comment] = STATE(534), + [536] = { + [sym_line_comment] = STATE(536), + [sym_block_comment] = STATE(536), [ts_builtin_sym_end] = ACTIONS(1907), [sym_identifier] = ACTIONS(1909), [anon_sym_SEMI] = ACTIONS(1907), @@ -73834,9 +74162,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1907), [sym_float_literal] = ACTIONS(1907), }, - [535] = { - [sym_line_comment] = STATE(535), - [sym_block_comment] = STATE(535), + [537] = { + [sym_line_comment] = STATE(537), + [sym_block_comment] = STATE(537), [ts_builtin_sym_end] = ACTIONS(1911), [sym_identifier] = ACTIONS(1913), [anon_sym_SEMI] = ACTIONS(1911), @@ -73915,9 +74243,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1911), [sym_float_literal] = ACTIONS(1911), }, - [536] = { - [sym_line_comment] = STATE(536), - [sym_block_comment] = STATE(536), + [538] = { + [sym_line_comment] = STATE(538), + [sym_block_comment] = STATE(538), [ts_builtin_sym_end] = ACTIONS(1915), [sym_identifier] = ACTIONS(1917), [anon_sym_SEMI] = ACTIONS(1915), @@ -73996,9 +74324,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1915), [sym_float_literal] = ACTIONS(1915), }, - [537] = { - [sym_line_comment] = STATE(537), - [sym_block_comment] = STATE(537), + [539] = { + [sym_line_comment] = STATE(539), + [sym_block_comment] = STATE(539), [ts_builtin_sym_end] = ACTIONS(1919), [sym_identifier] = ACTIONS(1921), [anon_sym_SEMI] = ACTIONS(1919), @@ -74077,9 +74405,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1919), [sym_float_literal] = ACTIONS(1919), }, - [538] = { - [sym_line_comment] = STATE(538), - [sym_block_comment] = STATE(538), + [540] = { + [sym_line_comment] = STATE(540), + [sym_block_comment] = STATE(540), [ts_builtin_sym_end] = ACTIONS(1923), [sym_identifier] = ACTIONS(1925), [anon_sym_SEMI] = ACTIONS(1923), @@ -74158,9 +74486,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1923), [sym_float_literal] = ACTIONS(1923), }, - [539] = { - [sym_line_comment] = STATE(539), - [sym_block_comment] = STATE(539), + [541] = { + [sym_line_comment] = STATE(541), + [sym_block_comment] = STATE(541), [ts_builtin_sym_end] = ACTIONS(1927), [sym_identifier] = ACTIONS(1929), [anon_sym_SEMI] = ACTIONS(1927), @@ -74239,9 +74567,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1927), [sym_float_literal] = ACTIONS(1927), }, - [540] = { - [sym_line_comment] = STATE(540), - [sym_block_comment] = STATE(540), + [542] = { + [sym_line_comment] = STATE(542), + [sym_block_comment] = STATE(542), [ts_builtin_sym_end] = ACTIONS(1931), [sym_identifier] = ACTIONS(1933), [anon_sym_SEMI] = ACTIONS(1931), @@ -74320,9 +74648,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1931), [sym_float_literal] = ACTIONS(1931), }, - [541] = { - [sym_line_comment] = STATE(541), - [sym_block_comment] = STATE(541), + [543] = { + [sym_line_comment] = STATE(543), + [sym_block_comment] = STATE(543), [ts_builtin_sym_end] = ACTIONS(1935), [sym_identifier] = ACTIONS(1937), [anon_sym_SEMI] = ACTIONS(1935), @@ -74401,9 +74729,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1935), [sym_float_literal] = ACTIONS(1935), }, - [542] = { - [sym_line_comment] = STATE(542), - [sym_block_comment] = STATE(542), + [544] = { + [sym_line_comment] = STATE(544), + [sym_block_comment] = STATE(544), [ts_builtin_sym_end] = ACTIONS(1939), [sym_identifier] = ACTIONS(1941), [anon_sym_SEMI] = ACTIONS(1939), @@ -74482,9 +74810,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1939), [sym_float_literal] = ACTIONS(1939), }, - [543] = { - [sym_line_comment] = STATE(543), - [sym_block_comment] = STATE(543), + [545] = { + [sym_line_comment] = STATE(545), + [sym_block_comment] = STATE(545), [ts_builtin_sym_end] = ACTIONS(1943), [sym_identifier] = ACTIONS(1945), [anon_sym_SEMI] = ACTIONS(1943), @@ -74563,9 +74891,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1943), [sym_float_literal] = ACTIONS(1943), }, - [544] = { - [sym_line_comment] = STATE(544), - [sym_block_comment] = STATE(544), + [546] = { + [sym_line_comment] = STATE(546), + [sym_block_comment] = STATE(546), [ts_builtin_sym_end] = ACTIONS(1947), [sym_identifier] = ACTIONS(1949), [anon_sym_SEMI] = ACTIONS(1947), @@ -74644,9 +74972,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1947), [sym_float_literal] = ACTIONS(1947), }, - [545] = { - [sym_line_comment] = STATE(545), - [sym_block_comment] = STATE(545), + [547] = { + [sym_line_comment] = STATE(547), + [sym_block_comment] = STATE(547), [ts_builtin_sym_end] = ACTIONS(1951), [sym_identifier] = ACTIONS(1953), [anon_sym_SEMI] = ACTIONS(1951), @@ -74725,9 +75053,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1951), [sym_float_literal] = ACTIONS(1951), }, - [546] = { - [sym_line_comment] = STATE(546), - [sym_block_comment] = STATE(546), + [548] = { + [sym_line_comment] = STATE(548), + [sym_block_comment] = STATE(548), [ts_builtin_sym_end] = ACTIONS(1955), [sym_identifier] = ACTIONS(1957), [anon_sym_SEMI] = ACTIONS(1955), @@ -74806,9 +75134,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1955), [sym_float_literal] = ACTIONS(1955), }, - [547] = { - [sym_line_comment] = STATE(547), - [sym_block_comment] = STATE(547), + [549] = { + [sym_line_comment] = STATE(549), + [sym_block_comment] = STATE(549), [ts_builtin_sym_end] = ACTIONS(1959), [sym_identifier] = ACTIONS(1961), [anon_sym_SEMI] = ACTIONS(1959), @@ -74887,9 +75215,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1959), [sym_float_literal] = ACTIONS(1959), }, - [548] = { - [sym_line_comment] = STATE(548), - [sym_block_comment] = STATE(548), + [550] = { + [sym_line_comment] = STATE(550), + [sym_block_comment] = STATE(550), [ts_builtin_sym_end] = ACTIONS(1963), [sym_identifier] = ACTIONS(1965), [anon_sym_SEMI] = ACTIONS(1963), @@ -74968,9 +75296,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1963), [sym_float_literal] = ACTIONS(1963), }, - [549] = { - [sym_line_comment] = STATE(549), - [sym_block_comment] = STATE(549), + [551] = { + [sym_line_comment] = STATE(551), + [sym_block_comment] = STATE(551), [ts_builtin_sym_end] = ACTIONS(1967), [sym_identifier] = ACTIONS(1969), [anon_sym_SEMI] = ACTIONS(1967), @@ -75049,9 +75377,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1967), [sym_float_literal] = ACTIONS(1967), }, - [550] = { - [sym_line_comment] = STATE(550), - [sym_block_comment] = STATE(550), + [552] = { + [sym_line_comment] = STATE(552), + [sym_block_comment] = STATE(552), [ts_builtin_sym_end] = ACTIONS(1971), [sym_identifier] = ACTIONS(1973), [anon_sym_SEMI] = ACTIONS(1971), @@ -75130,9 +75458,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1971), [sym_float_literal] = ACTIONS(1971), }, - [551] = { - [sym_line_comment] = STATE(551), - [sym_block_comment] = STATE(551), + [553] = { + [sym_line_comment] = STATE(553), + [sym_block_comment] = STATE(553), [ts_builtin_sym_end] = ACTIONS(1975), [sym_identifier] = ACTIONS(1977), [anon_sym_SEMI] = ACTIONS(1975), @@ -75211,9 +75539,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1975), [sym_float_literal] = ACTIONS(1975), }, - [552] = { - [sym_line_comment] = STATE(552), - [sym_block_comment] = STATE(552), + [554] = { + [sym_line_comment] = STATE(554), + [sym_block_comment] = STATE(554), [ts_builtin_sym_end] = ACTIONS(1979), [sym_identifier] = ACTIONS(1981), [anon_sym_SEMI] = ACTIONS(1979), @@ -75292,9 +75620,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1979), [sym_float_literal] = ACTIONS(1979), }, - [553] = { - [sym_line_comment] = STATE(553), - [sym_block_comment] = STATE(553), + [555] = { + [sym_line_comment] = STATE(555), + [sym_block_comment] = STATE(555), [ts_builtin_sym_end] = ACTIONS(1983), [sym_identifier] = ACTIONS(1985), [anon_sym_SEMI] = ACTIONS(1983), @@ -75373,9 +75701,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1983), [sym_float_literal] = ACTIONS(1983), }, - [554] = { - [sym_line_comment] = STATE(554), - [sym_block_comment] = STATE(554), + [556] = { + [sym_line_comment] = STATE(556), + [sym_block_comment] = STATE(556), [ts_builtin_sym_end] = ACTIONS(1987), [sym_identifier] = ACTIONS(1989), [anon_sym_SEMI] = ACTIONS(1987), @@ -75454,9 +75782,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1987), [sym_float_literal] = ACTIONS(1987), }, - [555] = { - [sym_line_comment] = STATE(555), - [sym_block_comment] = STATE(555), + [557] = { + [sym_line_comment] = STATE(557), + [sym_block_comment] = STATE(557), [ts_builtin_sym_end] = ACTIONS(1991), [sym_identifier] = ACTIONS(1993), [anon_sym_SEMI] = ACTIONS(1991), @@ -75535,9 +75863,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1991), [sym_float_literal] = ACTIONS(1991), }, - [556] = { - [sym_line_comment] = STATE(556), - [sym_block_comment] = STATE(556), + [558] = { + [sym_line_comment] = STATE(558), + [sym_block_comment] = STATE(558), [ts_builtin_sym_end] = ACTIONS(1995), [sym_identifier] = ACTIONS(1997), [anon_sym_SEMI] = ACTIONS(1995), @@ -75616,9 +75944,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1995), [sym_float_literal] = ACTIONS(1995), }, - [557] = { - [sym_line_comment] = STATE(557), - [sym_block_comment] = STATE(557), + [559] = { + [sym_line_comment] = STATE(559), + [sym_block_comment] = STATE(559), [ts_builtin_sym_end] = ACTIONS(1999), [sym_identifier] = ACTIONS(2001), [anon_sym_SEMI] = ACTIONS(1999), @@ -75697,9 +76025,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1999), [sym_float_literal] = ACTIONS(1999), }, - [558] = { - [sym_line_comment] = STATE(558), - [sym_block_comment] = STATE(558), + [560] = { + [sym_line_comment] = STATE(560), + [sym_block_comment] = STATE(560), [ts_builtin_sym_end] = ACTIONS(2003), [sym_identifier] = ACTIONS(2005), [anon_sym_SEMI] = ACTIONS(2003), @@ -75778,9 +76106,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2003), [sym_float_literal] = ACTIONS(2003), }, - [559] = { - [sym_line_comment] = STATE(559), - [sym_block_comment] = STATE(559), + [561] = { + [sym_line_comment] = STATE(561), + [sym_block_comment] = STATE(561), [ts_builtin_sym_end] = ACTIONS(2007), [sym_identifier] = ACTIONS(2009), [anon_sym_SEMI] = ACTIONS(2007), @@ -75859,9 +76187,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2007), [sym_float_literal] = ACTIONS(2007), }, - [560] = { - [sym_line_comment] = STATE(560), - [sym_block_comment] = STATE(560), + [562] = { + [sym_line_comment] = STATE(562), + [sym_block_comment] = STATE(562), [ts_builtin_sym_end] = ACTIONS(2011), [sym_identifier] = ACTIONS(2013), [anon_sym_SEMI] = ACTIONS(2011), @@ -75940,9 +76268,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2011), [sym_float_literal] = ACTIONS(2011), }, - [561] = { - [sym_line_comment] = STATE(561), - [sym_block_comment] = STATE(561), + [563] = { + [sym_line_comment] = STATE(563), + [sym_block_comment] = STATE(563), [ts_builtin_sym_end] = ACTIONS(2015), [sym_identifier] = ACTIONS(2017), [anon_sym_SEMI] = ACTIONS(2015), @@ -76021,9 +76349,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2015), [sym_float_literal] = ACTIONS(2015), }, - [562] = { - [sym_line_comment] = STATE(562), - [sym_block_comment] = STATE(562), + [564] = { + [sym_line_comment] = STATE(564), + [sym_block_comment] = STATE(564), [ts_builtin_sym_end] = ACTIONS(2019), [sym_identifier] = ACTIONS(2021), [anon_sym_SEMI] = ACTIONS(2019), @@ -76102,9 +76430,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2019), [sym_float_literal] = ACTIONS(2019), }, - [563] = { - [sym_line_comment] = STATE(563), - [sym_block_comment] = STATE(563), + [565] = { + [sym_line_comment] = STATE(565), + [sym_block_comment] = STATE(565), [ts_builtin_sym_end] = ACTIONS(2023), [sym_identifier] = ACTIONS(2025), [anon_sym_SEMI] = ACTIONS(2023), @@ -76183,9 +76511,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2023), [sym_float_literal] = ACTIONS(2023), }, - [564] = { - [sym_line_comment] = STATE(564), - [sym_block_comment] = STATE(564), + [566] = { + [sym_line_comment] = STATE(566), + [sym_block_comment] = STATE(566), [ts_builtin_sym_end] = ACTIONS(2027), [sym_identifier] = ACTIONS(2029), [anon_sym_SEMI] = ACTIONS(2027), @@ -76264,9 +76592,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2027), [sym_float_literal] = ACTIONS(2027), }, - [565] = { - [sym_line_comment] = STATE(565), - [sym_block_comment] = STATE(565), + [567] = { + [sym_line_comment] = STATE(567), + [sym_block_comment] = STATE(567), [ts_builtin_sym_end] = ACTIONS(2031), [sym_identifier] = ACTIONS(2033), [anon_sym_SEMI] = ACTIONS(2031), @@ -76345,9 +76673,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2031), [sym_float_literal] = ACTIONS(2031), }, - [566] = { - [sym_line_comment] = STATE(566), - [sym_block_comment] = STATE(566), + [568] = { + [sym_line_comment] = STATE(568), + [sym_block_comment] = STATE(568), [ts_builtin_sym_end] = ACTIONS(2035), [sym_identifier] = ACTIONS(2037), [anon_sym_SEMI] = ACTIONS(2035), @@ -76426,9 +76754,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2035), [sym_float_literal] = ACTIONS(2035), }, - [567] = { - [sym_line_comment] = STATE(567), - [sym_block_comment] = STATE(567), + [569] = { + [sym_line_comment] = STATE(569), + [sym_block_comment] = STATE(569), [ts_builtin_sym_end] = ACTIONS(2039), [sym_identifier] = ACTIONS(2041), [anon_sym_SEMI] = ACTIONS(2039), @@ -76507,9 +76835,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2039), [sym_float_literal] = ACTIONS(2039), }, - [568] = { - [sym_line_comment] = STATE(568), - [sym_block_comment] = STATE(568), + [570] = { + [sym_line_comment] = STATE(570), + [sym_block_comment] = STATE(570), [ts_builtin_sym_end] = ACTIONS(2043), [sym_identifier] = ACTIONS(2045), [anon_sym_SEMI] = ACTIONS(2043), @@ -76588,9 +76916,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2043), [sym_float_literal] = ACTIONS(2043), }, - [569] = { - [sym_line_comment] = STATE(569), - [sym_block_comment] = STATE(569), + [571] = { + [sym_line_comment] = STATE(571), + [sym_block_comment] = STATE(571), [ts_builtin_sym_end] = ACTIONS(2047), [sym_identifier] = ACTIONS(2049), [anon_sym_SEMI] = ACTIONS(2047), @@ -76669,9 +76997,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2047), [sym_float_literal] = ACTIONS(2047), }, - [570] = { - [sym_line_comment] = STATE(570), - [sym_block_comment] = STATE(570), + [572] = { + [sym_line_comment] = STATE(572), + [sym_block_comment] = STATE(572), [ts_builtin_sym_end] = ACTIONS(2051), [sym_identifier] = ACTIONS(2053), [anon_sym_SEMI] = ACTIONS(2051), @@ -76750,9 +77078,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2051), [sym_float_literal] = ACTIONS(2051), }, - [571] = { - [sym_line_comment] = STATE(571), - [sym_block_comment] = STATE(571), + [573] = { + [sym_line_comment] = STATE(573), + [sym_block_comment] = STATE(573), [ts_builtin_sym_end] = ACTIONS(2055), [sym_identifier] = ACTIONS(2057), [anon_sym_SEMI] = ACTIONS(2055), @@ -76831,9 +77159,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2055), [sym_float_literal] = ACTIONS(2055), }, - [572] = { - [sym_line_comment] = STATE(572), - [sym_block_comment] = STATE(572), + [574] = { + [sym_line_comment] = STATE(574), + [sym_block_comment] = STATE(574), [ts_builtin_sym_end] = ACTIONS(2059), [sym_identifier] = ACTIONS(2061), [anon_sym_SEMI] = ACTIONS(2059), @@ -76912,9 +77240,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2059), [sym_float_literal] = ACTIONS(2059), }, - [573] = { - [sym_line_comment] = STATE(573), - [sym_block_comment] = STATE(573), + [575] = { + [sym_line_comment] = STATE(575), + [sym_block_comment] = STATE(575), [ts_builtin_sym_end] = ACTIONS(2063), [sym_identifier] = ACTIONS(2065), [anon_sym_SEMI] = ACTIONS(2063), @@ -76993,9 +77321,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2063), [sym_float_literal] = ACTIONS(2063), }, - [574] = { - [sym_line_comment] = STATE(574), - [sym_block_comment] = STATE(574), + [576] = { + [sym_line_comment] = STATE(576), + [sym_block_comment] = STATE(576), [ts_builtin_sym_end] = ACTIONS(2067), [sym_identifier] = ACTIONS(2069), [anon_sym_SEMI] = ACTIONS(2067), @@ -77074,9 +77402,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2067), [sym_float_literal] = ACTIONS(2067), }, - [575] = { - [sym_line_comment] = STATE(575), - [sym_block_comment] = STATE(575), + [577] = { + [sym_line_comment] = STATE(577), + [sym_block_comment] = STATE(577), [ts_builtin_sym_end] = ACTIONS(2071), [sym_identifier] = ACTIONS(2073), [anon_sym_SEMI] = ACTIONS(2071), @@ -77155,9 +77483,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2071), [sym_float_literal] = ACTIONS(2071), }, - [576] = { - [sym_line_comment] = STATE(576), - [sym_block_comment] = STATE(576), + [578] = { + [sym_line_comment] = STATE(578), + [sym_block_comment] = STATE(578), [ts_builtin_sym_end] = ACTIONS(2075), [sym_identifier] = ACTIONS(2077), [anon_sym_SEMI] = ACTIONS(2075), @@ -77236,9 +77564,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2075), [sym_float_literal] = ACTIONS(2075), }, - [577] = { - [sym_line_comment] = STATE(577), - [sym_block_comment] = STATE(577), + [579] = { + [sym_line_comment] = STATE(579), + [sym_block_comment] = STATE(579), [ts_builtin_sym_end] = ACTIONS(2079), [sym_identifier] = ACTIONS(2081), [anon_sym_SEMI] = ACTIONS(2079), @@ -77317,9 +77645,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2079), [sym_float_literal] = ACTIONS(2079), }, - [578] = { - [sym_line_comment] = STATE(578), - [sym_block_comment] = STATE(578), + [580] = { + [sym_line_comment] = STATE(580), + [sym_block_comment] = STATE(580), [ts_builtin_sym_end] = ACTIONS(2083), [sym_identifier] = ACTIONS(2085), [anon_sym_SEMI] = ACTIONS(2083), @@ -77398,9 +77726,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2083), [sym_float_literal] = ACTIONS(2083), }, - [579] = { - [sym_line_comment] = STATE(579), - [sym_block_comment] = STATE(579), + [581] = { + [sym_line_comment] = STATE(581), + [sym_block_comment] = STATE(581), [ts_builtin_sym_end] = ACTIONS(2087), [sym_identifier] = ACTIONS(2089), [anon_sym_SEMI] = ACTIONS(2087), @@ -77479,9 +77807,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2087), [sym_float_literal] = ACTIONS(2087), }, - [580] = { - [sym_line_comment] = STATE(580), - [sym_block_comment] = STATE(580), + [582] = { + [sym_line_comment] = STATE(582), + [sym_block_comment] = STATE(582), [ts_builtin_sym_end] = ACTIONS(2091), [sym_identifier] = ACTIONS(2093), [anon_sym_SEMI] = ACTIONS(2091), @@ -77560,9 +77888,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2091), [sym_float_literal] = ACTIONS(2091), }, - [581] = { - [sym_line_comment] = STATE(581), - [sym_block_comment] = STATE(581), + [583] = { + [sym_line_comment] = STATE(583), + [sym_block_comment] = STATE(583), [ts_builtin_sym_end] = ACTIONS(2095), [sym_identifier] = ACTIONS(2097), [anon_sym_SEMI] = ACTIONS(2095), @@ -77641,9 +77969,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2095), [sym_float_literal] = ACTIONS(2095), }, - [582] = { - [sym_line_comment] = STATE(582), - [sym_block_comment] = STATE(582), + [584] = { + [sym_line_comment] = STATE(584), + [sym_block_comment] = STATE(584), [ts_builtin_sym_end] = ACTIONS(2099), [sym_identifier] = ACTIONS(2101), [anon_sym_SEMI] = ACTIONS(2099), @@ -77722,9 +78050,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2099), [sym_float_literal] = ACTIONS(2099), }, - [583] = { - [sym_line_comment] = STATE(583), - [sym_block_comment] = STATE(583), + [585] = { + [sym_line_comment] = STATE(585), + [sym_block_comment] = STATE(585), [ts_builtin_sym_end] = ACTIONS(2103), [sym_identifier] = ACTIONS(2105), [anon_sym_SEMI] = ACTIONS(2103), @@ -77803,9 +78131,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2103), [sym_float_literal] = ACTIONS(2103), }, - [584] = { - [sym_line_comment] = STATE(584), - [sym_block_comment] = STATE(584), + [586] = { + [sym_line_comment] = STATE(586), + [sym_block_comment] = STATE(586), + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_identifier] = ACTIONS(1351), + [anon_sym_SEMI] = ACTIONS(1349), + [anon_sym_macro_rules_BANG] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1349), + [anon_sym_RBRACE] = ACTIONS(1349), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_u8] = ACTIONS(1351), + [anon_sym_i8] = ACTIONS(1351), + [anon_sym_u16] = ACTIONS(1351), + [anon_sym_i16] = ACTIONS(1351), + [anon_sym_u32] = ACTIONS(1351), + [anon_sym_i32] = ACTIONS(1351), + [anon_sym_u64] = ACTIONS(1351), + [anon_sym_i64] = ACTIONS(1351), + [anon_sym_u128] = ACTIONS(1351), + [anon_sym_i128] = ACTIONS(1351), + [anon_sym_isize] = ACTIONS(1351), + [anon_sym_usize] = ACTIONS(1351), + [anon_sym_f32] = ACTIONS(1351), + [anon_sym_f64] = ACTIONS(1351), + [anon_sym_bool] = ACTIONS(1351), + [anon_sym_str] = ACTIONS(1351), + [anon_sym_char] = ACTIONS(1351), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_PIPE] = ACTIONS(1349), + [anon_sym_LT] = ACTIONS(1349), + [anon_sym_DOT_DOT] = ACTIONS(1349), + [anon_sym_COLON_COLON] = ACTIONS(1349), + [anon_sym_POUND] = ACTIONS(1349), + [anon_sym_SQUOTE] = ACTIONS(1351), + [anon_sym_async] = ACTIONS(1351), + [anon_sym_break] = ACTIONS(1351), + [anon_sym_const] = ACTIONS(1351), + [anon_sym_continue] = ACTIONS(1351), + [anon_sym_default] = ACTIONS(1351), + [anon_sym_enum] = ACTIONS(1351), + [anon_sym_fn] = ACTIONS(1351), + [anon_sym_for] = ACTIONS(1351), + [anon_sym_gen] = ACTIONS(1351), + [anon_sym_if] = ACTIONS(1351), + [anon_sym_impl] = ACTIONS(1351), + [anon_sym_let] = ACTIONS(1351), + [anon_sym_loop] = ACTIONS(1351), + [anon_sym_match] = ACTIONS(1351), + [anon_sym_mod] = ACTIONS(1351), + [anon_sym_pub] = ACTIONS(1351), + [anon_sym_return] = ACTIONS(1351), + [anon_sym_static] = ACTIONS(1351), + [anon_sym_struct] = ACTIONS(1351), + [anon_sym_trait] = ACTIONS(1351), + [anon_sym_type] = ACTIONS(1351), + [anon_sym_union] = ACTIONS(1351), + [anon_sym_unsafe] = ACTIONS(1351), + [anon_sym_use] = ACTIONS(1351), + [anon_sym_while] = ACTIONS(1351), + [anon_sym_extern] = ACTIONS(1351), + [anon_sym_yield] = ACTIONS(1351), + [anon_sym_move] = ACTIONS(1351), + [anon_sym_try] = ACTIONS(1351), + [sym_integer_literal] = ACTIONS(1349), + [aux_sym_string_literal_token1] = ACTIONS(1349), + [sym_char_literal] = ACTIONS(1349), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1351), + [sym_super] = ACTIONS(1351), + [sym_crate] = ACTIONS(1351), + [sym_metavariable] = ACTIONS(1349), + [sym__raw_string_literal_start] = ACTIONS(1349), + [sym_float_literal] = ACTIONS(1349), + }, + [587] = { + [sym_line_comment] = STATE(587), + [sym_block_comment] = STATE(587), [ts_builtin_sym_end] = ACTIONS(2107), [sym_identifier] = ACTIONS(2109), [anon_sym_SEMI] = ACTIONS(2107), @@ -77884,9 +78293,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2107), [sym_float_literal] = ACTIONS(2107), }, - [585] = { - [sym_line_comment] = STATE(585), - [sym_block_comment] = STATE(585), + [588] = { + [sym_line_comment] = STATE(588), + [sym_block_comment] = STATE(588), [ts_builtin_sym_end] = ACTIONS(2111), [sym_identifier] = ACTIONS(2113), [anon_sym_SEMI] = ACTIONS(2111), @@ -77965,9 +78374,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2111), [sym_float_literal] = ACTIONS(2111), }, - [586] = { - [sym_line_comment] = STATE(586), - [sym_block_comment] = STATE(586), + [589] = { + [sym_line_comment] = STATE(589), + [sym_block_comment] = STATE(589), [ts_builtin_sym_end] = ACTIONS(2115), [sym_identifier] = ACTIONS(2117), [anon_sym_SEMI] = ACTIONS(2115), @@ -78046,9 +78455,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2115), [sym_float_literal] = ACTIONS(2115), }, - [587] = { - [sym_line_comment] = STATE(587), - [sym_block_comment] = STATE(587), + [590] = { + [sym_line_comment] = STATE(590), + [sym_block_comment] = STATE(590), [ts_builtin_sym_end] = ACTIONS(2119), [sym_identifier] = ACTIONS(2121), [anon_sym_SEMI] = ACTIONS(2119), @@ -78127,9 +78536,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2119), [sym_float_literal] = ACTIONS(2119), }, - [588] = { - [sym_line_comment] = STATE(588), - [sym_block_comment] = STATE(588), + [591] = { + [sym_line_comment] = STATE(591), + [sym_block_comment] = STATE(591), [ts_builtin_sym_end] = ACTIONS(2123), [sym_identifier] = ACTIONS(2125), [anon_sym_SEMI] = ACTIONS(2123), @@ -78208,9 +78617,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2123), [sym_float_literal] = ACTIONS(2123), }, - [589] = { - [sym_line_comment] = STATE(589), - [sym_block_comment] = STATE(589), + [592] = { + [sym_line_comment] = STATE(592), + [sym_block_comment] = STATE(592), [ts_builtin_sym_end] = ACTIONS(2127), [sym_identifier] = ACTIONS(2129), [anon_sym_SEMI] = ACTIONS(2127), @@ -78289,9 +78698,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2127), [sym_float_literal] = ACTIONS(2127), }, - [590] = { - [sym_line_comment] = STATE(590), - [sym_block_comment] = STATE(590), + [593] = { + [sym_line_comment] = STATE(593), + [sym_block_comment] = STATE(593), [ts_builtin_sym_end] = ACTIONS(2131), [sym_identifier] = ACTIONS(2133), [anon_sym_SEMI] = ACTIONS(2131), @@ -78370,9 +78779,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2131), [sym_float_literal] = ACTIONS(2131), }, - [591] = { - [sym_line_comment] = STATE(591), - [sym_block_comment] = STATE(591), + [594] = { + [sym_line_comment] = STATE(594), + [sym_block_comment] = STATE(594), [ts_builtin_sym_end] = ACTIONS(2135), [sym_identifier] = ACTIONS(2137), [anon_sym_SEMI] = ACTIONS(2135), @@ -78451,9 +78860,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2135), [sym_float_literal] = ACTIONS(2135), }, - [592] = { - [sym_line_comment] = STATE(592), - [sym_block_comment] = STATE(592), + [595] = { + [sym_line_comment] = STATE(595), + [sym_block_comment] = STATE(595), [ts_builtin_sym_end] = ACTIONS(2139), [sym_identifier] = ACTIONS(2141), [anon_sym_SEMI] = ACTIONS(2139), @@ -78532,9 +78941,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2139), [sym_float_literal] = ACTIONS(2139), }, - [593] = { - [sym_line_comment] = STATE(593), - [sym_block_comment] = STATE(593), + [596] = { + [sym_line_comment] = STATE(596), + [sym_block_comment] = STATE(596), [ts_builtin_sym_end] = ACTIONS(2143), [sym_identifier] = ACTIONS(2145), [anon_sym_SEMI] = ACTIONS(2143), @@ -78613,9 +79022,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2143), [sym_float_literal] = ACTIONS(2143), }, - [594] = { - [sym_line_comment] = STATE(594), - [sym_block_comment] = STATE(594), + [597] = { + [sym_attribute_item] = STATE(1485), + [sym_inner_attribute_item] = STATE(1485), + [sym_bracketed_type] = STATE(3551), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3283), + [sym_macro_invocation] = STATE(2882), + [sym_scoped_identifier] = STATE(2161), + [sym_scoped_type_identifier] = STATE(2974), + [sym_match_arm] = STATE(1492), + [sym_last_match_arm] = STATE(3499), + [sym_match_pattern] = STATE(3417), + [sym_const_block] = STATE(2882), + [sym__pattern] = STATE(2763), + [sym_tuple_pattern] = STATE(2882), + [sym_slice_pattern] = STATE(2882), + [sym_tuple_struct_pattern] = STATE(2882), + [sym_struct_pattern] = STATE(2882), + [sym_remaining_field_pattern] = STATE(2882), + [sym_mut_pattern] = STATE(2882), + [sym_range_pattern] = STATE(2882), + [sym_ref_pattern] = STATE(2882), + [sym_captured_pattern] = STATE(2882), + [sym_reference_pattern] = STATE(2882), + [sym_or_pattern] = STATE(2882), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2305), + [sym_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_boolean_literal] = STATE(2305), + [sym_line_comment] = STATE(597), + [sym_block_comment] = STATE(597), + [aux_sym_match_block_repeat1] = STATE(758), + [aux_sym_match_arm_repeat1] = STATE(766), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(1641), + [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_DASH] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1657), + [anon_sym_POUND] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1663), + [anon_sym_union] = ACTIONS(1663), + [anon_sym_ref] = ACTIONS(1665), + [sym_mutable_specifier] = ACTIONS(1667), + [sym_integer_literal] = ACTIONS(1669), + [aux_sym_string_literal_token1] = ACTIONS(1671), + [sym_char_literal] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1675), + [sym_super] = ACTIONS(1675), + [sym_crate] = ACTIONS(1675), + [sym_metavariable] = ACTIONS(1677), + [sym__raw_string_literal_start] = ACTIONS(1679), + [sym_float_literal] = ACTIONS(1669), + }, + [598] = { + [sym_line_comment] = STATE(598), + [sym_block_comment] = STATE(598), [ts_builtin_sym_end] = ACTIONS(2147), [sym_identifier] = ACTIONS(2149), [anon_sym_SEMI] = ACTIONS(2147), @@ -78694,9 +79184,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2147), [sym_float_literal] = ACTIONS(2147), }, - [595] = { - [sym_line_comment] = STATE(595), - [sym_block_comment] = STATE(595), + [599] = { + [sym_line_comment] = STATE(599), + [sym_block_comment] = STATE(599), [ts_builtin_sym_end] = ACTIONS(2151), [sym_identifier] = ACTIONS(2153), [anon_sym_SEMI] = ACTIONS(2151), @@ -78775,9 +79265,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2151), [sym_float_literal] = ACTIONS(2151), }, - [596] = { - [sym_line_comment] = STATE(596), - [sym_block_comment] = STATE(596), + [600] = { + [sym_line_comment] = STATE(600), + [sym_block_comment] = STATE(600), [ts_builtin_sym_end] = ACTIONS(2155), [sym_identifier] = ACTIONS(2157), [anon_sym_SEMI] = ACTIONS(2155), @@ -78856,9 +79346,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2155), [sym_float_literal] = ACTIONS(2155), }, - [597] = { - [sym_line_comment] = STATE(597), - [sym_block_comment] = STATE(597), + [601] = { + [sym_line_comment] = STATE(601), + [sym_block_comment] = STATE(601), [ts_builtin_sym_end] = ACTIONS(2159), [sym_identifier] = ACTIONS(2161), [anon_sym_SEMI] = ACTIONS(2159), @@ -78937,9 +79427,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2159), [sym_float_literal] = ACTIONS(2159), }, - [598] = { - [sym_line_comment] = STATE(598), - [sym_block_comment] = STATE(598), + [602] = { + [sym_line_comment] = STATE(602), + [sym_block_comment] = STATE(602), [ts_builtin_sym_end] = ACTIONS(2163), [sym_identifier] = ACTIONS(2165), [anon_sym_SEMI] = ACTIONS(2163), @@ -79018,9 +79508,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2163), [sym_float_literal] = ACTIONS(2163), }, - [599] = { - [sym_line_comment] = STATE(599), - [sym_block_comment] = STATE(599), + [603] = { + [sym_line_comment] = STATE(603), + [sym_block_comment] = STATE(603), [ts_builtin_sym_end] = ACTIONS(2167), [sym_identifier] = ACTIONS(2169), [anon_sym_SEMI] = ACTIONS(2167), @@ -79099,9 +79589,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2167), [sym_float_literal] = ACTIONS(2167), }, - [600] = { - [sym_line_comment] = STATE(600), - [sym_block_comment] = STATE(600), + [604] = { + [sym_line_comment] = STATE(604), + [sym_block_comment] = STATE(604), [ts_builtin_sym_end] = ACTIONS(2171), [sym_identifier] = ACTIONS(2173), [anon_sym_SEMI] = ACTIONS(2171), @@ -79180,9 +79670,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2171), [sym_float_literal] = ACTIONS(2171), }, - [601] = { - [sym_line_comment] = STATE(601), - [sym_block_comment] = STATE(601), + [605] = { + [sym_line_comment] = STATE(605), + [sym_block_comment] = STATE(605), [ts_builtin_sym_end] = ACTIONS(2175), [sym_identifier] = ACTIONS(2177), [anon_sym_SEMI] = ACTIONS(2175), @@ -79261,9 +79751,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2175), [sym_float_literal] = ACTIONS(2175), }, - [602] = { - [sym_line_comment] = STATE(602), - [sym_block_comment] = STATE(602), + [606] = { + [sym_line_comment] = STATE(606), + [sym_block_comment] = STATE(606), [ts_builtin_sym_end] = ACTIONS(2179), [sym_identifier] = ACTIONS(2181), [anon_sym_SEMI] = ACTIONS(2179), @@ -79342,9 +79832,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2179), [sym_float_literal] = ACTIONS(2179), }, - [603] = { - [sym_line_comment] = STATE(603), - [sym_block_comment] = STATE(603), + [607] = { + [sym_line_comment] = STATE(607), + [sym_block_comment] = STATE(607), [ts_builtin_sym_end] = ACTIONS(2183), [sym_identifier] = ACTIONS(2185), [anon_sym_SEMI] = ACTIONS(2183), @@ -79423,9 +79913,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2183), [sym_float_literal] = ACTIONS(2183), }, - [604] = { - [sym_line_comment] = STATE(604), - [sym_block_comment] = STATE(604), + [608] = { + [sym_line_comment] = STATE(608), + [sym_block_comment] = STATE(608), [ts_builtin_sym_end] = ACTIONS(2187), [sym_identifier] = ACTIONS(2189), [anon_sym_SEMI] = ACTIONS(2187), @@ -79504,9 +79994,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2187), [sym_float_literal] = ACTIONS(2187), }, - [605] = { - [sym_line_comment] = STATE(605), - [sym_block_comment] = STATE(605), + [609] = { + [sym_line_comment] = STATE(609), + [sym_block_comment] = STATE(609), [ts_builtin_sym_end] = ACTIONS(2191), [sym_identifier] = ACTIONS(2193), [anon_sym_SEMI] = ACTIONS(2191), @@ -79585,9 +80075,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2191), [sym_float_literal] = ACTIONS(2191), }, - [606] = { - [sym_line_comment] = STATE(606), - [sym_block_comment] = STATE(606), + [610] = { + [sym_line_comment] = STATE(610), + [sym_block_comment] = STATE(610), [ts_builtin_sym_end] = ACTIONS(2195), [sym_identifier] = ACTIONS(2197), [anon_sym_SEMI] = ACTIONS(2195), @@ -79666,9 +80156,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2195), [sym_float_literal] = ACTIONS(2195), }, - [607] = { - [sym_line_comment] = STATE(607), - [sym_block_comment] = STATE(607), + [611] = { + [sym_line_comment] = STATE(611), + [sym_block_comment] = STATE(611), [ts_builtin_sym_end] = ACTIONS(2199), [sym_identifier] = ACTIONS(2201), [anon_sym_SEMI] = ACTIONS(2199), @@ -79747,9 +80237,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2199), [sym_float_literal] = ACTIONS(2199), }, - [608] = { - [sym_line_comment] = STATE(608), - [sym_block_comment] = STATE(608), + [612] = { + [sym_line_comment] = STATE(612), + [sym_block_comment] = STATE(612), [ts_builtin_sym_end] = ACTIONS(2203), [sym_identifier] = ACTIONS(2205), [anon_sym_SEMI] = ACTIONS(2203), @@ -79828,9 +80318,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2203), [sym_float_literal] = ACTIONS(2203), }, - [609] = { - [sym_line_comment] = STATE(609), - [sym_block_comment] = STATE(609), + [613] = { + [sym_line_comment] = STATE(613), + [sym_block_comment] = STATE(613), [ts_builtin_sym_end] = ACTIONS(2207), [sym_identifier] = ACTIONS(2209), [anon_sym_SEMI] = ACTIONS(2207), @@ -79909,9 +80399,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2207), [sym_float_literal] = ACTIONS(2207), }, - [610] = { - [sym_line_comment] = STATE(610), - [sym_block_comment] = STATE(610), + [614] = { + [sym_line_comment] = STATE(614), + [sym_block_comment] = STATE(614), [ts_builtin_sym_end] = ACTIONS(2211), [sym_identifier] = ACTIONS(2213), [anon_sym_SEMI] = ACTIONS(2211), @@ -79990,9 +80480,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2211), [sym_float_literal] = ACTIONS(2211), }, - [611] = { - [sym_line_comment] = STATE(611), - [sym_block_comment] = STATE(611), + [615] = { + [sym_line_comment] = STATE(615), + [sym_block_comment] = STATE(615), [ts_builtin_sym_end] = ACTIONS(2215), [sym_identifier] = ACTIONS(2217), [anon_sym_SEMI] = ACTIONS(2215), @@ -80071,9 +80561,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2215), [sym_float_literal] = ACTIONS(2215), }, - [612] = { - [sym_line_comment] = STATE(612), - [sym_block_comment] = STATE(612), + [616] = { + [sym_line_comment] = STATE(616), + [sym_block_comment] = STATE(616), [ts_builtin_sym_end] = ACTIONS(2219), [sym_identifier] = ACTIONS(2221), [anon_sym_SEMI] = ACTIONS(2219), @@ -80152,90 +80642,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2219), [sym_float_literal] = ACTIONS(2219), }, - [613] = { - [sym_attribute_item] = STATE(1486), - [sym_inner_attribute_item] = STATE(1486), - [sym_bracketed_type] = STATE(3540), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3274), - [sym_macro_invocation] = STATE(3031), - [sym_scoped_identifier] = STATE(2153), - [sym_scoped_type_identifier] = STATE(2935), - [sym_match_arm] = STATE(1487), - [sym_last_match_arm] = STATE(3493), - [sym_match_pattern] = STATE(3402), - [sym_const_block] = STATE(3031), - [sym__pattern] = STATE(3016), - [sym_tuple_pattern] = STATE(3031), - [sym_slice_pattern] = STATE(3031), - [sym_tuple_struct_pattern] = STATE(3031), - [sym_struct_pattern] = STATE(3031), - [sym_remaining_field_pattern] = STATE(3031), - [sym_mut_pattern] = STATE(3031), - [sym_range_pattern] = STATE(3031), - [sym_ref_pattern] = STATE(3031), - [sym_captured_pattern] = STATE(3031), - [sym_reference_pattern] = STATE(3031), - [sym_or_pattern] = STATE(3031), - [sym__literal_pattern] = STATE(2307), - [sym_negative_literal] = STATE(2311), - [sym_string_literal] = STATE(2311), - [sym_raw_string_literal] = STATE(2311), - [sym_boolean_literal] = STATE(2311), - [sym_line_comment] = STATE(613), - [sym_block_comment] = STATE(613), - [aux_sym_match_block_repeat1] = STATE(753), - [aux_sym_match_arm_repeat1] = STATE(761), - [sym_identifier] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1637), - [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_DASH] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_COLON_COLON] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_ref] = ACTIONS(1661), - [sym_mutable_specifier] = ACTIONS(1663), - [sym_integer_literal] = ACTIONS(1665), - [aux_sym_string_literal_token1] = ACTIONS(1667), - [sym_char_literal] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1671), - [sym_super] = ACTIONS(1671), - [sym_crate] = ACTIONS(1671), - [sym_metavariable] = ACTIONS(1673), - [sym__raw_string_literal_start] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(1665), - }, - [614] = { - [sym_line_comment] = STATE(614), - [sym_block_comment] = STATE(614), + [617] = { + [sym_line_comment] = STATE(617), + [sym_block_comment] = STATE(617), [ts_builtin_sym_end] = ACTIONS(2223), [sym_identifier] = ACTIONS(2225), [anon_sym_SEMI] = ACTIONS(2223), @@ -80314,9 +80723,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2223), [sym_float_literal] = ACTIONS(2223), }, - [615] = { - [sym_line_comment] = STATE(615), - [sym_block_comment] = STATE(615), + [618] = { + [sym_line_comment] = STATE(618), + [sym_block_comment] = STATE(618), [ts_builtin_sym_end] = ACTIONS(2227), [sym_identifier] = ACTIONS(2229), [anon_sym_SEMI] = ACTIONS(2227), @@ -80395,9 +80804,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2227), [sym_float_literal] = ACTIONS(2227), }, - [616] = { - [sym_line_comment] = STATE(616), - [sym_block_comment] = STATE(616), + [619] = { + [sym_line_comment] = STATE(619), + [sym_block_comment] = STATE(619), [ts_builtin_sym_end] = ACTIONS(2231), [sym_identifier] = ACTIONS(2233), [anon_sym_SEMI] = ACTIONS(2231), @@ -80476,9 +80885,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2231), [sym_float_literal] = ACTIONS(2231), }, - [617] = { - [sym_line_comment] = STATE(617), - [sym_block_comment] = STATE(617), + [620] = { + [sym_line_comment] = STATE(620), + [sym_block_comment] = STATE(620), [ts_builtin_sym_end] = ACTIONS(2235), [sym_identifier] = ACTIONS(2237), [anon_sym_SEMI] = ACTIONS(2235), @@ -80557,9 +80966,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2235), [sym_float_literal] = ACTIONS(2235), }, - [618] = { - [sym_line_comment] = STATE(618), - [sym_block_comment] = STATE(618), + [621] = { + [sym_line_comment] = STATE(621), + [sym_block_comment] = STATE(621), [ts_builtin_sym_end] = ACTIONS(2239), [sym_identifier] = ACTIONS(2241), [anon_sym_SEMI] = ACTIONS(2239), @@ -80638,9 +81047,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2239), [sym_float_literal] = ACTIONS(2239), }, - [619] = { - [sym_line_comment] = STATE(619), - [sym_block_comment] = STATE(619), + [622] = { + [sym_line_comment] = STATE(622), + [sym_block_comment] = STATE(622), [ts_builtin_sym_end] = ACTIONS(2243), [sym_identifier] = ACTIONS(2245), [anon_sym_SEMI] = ACTIONS(2243), @@ -80719,9 +81128,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2243), [sym_float_literal] = ACTIONS(2243), }, - [620] = { - [sym_line_comment] = STATE(620), - [sym_block_comment] = STATE(620), + [623] = { + [sym_line_comment] = STATE(623), + [sym_block_comment] = STATE(623), [ts_builtin_sym_end] = ACTIONS(2247), [sym_identifier] = ACTIONS(2249), [anon_sym_SEMI] = ACTIONS(2247), @@ -80800,9 +81209,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2247), [sym_float_literal] = ACTIONS(2247), }, - [621] = { - [sym_line_comment] = STATE(621), - [sym_block_comment] = STATE(621), + [624] = { + [sym_line_comment] = STATE(624), + [sym_block_comment] = STATE(624), [ts_builtin_sym_end] = ACTIONS(2251), [sym_identifier] = ACTIONS(2253), [anon_sym_SEMI] = ACTIONS(2251), @@ -80881,9 +81290,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2251), [sym_float_literal] = ACTIONS(2251), }, - [622] = { - [sym_line_comment] = STATE(622), - [sym_block_comment] = STATE(622), + [625] = { + [sym_line_comment] = STATE(625), + [sym_block_comment] = STATE(625), [ts_builtin_sym_end] = ACTIONS(2255), [sym_identifier] = ACTIONS(2257), [anon_sym_SEMI] = ACTIONS(2255), @@ -80962,9 +81371,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2255), [sym_float_literal] = ACTIONS(2255), }, - [623] = { - [sym_line_comment] = STATE(623), - [sym_block_comment] = STATE(623), + [626] = { + [sym_line_comment] = STATE(626), + [sym_block_comment] = STATE(626), [ts_builtin_sym_end] = ACTIONS(2259), [sym_identifier] = ACTIONS(2261), [anon_sym_SEMI] = ACTIONS(2259), @@ -81043,9 +81452,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2259), [sym_float_literal] = ACTIONS(2259), }, - [624] = { - [sym_line_comment] = STATE(624), - [sym_block_comment] = STATE(624), + [627] = { + [sym_line_comment] = STATE(627), + [sym_block_comment] = STATE(627), [ts_builtin_sym_end] = ACTIONS(2263), [sym_identifier] = ACTIONS(2265), [anon_sym_SEMI] = ACTIONS(2263), @@ -81124,9 +81533,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2263), [sym_float_literal] = ACTIONS(2263), }, - [625] = { - [sym_line_comment] = STATE(625), - [sym_block_comment] = STATE(625), + [628] = { + [sym_line_comment] = STATE(628), + [sym_block_comment] = STATE(628), [ts_builtin_sym_end] = ACTIONS(2267), [sym_identifier] = ACTIONS(2269), [anon_sym_SEMI] = ACTIONS(2267), @@ -81205,9 +81614,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2267), [sym_float_literal] = ACTIONS(2267), }, - [626] = { - [sym_line_comment] = STATE(626), - [sym_block_comment] = STATE(626), + [629] = { + [sym_line_comment] = STATE(629), + [sym_block_comment] = STATE(629), [ts_builtin_sym_end] = ACTIONS(2271), [sym_identifier] = ACTIONS(2273), [anon_sym_SEMI] = ACTIONS(2271), @@ -81286,9 +81695,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2271), [sym_float_literal] = ACTIONS(2271), }, - [627] = { - [sym_line_comment] = STATE(627), - [sym_block_comment] = STATE(627), + [630] = { + [sym_line_comment] = STATE(630), + [sym_block_comment] = STATE(630), [ts_builtin_sym_end] = ACTIONS(2275), [sym_identifier] = ACTIONS(2277), [anon_sym_SEMI] = ACTIONS(2275), @@ -81367,9 +81776,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2275), [sym_float_literal] = ACTIONS(2275), }, - [628] = { - [sym_line_comment] = STATE(628), - [sym_block_comment] = STATE(628), + [631] = { + [sym_line_comment] = STATE(631), + [sym_block_comment] = STATE(631), [ts_builtin_sym_end] = ACTIONS(2279), [sym_identifier] = ACTIONS(2281), [anon_sym_SEMI] = ACTIONS(2279), @@ -81448,9 +81857,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2279), [sym_float_literal] = ACTIONS(2279), }, - [629] = { - [sym_line_comment] = STATE(629), - [sym_block_comment] = STATE(629), + [632] = { + [sym_line_comment] = STATE(632), + [sym_block_comment] = STATE(632), + [ts_builtin_sym_end] = ACTIONS(1261), + [sym_identifier] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_macro_rules_BANG] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_u8] = ACTIONS(1263), + [anon_sym_i8] = ACTIONS(1263), + [anon_sym_u16] = ACTIONS(1263), + [anon_sym_i16] = ACTIONS(1263), + [anon_sym_u32] = ACTIONS(1263), + [anon_sym_i32] = ACTIONS(1263), + [anon_sym_u64] = ACTIONS(1263), + [anon_sym_i64] = ACTIONS(1263), + [anon_sym_u128] = ACTIONS(1263), + [anon_sym_i128] = ACTIONS(1263), + [anon_sym_isize] = ACTIONS(1263), + [anon_sym_usize] = ACTIONS(1263), + [anon_sym_f32] = ACTIONS(1263), + [anon_sym_f64] = ACTIONS(1263), + [anon_sym_bool] = ACTIONS(1263), + [anon_sym_str] = ACTIONS(1263), + [anon_sym_char] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1261), + [anon_sym_LT] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1261), + [anon_sym_COLON_COLON] = ACTIONS(1261), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_continue] = ACTIONS(1263), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_enum] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1263), + [anon_sym_for] = ACTIONS(1263), + [anon_sym_gen] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_impl] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1263), + [anon_sym_loop] = ACTIONS(1263), + [anon_sym_match] = ACTIONS(1263), + [anon_sym_mod] = ACTIONS(1263), + [anon_sym_pub] = ACTIONS(1263), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_struct] = ACTIONS(1263), + [anon_sym_trait] = ACTIONS(1263), + [anon_sym_type] = ACTIONS(1263), + [anon_sym_union] = ACTIONS(1263), + [anon_sym_unsafe] = ACTIONS(1263), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym_yield] = ACTIONS(1263), + [anon_sym_move] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1263), + [sym_integer_literal] = ACTIONS(1261), + [aux_sym_string_literal_token1] = ACTIONS(1261), + [sym_char_literal] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1263), + [sym_crate] = ACTIONS(1263), + [sym_metavariable] = ACTIONS(1261), + [sym__raw_string_literal_start] = ACTIONS(1261), + [sym_float_literal] = ACTIONS(1261), + }, + [633] = { + [sym_line_comment] = STATE(633), + [sym_block_comment] = STATE(633), [ts_builtin_sym_end] = ACTIONS(2283), [sym_identifier] = ACTIONS(2285), [anon_sym_SEMI] = ACTIONS(2283), @@ -81529,9 +82019,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2283), [sym_float_literal] = ACTIONS(2283), }, - [630] = { - [sym_line_comment] = STATE(630), - [sym_block_comment] = STATE(630), + [634] = { + [sym_line_comment] = STATE(634), + [sym_block_comment] = STATE(634), [ts_builtin_sym_end] = ACTIONS(2287), [sym_identifier] = ACTIONS(2289), [anon_sym_SEMI] = ACTIONS(2287), @@ -81610,9 +82100,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2287), [sym_float_literal] = ACTIONS(2287), }, - [631] = { - [sym_line_comment] = STATE(631), - [sym_block_comment] = STATE(631), + [635] = { + [sym_line_comment] = STATE(635), + [sym_block_comment] = STATE(635), [ts_builtin_sym_end] = ACTIONS(2291), [sym_identifier] = ACTIONS(2293), [anon_sym_SEMI] = ACTIONS(2291), @@ -81691,9 +82181,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2291), [sym_float_literal] = ACTIONS(2291), }, - [632] = { - [sym_line_comment] = STATE(632), - [sym_block_comment] = STATE(632), + [636] = { + [sym_line_comment] = STATE(636), + [sym_block_comment] = STATE(636), [ts_builtin_sym_end] = ACTIONS(2295), [sym_identifier] = ACTIONS(2297), [anon_sym_SEMI] = ACTIONS(2295), @@ -81772,9 +82262,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2295), [sym_float_literal] = ACTIONS(2295), }, - [633] = { - [sym_line_comment] = STATE(633), - [sym_block_comment] = STATE(633), + [637] = { + [sym_line_comment] = STATE(637), + [sym_block_comment] = STATE(637), [ts_builtin_sym_end] = ACTIONS(2299), [sym_identifier] = ACTIONS(2301), [anon_sym_SEMI] = ACTIONS(2299), @@ -81853,90 +82343,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2299), [sym_float_literal] = ACTIONS(2299), }, - [634] = { - [sym_line_comment] = STATE(634), - [sym_block_comment] = STATE(634), - [ts_builtin_sym_end] = ACTIONS(1261), - [sym_identifier] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1261), - [anon_sym_macro_rules_BANG] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1261), - [anon_sym_RBRACE] = ACTIONS(1261), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_u8] = ACTIONS(1263), - [anon_sym_i8] = ACTIONS(1263), - [anon_sym_u16] = ACTIONS(1263), - [anon_sym_i16] = ACTIONS(1263), - [anon_sym_u32] = ACTIONS(1263), - [anon_sym_i32] = ACTIONS(1263), - [anon_sym_u64] = ACTIONS(1263), - [anon_sym_i64] = ACTIONS(1263), - [anon_sym_u128] = ACTIONS(1263), - [anon_sym_i128] = ACTIONS(1263), - [anon_sym_isize] = ACTIONS(1263), - [anon_sym_usize] = ACTIONS(1263), - [anon_sym_f32] = ACTIONS(1263), - [anon_sym_f64] = ACTIONS(1263), - [anon_sym_bool] = ACTIONS(1263), - [anon_sym_str] = ACTIONS(1263), - [anon_sym_char] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_PIPE] = ACTIONS(1261), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_DOT_DOT] = ACTIONS(1261), - [anon_sym_COLON_COLON] = ACTIONS(1261), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_default] = ACTIONS(1263), - [anon_sym_enum] = ACTIONS(1263), - [anon_sym_fn] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_gen] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_impl] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_pub] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_static] = ACTIONS(1263), - [anon_sym_struct] = ACTIONS(1263), - [anon_sym_trait] = ACTIONS(1263), - [anon_sym_type] = ACTIONS(1263), - [anon_sym_union] = ACTIONS(1263), - [anon_sym_unsafe] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_yield] = ACTIONS(1263), - [anon_sym_move] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [sym_integer_literal] = ACTIONS(1261), - [aux_sym_string_literal_token1] = ACTIONS(1261), - [sym_char_literal] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1263), - [sym_crate] = ACTIONS(1263), - [sym_metavariable] = ACTIONS(1261), - [sym__raw_string_literal_start] = ACTIONS(1261), - [sym_float_literal] = ACTIONS(1261), - }, - [635] = { - [sym_line_comment] = STATE(635), - [sym_block_comment] = STATE(635), + [638] = { + [sym_line_comment] = STATE(638), + [sym_block_comment] = STATE(638), [ts_builtin_sym_end] = ACTIONS(2303), [sym_identifier] = ACTIONS(2305), [anon_sym_SEMI] = ACTIONS(2303), @@ -82015,9 +82424,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2303), [sym_float_literal] = ACTIONS(2303), }, - [636] = { - [sym_line_comment] = STATE(636), - [sym_block_comment] = STATE(636), + [639] = { + [sym_line_comment] = STATE(639), + [sym_block_comment] = STATE(639), [ts_builtin_sym_end] = ACTIONS(2307), [sym_identifier] = ACTIONS(2309), [anon_sym_SEMI] = ACTIONS(2307), @@ -82096,9 +82505,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2307), [sym_float_literal] = ACTIONS(2307), }, - [637] = { - [sym_line_comment] = STATE(637), - [sym_block_comment] = STATE(637), + [640] = { + [sym_line_comment] = STATE(640), + [sym_block_comment] = STATE(640), [ts_builtin_sym_end] = ACTIONS(2311), [sym_identifier] = ACTIONS(2313), [anon_sym_SEMI] = ACTIONS(2311), @@ -82177,9 +82586,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2311), [sym_float_literal] = ACTIONS(2311), }, - [638] = { - [sym_line_comment] = STATE(638), - [sym_block_comment] = STATE(638), + [641] = { + [sym_line_comment] = STATE(641), + [sym_block_comment] = STATE(641), [ts_builtin_sym_end] = ACTIONS(2315), [sym_identifier] = ACTIONS(2317), [anon_sym_SEMI] = ACTIONS(2315), @@ -82258,9 +82667,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2315), [sym_float_literal] = ACTIONS(2315), }, - [639] = { - [sym_line_comment] = STATE(639), - [sym_block_comment] = STATE(639), + [642] = { + [sym_line_comment] = STATE(642), + [sym_block_comment] = STATE(642), + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1259), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_macro_rules_BANG] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_u8] = ACTIONS(1259), + [anon_sym_i8] = ACTIONS(1259), + [anon_sym_u16] = ACTIONS(1259), + [anon_sym_i16] = ACTIONS(1259), + [anon_sym_u32] = ACTIONS(1259), + [anon_sym_i32] = ACTIONS(1259), + [anon_sym_u64] = ACTIONS(1259), + [anon_sym_i64] = ACTIONS(1259), + [anon_sym_u128] = ACTIONS(1259), + [anon_sym_i128] = ACTIONS(1259), + [anon_sym_isize] = ACTIONS(1259), + [anon_sym_usize] = ACTIONS(1259), + [anon_sym_f32] = ACTIONS(1259), + [anon_sym_f64] = ACTIONS(1259), + [anon_sym_bool] = ACTIONS(1259), + [anon_sym_str] = ACTIONS(1259), + [anon_sym_char] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_LT] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1259), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_fn] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_gen] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_impl] = ACTIONS(1259), + [anon_sym_let] = ACTIONS(1259), + [anon_sym_loop] = ACTIONS(1259), + [anon_sym_match] = ACTIONS(1259), + [anon_sym_mod] = ACTIONS(1259), + [anon_sym_pub] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_trait] = ACTIONS(1259), + [anon_sym_type] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1259), + [anon_sym_use] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym_yield] = ACTIONS(1259), + [anon_sym_move] = ACTIONS(1259), + [anon_sym_try] = ACTIONS(1259), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1257), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1259), + [sym_super] = ACTIONS(1259), + [sym_crate] = ACTIONS(1259), + [sym_metavariable] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1257), + [sym_float_literal] = ACTIONS(1257), + }, + [643] = { + [sym_line_comment] = STATE(643), + [sym_block_comment] = STATE(643), [ts_builtin_sym_end] = ACTIONS(2319), [sym_identifier] = ACTIONS(2321), [anon_sym_SEMI] = ACTIONS(2319), @@ -82339,9 +82829,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2319), [sym_float_literal] = ACTIONS(2319), }, - [640] = { - [sym_line_comment] = STATE(640), - [sym_block_comment] = STATE(640), + [644] = { + [sym_line_comment] = STATE(644), + [sym_block_comment] = STATE(644), [ts_builtin_sym_end] = ACTIONS(2323), [sym_identifier] = ACTIONS(2325), [anon_sym_SEMI] = ACTIONS(2323), @@ -82420,9 +82910,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2323), [sym_float_literal] = ACTIONS(2323), }, - [641] = { - [sym_line_comment] = STATE(641), - [sym_block_comment] = STATE(641), + [645] = { + [sym_line_comment] = STATE(645), + [sym_block_comment] = STATE(645), + [ts_builtin_sym_end] = ACTIONS(1265), + [sym_identifier] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_macro_rules_BANG] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_u8] = ACTIONS(1267), + [anon_sym_i8] = ACTIONS(1267), + [anon_sym_u16] = ACTIONS(1267), + [anon_sym_i16] = ACTIONS(1267), + [anon_sym_u32] = ACTIONS(1267), + [anon_sym_i32] = ACTIONS(1267), + [anon_sym_u64] = ACTIONS(1267), + [anon_sym_i64] = ACTIONS(1267), + [anon_sym_u128] = ACTIONS(1267), + [anon_sym_i128] = ACTIONS(1267), + [anon_sym_isize] = ACTIONS(1267), + [anon_sym_usize] = ACTIONS(1267), + [anon_sym_f32] = ACTIONS(1267), + [anon_sym_f64] = ACTIONS(1267), + [anon_sym_bool] = ACTIONS(1267), + [anon_sym_str] = ACTIONS(1267), + [anon_sym_char] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1265), + [anon_sym_LT] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_COLON_COLON] = ACTIONS(1265), + [anon_sym_POUND] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_async] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_fn] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_gen] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_impl] = ACTIONS(1267), + [anon_sym_let] = ACTIONS(1267), + [anon_sym_loop] = ACTIONS(1267), + [anon_sym_match] = ACTIONS(1267), + [anon_sym_mod] = ACTIONS(1267), + [anon_sym_pub] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_trait] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_unsafe] = ACTIONS(1267), + [anon_sym_use] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym_yield] = ACTIONS(1267), + [anon_sym_move] = ACTIONS(1267), + [anon_sym_try] = ACTIONS(1267), + [sym_integer_literal] = ACTIONS(1265), + [aux_sym_string_literal_token1] = ACTIONS(1265), + [sym_char_literal] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1267), + [anon_sym_false] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1267), + [sym_super] = ACTIONS(1267), + [sym_crate] = ACTIONS(1267), + [sym_metavariable] = ACTIONS(1265), + [sym__raw_string_literal_start] = ACTIONS(1265), + [sym_float_literal] = ACTIONS(1265), + }, + [646] = { + [sym_line_comment] = STATE(646), + [sym_block_comment] = STATE(646), [ts_builtin_sym_end] = ACTIONS(2327), [sym_identifier] = ACTIONS(2329), [anon_sym_SEMI] = ACTIONS(2327), @@ -82501,9 +83072,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2327), [sym_float_literal] = ACTIONS(2327), }, - [642] = { - [sym_line_comment] = STATE(642), - [sym_block_comment] = STATE(642), + [647] = { + [sym_line_comment] = STATE(647), + [sym_block_comment] = STATE(647), + [ts_builtin_sym_end] = ACTIONS(1253), + [sym_identifier] = ACTIONS(1255), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_macro_rules_BANG] = ACTIONS(1253), + [anon_sym_LPAREN] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_u8] = ACTIONS(1255), + [anon_sym_i8] = ACTIONS(1255), + [anon_sym_u16] = ACTIONS(1255), + [anon_sym_i16] = ACTIONS(1255), + [anon_sym_u32] = ACTIONS(1255), + [anon_sym_i32] = ACTIONS(1255), + [anon_sym_u64] = ACTIONS(1255), + [anon_sym_i64] = ACTIONS(1255), + [anon_sym_u128] = ACTIONS(1255), + [anon_sym_i128] = ACTIONS(1255), + [anon_sym_isize] = ACTIONS(1255), + [anon_sym_usize] = ACTIONS(1255), + [anon_sym_f32] = ACTIONS(1255), + [anon_sym_f64] = ACTIONS(1255), + [anon_sym_bool] = ACTIONS(1255), + [anon_sym_str] = ACTIONS(1255), + [anon_sym_char] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(1253), + [anon_sym_COLON_COLON] = ACTIONS(1253), + [anon_sym_POUND] = ACTIONS(1253), + [anon_sym_SQUOTE] = ACTIONS(1255), + [anon_sym_async] = ACTIONS(1255), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_const] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_default] = ACTIONS(1255), + [anon_sym_enum] = ACTIONS(1255), + [anon_sym_fn] = ACTIONS(1255), + [anon_sym_for] = ACTIONS(1255), + [anon_sym_gen] = ACTIONS(1255), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_impl] = ACTIONS(1255), + [anon_sym_let] = ACTIONS(1255), + [anon_sym_loop] = ACTIONS(1255), + [anon_sym_match] = ACTIONS(1255), + [anon_sym_mod] = ACTIONS(1255), + [anon_sym_pub] = ACTIONS(1255), + [anon_sym_return] = ACTIONS(1255), + [anon_sym_static] = ACTIONS(1255), + [anon_sym_struct] = ACTIONS(1255), + [anon_sym_trait] = ACTIONS(1255), + [anon_sym_type] = ACTIONS(1255), + [anon_sym_union] = ACTIONS(1255), + [anon_sym_unsafe] = ACTIONS(1255), + [anon_sym_use] = ACTIONS(1255), + [anon_sym_while] = ACTIONS(1255), + [anon_sym_extern] = ACTIONS(1255), + [anon_sym_yield] = ACTIONS(1255), + [anon_sym_move] = ACTIONS(1255), + [anon_sym_try] = ACTIONS(1255), + [sym_integer_literal] = ACTIONS(1253), + [aux_sym_string_literal_token1] = ACTIONS(1253), + [sym_char_literal] = ACTIONS(1253), + [anon_sym_true] = ACTIONS(1255), + [anon_sym_false] = ACTIONS(1255), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1255), + [sym_super] = ACTIONS(1255), + [sym_crate] = ACTIONS(1255), + [sym_metavariable] = ACTIONS(1253), + [sym__raw_string_literal_start] = ACTIONS(1253), + [sym_float_literal] = ACTIONS(1253), + }, + [648] = { + [sym_line_comment] = STATE(648), + [sym_block_comment] = STATE(648), + [ts_builtin_sym_end] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_macro_rules_BANG] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RBRACE] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_u8] = ACTIONS(1271), + [anon_sym_i8] = ACTIONS(1271), + [anon_sym_u16] = ACTIONS(1271), + [anon_sym_i16] = ACTIONS(1271), + [anon_sym_u32] = ACTIONS(1271), + [anon_sym_i32] = ACTIONS(1271), + [anon_sym_u64] = ACTIONS(1271), + [anon_sym_i64] = ACTIONS(1271), + [anon_sym_u128] = ACTIONS(1271), + [anon_sym_i128] = ACTIONS(1271), + [anon_sym_isize] = ACTIONS(1271), + [anon_sym_usize] = ACTIONS(1271), + [anon_sym_f32] = ACTIONS(1271), + [anon_sym_f64] = ACTIONS(1271), + [anon_sym_bool] = ACTIONS(1271), + [anon_sym_str] = ACTIONS(1271), + [anon_sym_char] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1269), + [anon_sym_COLON_COLON] = ACTIONS(1269), + [anon_sym_POUND] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(1271), + [anon_sym_async] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_gen] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_impl] = ACTIONS(1271), + [anon_sym_let] = ACTIONS(1271), + [anon_sym_loop] = ACTIONS(1271), + [anon_sym_match] = ACTIONS(1271), + [anon_sym_mod] = ACTIONS(1271), + [anon_sym_pub] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_trait] = ACTIONS(1271), + [anon_sym_type] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_unsafe] = ACTIONS(1271), + [anon_sym_use] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym_yield] = ACTIONS(1271), + [anon_sym_move] = ACTIONS(1271), + [anon_sym_try] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1269), + [aux_sym_string_literal_token1] = ACTIONS(1269), + [sym_char_literal] = ACTIONS(1269), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1271), + [sym_super] = ACTIONS(1271), + [sym_crate] = ACTIONS(1271), + [sym_metavariable] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1269), + }, + [649] = { + [sym_line_comment] = STATE(649), + [sym_block_comment] = STATE(649), [ts_builtin_sym_end] = ACTIONS(2331), [sym_identifier] = ACTIONS(2333), [anon_sym_SEMI] = ACTIONS(2331), @@ -82582,9 +83315,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2331), [sym_float_literal] = ACTIONS(2331), }, - [643] = { - [sym_line_comment] = STATE(643), - [sym_block_comment] = STATE(643), + [650] = { + [sym_line_comment] = STATE(650), + [sym_block_comment] = STATE(650), [ts_builtin_sym_end] = ACTIONS(2335), [sym_identifier] = ACTIONS(2337), [anon_sym_SEMI] = ACTIONS(2335), @@ -82663,9 +83396,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2335), [sym_float_literal] = ACTIONS(2335), }, - [644] = { - [sym_line_comment] = STATE(644), - [sym_block_comment] = STATE(644), + [651] = { + [sym_line_comment] = STATE(651), + [sym_block_comment] = STATE(651), [ts_builtin_sym_end] = ACTIONS(2339), [sym_identifier] = ACTIONS(2341), [anon_sym_SEMI] = ACTIONS(2339), @@ -82744,9 +83477,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2339), [sym_float_literal] = ACTIONS(2339), }, - [645] = { - [sym_line_comment] = STATE(645), - [sym_block_comment] = STATE(645), + [652] = { + [sym_line_comment] = STATE(652), + [sym_block_comment] = STATE(652), [ts_builtin_sym_end] = ACTIONS(2343), [sym_identifier] = ACTIONS(2345), [anon_sym_SEMI] = ACTIONS(2343), @@ -82825,9 +83558,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2343), [sym_float_literal] = ACTIONS(2343), }, - [646] = { - [sym_line_comment] = STATE(646), - [sym_block_comment] = STATE(646), + [653] = { + [sym_line_comment] = STATE(653), + [sym_block_comment] = STATE(653), [ts_builtin_sym_end] = ACTIONS(2347), [sym_identifier] = ACTIONS(2349), [anon_sym_SEMI] = ACTIONS(2347), @@ -82906,9 +83639,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2347), [sym_float_literal] = ACTIONS(2347), }, - [647] = { - [sym_line_comment] = STATE(647), - [sym_block_comment] = STATE(647), + [654] = { + [sym_line_comment] = STATE(654), + [sym_block_comment] = STATE(654), [ts_builtin_sym_end] = ACTIONS(2351), [sym_identifier] = ACTIONS(2353), [anon_sym_SEMI] = ACTIONS(2351), @@ -82987,333 +83720,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2351), [sym_float_literal] = ACTIONS(2351), }, - [648] = { - [sym_line_comment] = STATE(648), - [sym_block_comment] = STATE(648), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_macro_rules_BANG] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(1257), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_u8] = ACTIONS(1259), - [anon_sym_i8] = ACTIONS(1259), - [anon_sym_u16] = ACTIONS(1259), - [anon_sym_i16] = ACTIONS(1259), - [anon_sym_u32] = ACTIONS(1259), - [anon_sym_i32] = ACTIONS(1259), - [anon_sym_u64] = ACTIONS(1259), - [anon_sym_i64] = ACTIONS(1259), - [anon_sym_u128] = ACTIONS(1259), - [anon_sym_i128] = ACTIONS(1259), - [anon_sym_isize] = ACTIONS(1259), - [anon_sym_usize] = ACTIONS(1259), - [anon_sym_f32] = ACTIONS(1259), - [anon_sym_f64] = ACTIONS(1259), - [anon_sym_bool] = ACTIONS(1259), - [anon_sym_str] = ACTIONS(1259), - [anon_sym_char] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1257), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_SQUOTE] = ACTIONS(1259), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_default] = ACTIONS(1259), - [anon_sym_enum] = ACTIONS(1259), - [anon_sym_fn] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_gen] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_impl] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_pub] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_struct] = ACTIONS(1259), - [anon_sym_trait] = ACTIONS(1259), - [anon_sym_type] = ACTIONS(1259), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_yield] = ACTIONS(1259), - [anon_sym_move] = ACTIONS(1259), - [anon_sym_try] = ACTIONS(1259), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1257), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1259), - [sym_super] = ACTIONS(1259), - [sym_crate] = ACTIONS(1259), - [sym_metavariable] = ACTIONS(1257), - [sym__raw_string_literal_start] = ACTIONS(1257), - [sym_float_literal] = ACTIONS(1257), - }, - [649] = { - [sym_line_comment] = STATE(649), - [sym_block_comment] = STATE(649), - [ts_builtin_sym_end] = ACTIONS(1249), - [sym_identifier] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1249), - [anon_sym_macro_rules_BANG] = ACTIONS(1249), - [anon_sym_LPAREN] = ACTIONS(1249), - [anon_sym_LBRACK] = ACTIONS(1249), - [anon_sym_LBRACE] = ACTIONS(1249), - [anon_sym_RBRACE] = ACTIONS(1249), - [anon_sym_STAR] = ACTIONS(1249), - [anon_sym_u8] = ACTIONS(1251), - [anon_sym_i8] = ACTIONS(1251), - [anon_sym_u16] = ACTIONS(1251), - [anon_sym_i16] = ACTIONS(1251), - [anon_sym_u32] = ACTIONS(1251), - [anon_sym_i32] = ACTIONS(1251), - [anon_sym_u64] = ACTIONS(1251), - [anon_sym_i64] = ACTIONS(1251), - [anon_sym_u128] = ACTIONS(1251), - [anon_sym_i128] = ACTIONS(1251), - [anon_sym_isize] = ACTIONS(1251), - [anon_sym_usize] = ACTIONS(1251), - [anon_sym_f32] = ACTIONS(1251), - [anon_sym_f64] = ACTIONS(1251), - [anon_sym_bool] = ACTIONS(1251), - [anon_sym_str] = ACTIONS(1251), - [anon_sym_char] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1249), - [anon_sym_AMP] = ACTIONS(1249), - [anon_sym_PIPE] = ACTIONS(1249), - [anon_sym_LT] = ACTIONS(1249), - [anon_sym_DOT_DOT] = ACTIONS(1249), - [anon_sym_COLON_COLON] = ACTIONS(1249), - [anon_sym_POUND] = ACTIONS(1249), - [anon_sym_SQUOTE] = ACTIONS(1251), - [anon_sym_async] = ACTIONS(1251), - [anon_sym_break] = ACTIONS(1251), - [anon_sym_const] = ACTIONS(1251), - [anon_sym_continue] = ACTIONS(1251), - [anon_sym_default] = ACTIONS(1251), - [anon_sym_enum] = ACTIONS(1251), - [anon_sym_fn] = ACTIONS(1251), - [anon_sym_for] = ACTIONS(1251), - [anon_sym_gen] = ACTIONS(1251), - [anon_sym_if] = ACTIONS(1251), - [anon_sym_impl] = ACTIONS(1251), - [anon_sym_let] = ACTIONS(1251), - [anon_sym_loop] = ACTIONS(1251), - [anon_sym_match] = ACTIONS(1251), - [anon_sym_mod] = ACTIONS(1251), - [anon_sym_pub] = ACTIONS(1251), - [anon_sym_return] = ACTIONS(1251), - [anon_sym_static] = ACTIONS(1251), - [anon_sym_struct] = ACTIONS(1251), - [anon_sym_trait] = ACTIONS(1251), - [anon_sym_type] = ACTIONS(1251), - [anon_sym_union] = ACTIONS(1251), - [anon_sym_unsafe] = ACTIONS(1251), - [anon_sym_use] = ACTIONS(1251), - [anon_sym_while] = ACTIONS(1251), - [anon_sym_extern] = ACTIONS(1251), - [anon_sym_yield] = ACTIONS(1251), - [anon_sym_move] = ACTIONS(1251), - [anon_sym_try] = ACTIONS(1251), - [sym_integer_literal] = ACTIONS(1249), - [aux_sym_string_literal_token1] = ACTIONS(1249), - [sym_char_literal] = ACTIONS(1249), - [anon_sym_true] = ACTIONS(1251), - [anon_sym_false] = ACTIONS(1251), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1251), - [sym_super] = ACTIONS(1251), - [sym_crate] = ACTIONS(1251), - [sym_metavariable] = ACTIONS(1249), - [sym__raw_string_literal_start] = ACTIONS(1249), - [sym_float_literal] = ACTIONS(1249), - }, - [650] = { - [sym_line_comment] = STATE(650), - [sym_block_comment] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1245), - [sym_identifier] = ACTIONS(1247), - [anon_sym_SEMI] = ACTIONS(1245), - [anon_sym_macro_rules_BANG] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_STAR] = ACTIONS(1245), - [anon_sym_u8] = ACTIONS(1247), - [anon_sym_i8] = ACTIONS(1247), - [anon_sym_u16] = ACTIONS(1247), - [anon_sym_i16] = ACTIONS(1247), - [anon_sym_u32] = ACTIONS(1247), - [anon_sym_i32] = ACTIONS(1247), - [anon_sym_u64] = ACTIONS(1247), - [anon_sym_i64] = ACTIONS(1247), - [anon_sym_u128] = ACTIONS(1247), - [anon_sym_i128] = ACTIONS(1247), - [anon_sym_isize] = ACTIONS(1247), - [anon_sym_usize] = ACTIONS(1247), - [anon_sym_f32] = ACTIONS(1247), - [anon_sym_f64] = ACTIONS(1247), - [anon_sym_bool] = ACTIONS(1247), - [anon_sym_str] = ACTIONS(1247), - [anon_sym_char] = ACTIONS(1247), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_BANG] = ACTIONS(1245), - [anon_sym_AMP] = ACTIONS(1245), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_LT] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1245), - [anon_sym_COLON_COLON] = ACTIONS(1245), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_SQUOTE] = ACTIONS(1247), - [anon_sym_async] = ACTIONS(1247), - [anon_sym_break] = ACTIONS(1247), - [anon_sym_const] = ACTIONS(1247), - [anon_sym_continue] = ACTIONS(1247), - [anon_sym_default] = ACTIONS(1247), - [anon_sym_enum] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1247), - [anon_sym_for] = ACTIONS(1247), - [anon_sym_gen] = ACTIONS(1247), - [anon_sym_if] = ACTIONS(1247), - [anon_sym_impl] = ACTIONS(1247), - [anon_sym_let] = ACTIONS(1247), - [anon_sym_loop] = ACTIONS(1247), - [anon_sym_match] = ACTIONS(1247), - [anon_sym_mod] = ACTIONS(1247), - [anon_sym_pub] = ACTIONS(1247), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_static] = ACTIONS(1247), - [anon_sym_struct] = ACTIONS(1247), - [anon_sym_trait] = ACTIONS(1247), - [anon_sym_type] = ACTIONS(1247), - [anon_sym_union] = ACTIONS(1247), - [anon_sym_unsafe] = ACTIONS(1247), - [anon_sym_use] = ACTIONS(1247), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_extern] = ACTIONS(1247), - [anon_sym_yield] = ACTIONS(1247), - [anon_sym_move] = ACTIONS(1247), - [anon_sym_try] = ACTIONS(1247), - [sym_integer_literal] = ACTIONS(1245), - [aux_sym_string_literal_token1] = ACTIONS(1245), - [sym_char_literal] = ACTIONS(1245), - [anon_sym_true] = ACTIONS(1247), - [anon_sym_false] = ACTIONS(1247), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1247), - [sym_super] = ACTIONS(1247), - [sym_crate] = ACTIONS(1247), - [sym_metavariable] = ACTIONS(1245), - [sym__raw_string_literal_start] = ACTIONS(1245), - [sym_float_literal] = ACTIONS(1245), - }, - [651] = { - [sym_line_comment] = STATE(651), - [sym_block_comment] = STATE(651), - [ts_builtin_sym_end] = ACTIONS(1253), - [sym_identifier] = ACTIONS(1255), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_macro_rules_BANG] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1253), - [anon_sym_LBRACK] = ACTIONS(1253), - [anon_sym_LBRACE] = ACTIONS(1253), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_u8] = ACTIONS(1255), - [anon_sym_i8] = ACTIONS(1255), - [anon_sym_u16] = ACTIONS(1255), - [anon_sym_i16] = ACTIONS(1255), - [anon_sym_u32] = ACTIONS(1255), - [anon_sym_i32] = ACTIONS(1255), - [anon_sym_u64] = ACTIONS(1255), - [anon_sym_i64] = ACTIONS(1255), - [anon_sym_u128] = ACTIONS(1255), - [anon_sym_i128] = ACTIONS(1255), - [anon_sym_isize] = ACTIONS(1255), - [anon_sym_usize] = ACTIONS(1255), - [anon_sym_f32] = ACTIONS(1255), - [anon_sym_f64] = ACTIONS(1255), - [anon_sym_bool] = ACTIONS(1255), - [anon_sym_str] = ACTIONS(1255), - [anon_sym_char] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_COLON_COLON] = ACTIONS(1253), - [anon_sym_POUND] = ACTIONS(1253), - [anon_sym_SQUOTE] = ACTIONS(1255), - [anon_sym_async] = ACTIONS(1255), - [anon_sym_break] = ACTIONS(1255), - [anon_sym_const] = ACTIONS(1255), - [anon_sym_continue] = ACTIONS(1255), - [anon_sym_default] = ACTIONS(1255), - [anon_sym_enum] = ACTIONS(1255), - [anon_sym_fn] = ACTIONS(1255), - [anon_sym_for] = ACTIONS(1255), - [anon_sym_gen] = ACTIONS(1255), - [anon_sym_if] = ACTIONS(1255), - [anon_sym_impl] = ACTIONS(1255), - [anon_sym_let] = ACTIONS(1255), - [anon_sym_loop] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1255), - [anon_sym_mod] = ACTIONS(1255), - [anon_sym_pub] = ACTIONS(1255), - [anon_sym_return] = ACTIONS(1255), - [anon_sym_static] = ACTIONS(1255), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_trait] = ACTIONS(1255), - [anon_sym_type] = ACTIONS(1255), - [anon_sym_union] = ACTIONS(1255), - [anon_sym_unsafe] = ACTIONS(1255), - [anon_sym_use] = ACTIONS(1255), - [anon_sym_while] = ACTIONS(1255), - [anon_sym_extern] = ACTIONS(1255), - [anon_sym_yield] = ACTIONS(1255), - [anon_sym_move] = ACTIONS(1255), - [anon_sym_try] = ACTIONS(1255), - [sym_integer_literal] = ACTIONS(1253), - [aux_sym_string_literal_token1] = ACTIONS(1253), - [sym_char_literal] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1255), - [sym_super] = ACTIONS(1255), - [sym_crate] = ACTIONS(1255), - [sym_metavariable] = ACTIONS(1253), - [sym__raw_string_literal_start] = ACTIONS(1253), - [sym_float_literal] = ACTIONS(1253), - }, - [652] = { - [sym_line_comment] = STATE(652), - [sym_block_comment] = STATE(652), + [655] = { + [sym_line_comment] = STATE(655), + [sym_block_comment] = STATE(655), [ts_builtin_sym_end] = ACTIONS(2355), [sym_identifier] = ACTIONS(2357), [anon_sym_SEMI] = ACTIONS(2355), @@ -83392,9 +83801,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2355), [sym_float_literal] = ACTIONS(2355), }, - [653] = { - [sym_line_comment] = STATE(653), - [sym_block_comment] = STATE(653), + [656] = { + [sym_line_comment] = STATE(656), + [sym_block_comment] = STATE(656), [ts_builtin_sym_end] = ACTIONS(2359), [sym_identifier] = ACTIONS(2361), [anon_sym_SEMI] = ACTIONS(2359), @@ -83473,9 +83882,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2359), [sym_float_literal] = ACTIONS(2359), }, - [654] = { - [sym_line_comment] = STATE(654), - [sym_block_comment] = STATE(654), + [657] = { + [sym_line_comment] = STATE(657), + [sym_block_comment] = STATE(657), [ts_builtin_sym_end] = ACTIONS(2363), [sym_identifier] = ACTIONS(2365), [anon_sym_SEMI] = ACTIONS(2363), @@ -83554,9 +83963,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2363), [sym_float_literal] = ACTIONS(2363), }, - [655] = { - [sym_line_comment] = STATE(655), - [sym_block_comment] = STATE(655), + [658] = { + [sym_line_comment] = STATE(658), + [sym_block_comment] = STATE(658), [ts_builtin_sym_end] = ACTIONS(2367), [sym_identifier] = ACTIONS(2369), [anon_sym_SEMI] = ACTIONS(2367), @@ -83635,9 +84044,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2367), [sym_float_literal] = ACTIONS(2367), }, - [656] = { - [sym_line_comment] = STATE(656), - [sym_block_comment] = STATE(656), + [659] = { + [sym_line_comment] = STATE(659), + [sym_block_comment] = STATE(659), [ts_builtin_sym_end] = ACTIONS(2371), [sym_identifier] = ACTIONS(2373), [anon_sym_SEMI] = ACTIONS(2371), @@ -83716,9 +84125,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2371), [sym_float_literal] = ACTIONS(2371), }, - [657] = { - [sym_line_comment] = STATE(657), - [sym_block_comment] = STATE(657), + [660] = { + [sym_line_comment] = STATE(660), + [sym_block_comment] = STATE(660), [ts_builtin_sym_end] = ACTIONS(2375), [sym_identifier] = ACTIONS(2377), [anon_sym_SEMI] = ACTIONS(2375), @@ -83797,9 +84206,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2375), [sym_float_literal] = ACTIONS(2375), }, - [658] = { - [sym_line_comment] = STATE(658), - [sym_block_comment] = STATE(658), + [661] = { + [sym_line_comment] = STATE(661), + [sym_block_comment] = STATE(661), [ts_builtin_sym_end] = ACTIONS(2379), [sym_identifier] = ACTIONS(2381), [anon_sym_SEMI] = ACTIONS(2379), @@ -83878,9 +84287,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2379), [sym_float_literal] = ACTIONS(2379), }, - [659] = { - [sym_line_comment] = STATE(659), - [sym_block_comment] = STATE(659), + [662] = { + [sym_line_comment] = STATE(662), + [sym_block_comment] = STATE(662), [ts_builtin_sym_end] = ACTIONS(2383), [sym_identifier] = ACTIONS(2385), [anon_sym_SEMI] = ACTIONS(2383), @@ -83959,90 +84368,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2383), [sym_float_literal] = ACTIONS(2383), }, - [660] = { - [sym_line_comment] = STATE(660), - [sym_block_comment] = STATE(660), - [ts_builtin_sym_end] = ACTIONS(1325), - [sym_identifier] = ACTIONS(1327), - [anon_sym_SEMI] = ACTIONS(1325), - [anon_sym_macro_rules_BANG] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(1325), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1325), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_u8] = ACTIONS(1327), - [anon_sym_i8] = ACTIONS(1327), - [anon_sym_u16] = ACTIONS(1327), - [anon_sym_i16] = ACTIONS(1327), - [anon_sym_u32] = ACTIONS(1327), - [anon_sym_i32] = ACTIONS(1327), - [anon_sym_u64] = ACTIONS(1327), - [anon_sym_i64] = ACTIONS(1327), - [anon_sym_u128] = ACTIONS(1327), - [anon_sym_i128] = ACTIONS(1327), - [anon_sym_isize] = ACTIONS(1327), - [anon_sym_usize] = ACTIONS(1327), - [anon_sym_f32] = ACTIONS(1327), - [anon_sym_f64] = ACTIONS(1327), - [anon_sym_bool] = ACTIONS(1327), - [anon_sym_str] = ACTIONS(1327), - [anon_sym_char] = ACTIONS(1327), - [anon_sym_DASH] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1325), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_PIPE] = ACTIONS(1325), - [anon_sym_LT] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1325), - [anon_sym_COLON_COLON] = ACTIONS(1325), - [anon_sym_POUND] = ACTIONS(1325), - [anon_sym_SQUOTE] = ACTIONS(1327), - [anon_sym_async] = ACTIONS(1327), - [anon_sym_break] = ACTIONS(1327), - [anon_sym_const] = ACTIONS(1327), - [anon_sym_continue] = ACTIONS(1327), - [anon_sym_default] = ACTIONS(1327), - [anon_sym_enum] = ACTIONS(1327), - [anon_sym_fn] = ACTIONS(1327), - [anon_sym_for] = ACTIONS(1327), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_if] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1327), - [anon_sym_let] = ACTIONS(1327), - [anon_sym_loop] = ACTIONS(1327), - [anon_sym_match] = ACTIONS(1327), - [anon_sym_mod] = ACTIONS(1327), - [anon_sym_pub] = ACTIONS(1327), - [anon_sym_return] = ACTIONS(1327), - [anon_sym_static] = ACTIONS(1327), - [anon_sym_struct] = ACTIONS(1327), - [anon_sym_trait] = ACTIONS(1327), - [anon_sym_type] = ACTIONS(1327), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1327), - [anon_sym_use] = ACTIONS(1327), - [anon_sym_while] = ACTIONS(1327), - [anon_sym_extern] = ACTIONS(1327), - [anon_sym_yield] = ACTIONS(1327), - [anon_sym_move] = ACTIONS(1327), - [anon_sym_try] = ACTIONS(1327), - [sym_integer_literal] = ACTIONS(1325), - [aux_sym_string_literal_token1] = ACTIONS(1325), - [sym_char_literal] = ACTIONS(1325), - [anon_sym_true] = ACTIONS(1327), - [anon_sym_false] = ACTIONS(1327), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1327), - [sym_super] = ACTIONS(1327), - [sym_crate] = ACTIONS(1327), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1325), - [sym_float_literal] = ACTIONS(1325), - }, - [661] = { - [sym_line_comment] = STATE(661), - [sym_block_comment] = STATE(661), + [663] = { + [sym_line_comment] = STATE(663), + [sym_block_comment] = STATE(663), [ts_builtin_sym_end] = ACTIONS(2387), [sym_identifier] = ACTIONS(2389), [anon_sym_SEMI] = ACTIONS(2387), @@ -84121,9 +84449,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2387), [sym_float_literal] = ACTIONS(2387), }, - [662] = { - [sym_line_comment] = STATE(662), - [sym_block_comment] = STATE(662), + [664] = { + [sym_line_comment] = STATE(664), + [sym_block_comment] = STATE(664), [ts_builtin_sym_end] = ACTIONS(2391), [sym_identifier] = ACTIONS(2393), [anon_sym_SEMI] = ACTIONS(2391), @@ -84202,9 +84530,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2391), [sym_float_literal] = ACTIONS(2391), }, - [663] = { - [sym_line_comment] = STATE(663), - [sym_block_comment] = STATE(663), + [665] = { + [sym_line_comment] = STATE(665), + [sym_block_comment] = STATE(665), [ts_builtin_sym_end] = ACTIONS(2395), [sym_identifier] = ACTIONS(2397), [anon_sym_SEMI] = ACTIONS(2395), @@ -84283,9 +84611,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2395), [sym_float_literal] = ACTIONS(2395), }, - [664] = { - [sym_line_comment] = STATE(664), - [sym_block_comment] = STATE(664), + [666] = { + [sym_line_comment] = STATE(666), + [sym_block_comment] = STATE(666), [ts_builtin_sym_end] = ACTIONS(2399), [sym_identifier] = ACTIONS(2401), [anon_sym_SEMI] = ACTIONS(2399), @@ -84364,9 +84692,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2399), [sym_float_literal] = ACTIONS(2399), }, - [665] = { - [sym_line_comment] = STATE(665), - [sym_block_comment] = STATE(665), + [667] = { + [sym_line_comment] = STATE(667), + [sym_block_comment] = STATE(667), [ts_builtin_sym_end] = ACTIONS(2403), [sym_identifier] = ACTIONS(2405), [anon_sym_SEMI] = ACTIONS(2403), @@ -84445,9 +84773,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2403), [sym_float_literal] = ACTIONS(2403), }, - [666] = { - [sym_line_comment] = STATE(666), - [sym_block_comment] = STATE(666), + [668] = { + [sym_line_comment] = STATE(668), + [sym_block_comment] = STATE(668), [ts_builtin_sym_end] = ACTIONS(2407), [sym_identifier] = ACTIONS(2409), [anon_sym_SEMI] = ACTIONS(2407), @@ -84526,9 +84854,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2407), [sym_float_literal] = ACTIONS(2407), }, - [667] = { - [sym_line_comment] = STATE(667), - [sym_block_comment] = STATE(667), + [669] = { + [sym_line_comment] = STATE(669), + [sym_block_comment] = STATE(669), [ts_builtin_sym_end] = ACTIONS(2411), [sym_identifier] = ACTIONS(2413), [anon_sym_SEMI] = ACTIONS(2411), @@ -84607,9 +84935,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2411), [sym_float_literal] = ACTIONS(2411), }, - [668] = { - [sym_line_comment] = STATE(668), - [sym_block_comment] = STATE(668), + [670] = { + [sym_line_comment] = STATE(670), + [sym_block_comment] = STATE(670), [ts_builtin_sym_end] = ACTIONS(2415), [sym_identifier] = ACTIONS(2417), [anon_sym_SEMI] = ACTIONS(2415), @@ -84688,9 +85016,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2415), [sym_float_literal] = ACTIONS(2415), }, - [669] = { - [sym_line_comment] = STATE(669), - [sym_block_comment] = STATE(669), + [671] = { + [sym_line_comment] = STATE(671), + [sym_block_comment] = STATE(671), [ts_builtin_sym_end] = ACTIONS(2419), [sym_identifier] = ACTIONS(2421), [anon_sym_SEMI] = ACTIONS(2419), @@ -84769,9 +85097,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2419), [sym_float_literal] = ACTIONS(2419), }, - [670] = { - [sym_line_comment] = STATE(670), - [sym_block_comment] = STATE(670), + [672] = { + [sym_line_comment] = STATE(672), + [sym_block_comment] = STATE(672), [ts_builtin_sym_end] = ACTIONS(2423), [sym_identifier] = ACTIONS(2425), [anon_sym_SEMI] = ACTIONS(2423), @@ -84850,9 +85178,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2423), [sym_float_literal] = ACTIONS(2423), }, - [671] = { - [sym_line_comment] = STATE(671), - [sym_block_comment] = STATE(671), + [673] = { + [sym_line_comment] = STATE(673), + [sym_block_comment] = STATE(673), [ts_builtin_sym_end] = ACTIONS(2427), [sym_identifier] = ACTIONS(2429), [anon_sym_SEMI] = ACTIONS(2427), @@ -84931,9 +85259,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2427), [sym_float_literal] = ACTIONS(2427), }, - [672] = { - [sym_line_comment] = STATE(672), - [sym_block_comment] = STATE(672), + [674] = { + [sym_line_comment] = STATE(674), + [sym_block_comment] = STATE(674), [ts_builtin_sym_end] = ACTIONS(2431), [sym_identifier] = ACTIONS(2433), [anon_sym_SEMI] = ACTIONS(2431), @@ -85012,9 +85340,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2431), [sym_float_literal] = ACTIONS(2431), }, - [673] = { - [sym_line_comment] = STATE(673), - [sym_block_comment] = STATE(673), + [675] = { + [sym_line_comment] = STATE(675), + [sym_block_comment] = STATE(675), [ts_builtin_sym_end] = ACTIONS(2435), [sym_identifier] = ACTIONS(2437), [anon_sym_SEMI] = ACTIONS(2435), @@ -85093,9 +85421,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2435), [sym_float_literal] = ACTIONS(2435), }, - [674] = { - [sym_line_comment] = STATE(674), - [sym_block_comment] = STATE(674), + [676] = { + [sym_line_comment] = STATE(676), + [sym_block_comment] = STATE(676), [ts_builtin_sym_end] = ACTIONS(2439), [sym_identifier] = ACTIONS(2441), [anon_sym_SEMI] = ACTIONS(2439), @@ -85174,9 +85502,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2439), [sym_float_literal] = ACTIONS(2439), }, - [675] = { - [sym_line_comment] = STATE(675), - [sym_block_comment] = STATE(675), + [677] = { + [sym_line_comment] = STATE(677), + [sym_block_comment] = STATE(677), [ts_builtin_sym_end] = ACTIONS(2443), [sym_identifier] = ACTIONS(2445), [anon_sym_SEMI] = ACTIONS(2443), @@ -85255,9 +85583,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2443), [sym_float_literal] = ACTIONS(2443), }, - [676] = { - [sym_line_comment] = STATE(676), - [sym_block_comment] = STATE(676), + [678] = { + [sym_line_comment] = STATE(678), + [sym_block_comment] = STATE(678), [ts_builtin_sym_end] = ACTIONS(2447), [sym_identifier] = ACTIONS(2449), [anon_sym_SEMI] = ACTIONS(2447), @@ -85336,9 +85664,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2447), [sym_float_literal] = ACTIONS(2447), }, - [677] = { - [sym_line_comment] = STATE(677), - [sym_block_comment] = STATE(677), + [679] = { + [sym_line_comment] = STATE(679), + [sym_block_comment] = STATE(679), [ts_builtin_sym_end] = ACTIONS(2451), [sym_identifier] = ACTIONS(2453), [anon_sym_SEMI] = ACTIONS(2451), @@ -85417,9 +85745,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2451), [sym_float_literal] = ACTIONS(2451), }, - [678] = { - [sym_line_comment] = STATE(678), - [sym_block_comment] = STATE(678), + [680] = { + [sym_line_comment] = STATE(680), + [sym_block_comment] = STATE(680), [ts_builtin_sym_end] = ACTIONS(2455), [sym_identifier] = ACTIONS(2457), [anon_sym_SEMI] = ACTIONS(2455), @@ -85498,9 +85826,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2455), [sym_float_literal] = ACTIONS(2455), }, - [679] = { - [sym_line_comment] = STATE(679), - [sym_block_comment] = STATE(679), + [681] = { + [sym_line_comment] = STATE(681), + [sym_block_comment] = STATE(681), [ts_builtin_sym_end] = ACTIONS(2459), [sym_identifier] = ACTIONS(2461), [anon_sym_SEMI] = ACTIONS(2459), @@ -85579,9 +85907,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2459), [sym_float_literal] = ACTIONS(2459), }, - [680] = { - [sym_line_comment] = STATE(680), - [sym_block_comment] = STATE(680), + [682] = { + [sym_line_comment] = STATE(682), + [sym_block_comment] = STATE(682), [ts_builtin_sym_end] = ACTIONS(2463), [sym_identifier] = ACTIONS(2465), [anon_sym_SEMI] = ACTIONS(2463), @@ -85660,9 +85988,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2463), [sym_float_literal] = ACTIONS(2463), }, - [681] = { - [sym_line_comment] = STATE(681), - [sym_block_comment] = STATE(681), + [683] = { + [sym_line_comment] = STATE(683), + [sym_block_comment] = STATE(683), [ts_builtin_sym_end] = ACTIONS(2467), [sym_identifier] = ACTIONS(2469), [anon_sym_SEMI] = ACTIONS(2467), @@ -85741,9 +86069,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2467), [sym_float_literal] = ACTIONS(2467), }, - [682] = { - [sym_line_comment] = STATE(682), - [sym_block_comment] = STATE(682), + [684] = { + [sym_line_comment] = STATE(684), + [sym_block_comment] = STATE(684), [ts_builtin_sym_end] = ACTIONS(2471), [sym_identifier] = ACTIONS(2473), [anon_sym_SEMI] = ACTIONS(2471), @@ -85822,9 +86150,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2471), [sym_float_literal] = ACTIONS(2471), }, - [683] = { - [sym_line_comment] = STATE(683), - [sym_block_comment] = STATE(683), + [685] = { + [sym_line_comment] = STATE(685), + [sym_block_comment] = STATE(685), [ts_builtin_sym_end] = ACTIONS(2475), [sym_identifier] = ACTIONS(2477), [anon_sym_SEMI] = ACTIONS(2475), @@ -85903,9 +86231,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2475), [sym_float_literal] = ACTIONS(2475), }, - [684] = { - [sym_line_comment] = STATE(684), - [sym_block_comment] = STATE(684), + [686] = { + [sym_line_comment] = STATE(686), + [sym_block_comment] = STATE(686), [ts_builtin_sym_end] = ACTIONS(2479), [sym_identifier] = ACTIONS(2481), [anon_sym_SEMI] = ACTIONS(2479), @@ -85984,9 +86312,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2479), [sym_float_literal] = ACTIONS(2479), }, - [685] = { - [sym_line_comment] = STATE(685), - [sym_block_comment] = STATE(685), + [687] = { + [sym_line_comment] = STATE(687), + [sym_block_comment] = STATE(687), [ts_builtin_sym_end] = ACTIONS(2483), [sym_identifier] = ACTIONS(2485), [anon_sym_SEMI] = ACTIONS(2483), @@ -86065,9 +86393,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2483), [sym_float_literal] = ACTIONS(2483), }, - [686] = { - [sym_line_comment] = STATE(686), - [sym_block_comment] = STATE(686), + [688] = { + [sym_line_comment] = STATE(688), + [sym_block_comment] = STATE(688), [ts_builtin_sym_end] = ACTIONS(2487), [sym_identifier] = ACTIONS(2489), [anon_sym_SEMI] = ACTIONS(2487), @@ -86146,9 +86474,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2487), [sym_float_literal] = ACTIONS(2487), }, - [687] = { - [sym_line_comment] = STATE(687), - [sym_block_comment] = STATE(687), + [689] = { + [sym_line_comment] = STATE(689), + [sym_block_comment] = STATE(689), [ts_builtin_sym_end] = ACTIONS(2491), [sym_identifier] = ACTIONS(2493), [anon_sym_SEMI] = ACTIONS(2491), @@ -86227,9 +86555,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2491), [sym_float_literal] = ACTIONS(2491), }, - [688] = { - [sym_line_comment] = STATE(688), - [sym_block_comment] = STATE(688), + [690] = { + [sym_line_comment] = STATE(690), + [sym_block_comment] = STATE(690), [ts_builtin_sym_end] = ACTIONS(2495), [sym_identifier] = ACTIONS(2497), [anon_sym_SEMI] = ACTIONS(2495), @@ -86308,9 +86636,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2495), [sym_float_literal] = ACTIONS(2495), }, - [689] = { - [sym_line_comment] = STATE(689), - [sym_block_comment] = STATE(689), + [691] = { + [sym_line_comment] = STATE(691), + [sym_block_comment] = STATE(691), [ts_builtin_sym_end] = ACTIONS(2499), [sym_identifier] = ACTIONS(2501), [anon_sym_SEMI] = ACTIONS(2499), @@ -86389,9 +86717,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2499), [sym_float_literal] = ACTIONS(2499), }, - [690] = { - [sym_line_comment] = STATE(690), - [sym_block_comment] = STATE(690), + [692] = { + [sym_line_comment] = STATE(692), + [sym_block_comment] = STATE(692), [ts_builtin_sym_end] = ACTIONS(2503), [sym_identifier] = ACTIONS(2505), [anon_sym_SEMI] = ACTIONS(2503), @@ -86470,9 +86798,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2503), [sym_float_literal] = ACTIONS(2503), }, - [691] = { - [sym_line_comment] = STATE(691), - [sym_block_comment] = STATE(691), + [693] = { + [sym_line_comment] = STATE(693), + [sym_block_comment] = STATE(693), [ts_builtin_sym_end] = ACTIONS(2507), [sym_identifier] = ACTIONS(2509), [anon_sym_SEMI] = ACTIONS(2507), @@ -86551,9 +86879,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2507), [sym_float_literal] = ACTIONS(2507), }, - [692] = { - [sym_line_comment] = STATE(692), - [sym_block_comment] = STATE(692), + [694] = { + [sym_line_comment] = STATE(694), + [sym_block_comment] = STATE(694), [ts_builtin_sym_end] = ACTIONS(2511), [sym_identifier] = ACTIONS(2513), [anon_sym_SEMI] = ACTIONS(2511), @@ -86632,9 +86960,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2511), [sym_float_literal] = ACTIONS(2511), }, - [693] = { - [sym_line_comment] = STATE(693), - [sym_block_comment] = STATE(693), + [695] = { + [sym_line_comment] = STATE(695), + [sym_block_comment] = STATE(695), [ts_builtin_sym_end] = ACTIONS(2515), [sym_identifier] = ACTIONS(2517), [anon_sym_SEMI] = ACTIONS(2515), @@ -86713,9 +87041,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2515), [sym_float_literal] = ACTIONS(2515), }, - [694] = { - [sym_line_comment] = STATE(694), - [sym_block_comment] = STATE(694), + [696] = { + [sym_line_comment] = STATE(696), + [sym_block_comment] = STATE(696), [ts_builtin_sym_end] = ACTIONS(2519), [sym_identifier] = ACTIONS(2521), [anon_sym_SEMI] = ACTIONS(2519), @@ -86794,9 +87122,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2519), [sym_float_literal] = ACTIONS(2519), }, - [695] = { - [sym_line_comment] = STATE(695), - [sym_block_comment] = STATE(695), + [697] = { + [sym_line_comment] = STATE(697), + [sym_block_comment] = STATE(697), [ts_builtin_sym_end] = ACTIONS(2523), [sym_identifier] = ACTIONS(2525), [anon_sym_SEMI] = ACTIONS(2523), @@ -86875,9 +87203,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2523), [sym_float_literal] = ACTIONS(2523), }, - [696] = { - [sym_line_comment] = STATE(696), - [sym_block_comment] = STATE(696), + [698] = { + [sym_line_comment] = STATE(698), + [sym_block_comment] = STATE(698), [ts_builtin_sym_end] = ACTIONS(2527), [sym_identifier] = ACTIONS(2529), [anon_sym_SEMI] = ACTIONS(2527), @@ -86956,9 +87284,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2527), [sym_float_literal] = ACTIONS(2527), }, - [697] = { - [sym_line_comment] = STATE(697), - [sym_block_comment] = STATE(697), + [699] = { + [sym_line_comment] = STATE(699), + [sym_block_comment] = STATE(699), [ts_builtin_sym_end] = ACTIONS(2531), [sym_identifier] = ACTIONS(2533), [anon_sym_SEMI] = ACTIONS(2531), @@ -87037,9 +87365,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2531), [sym_float_literal] = ACTIONS(2531), }, - [698] = { - [sym_line_comment] = STATE(698), - [sym_block_comment] = STATE(698), + [700] = { + [sym_line_comment] = STATE(700), + [sym_block_comment] = STATE(700), [ts_builtin_sym_end] = ACTIONS(2535), [sym_identifier] = ACTIONS(2537), [anon_sym_SEMI] = ACTIONS(2535), @@ -87118,9 +87446,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2535), [sym_float_literal] = ACTIONS(2535), }, - [699] = { - [sym_line_comment] = STATE(699), - [sym_block_comment] = STATE(699), + [701] = { + [sym_line_comment] = STATE(701), + [sym_block_comment] = STATE(701), [ts_builtin_sym_end] = ACTIONS(2539), [sym_identifier] = ACTIONS(2541), [anon_sym_SEMI] = ACTIONS(2539), @@ -87199,9 +87527,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2539), [sym_float_literal] = ACTIONS(2539), }, - [700] = { - [sym_line_comment] = STATE(700), - [sym_block_comment] = STATE(700), + [702] = { + [sym_line_comment] = STATE(702), + [sym_block_comment] = STATE(702), [ts_builtin_sym_end] = ACTIONS(2543), [sym_identifier] = ACTIONS(2545), [anon_sym_SEMI] = ACTIONS(2543), @@ -87280,9 +87608,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2543), [sym_float_literal] = ACTIONS(2543), }, - [701] = { - [sym_line_comment] = STATE(701), - [sym_block_comment] = STATE(701), + [703] = { + [sym_line_comment] = STATE(703), + [sym_block_comment] = STATE(703), [ts_builtin_sym_end] = ACTIONS(2547), [sym_identifier] = ACTIONS(2549), [anon_sym_SEMI] = ACTIONS(2547), @@ -87361,9 +87689,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2547), [sym_float_literal] = ACTIONS(2547), }, - [702] = { - [sym_line_comment] = STATE(702), - [sym_block_comment] = STATE(702), + [704] = { + [sym_line_comment] = STATE(704), + [sym_block_comment] = STATE(704), [ts_builtin_sym_end] = ACTIONS(2551), [sym_identifier] = ACTIONS(2553), [anon_sym_SEMI] = ACTIONS(2551), @@ -87442,9 +87770,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2551), [sym_float_literal] = ACTIONS(2551), }, - [703] = { - [sym_line_comment] = STATE(703), - [sym_block_comment] = STATE(703), + [705] = { + [sym_line_comment] = STATE(705), + [sym_block_comment] = STATE(705), [ts_builtin_sym_end] = ACTIONS(2555), [sym_identifier] = ACTIONS(2557), [anon_sym_SEMI] = ACTIONS(2555), @@ -87523,9 +87851,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2555), [sym_float_literal] = ACTIONS(2555), }, - [704] = { - [sym_line_comment] = STATE(704), - [sym_block_comment] = STATE(704), + [706] = { + [sym_line_comment] = STATE(706), + [sym_block_comment] = STATE(706), [ts_builtin_sym_end] = ACTIONS(2559), [sym_identifier] = ACTIONS(2561), [anon_sym_SEMI] = ACTIONS(2559), @@ -87604,9 +87932,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2559), [sym_float_literal] = ACTIONS(2559), }, - [705] = { - [sym_line_comment] = STATE(705), - [sym_block_comment] = STATE(705), + [707] = { + [sym_line_comment] = STATE(707), + [sym_block_comment] = STATE(707), [ts_builtin_sym_end] = ACTIONS(2563), [sym_identifier] = ACTIONS(2565), [anon_sym_SEMI] = ACTIONS(2563), @@ -87685,9 +88013,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2563), [sym_float_literal] = ACTIONS(2563), }, - [706] = { - [sym_line_comment] = STATE(706), - [sym_block_comment] = STATE(706), + [708] = { + [sym_line_comment] = STATE(708), + [sym_block_comment] = STATE(708), [ts_builtin_sym_end] = ACTIONS(2567), [sym_identifier] = ACTIONS(2569), [anon_sym_SEMI] = ACTIONS(2567), @@ -87766,9 +88094,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2567), [sym_float_literal] = ACTIONS(2567), }, - [707] = { - [sym_line_comment] = STATE(707), - [sym_block_comment] = STATE(707), + [709] = { + [sym_line_comment] = STATE(709), + [sym_block_comment] = STATE(709), [ts_builtin_sym_end] = ACTIONS(2571), [sym_identifier] = ACTIONS(2573), [anon_sym_SEMI] = ACTIONS(2571), @@ -87847,9 +88175,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2571), [sym_float_literal] = ACTIONS(2571), }, - [708] = { - [sym_line_comment] = STATE(708), - [sym_block_comment] = STATE(708), + [710] = { + [sym_line_comment] = STATE(710), + [sym_block_comment] = STATE(710), [ts_builtin_sym_end] = ACTIONS(2575), [sym_identifier] = ACTIONS(2577), [anon_sym_SEMI] = ACTIONS(2575), @@ -87928,9 +88256,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2575), [sym_float_literal] = ACTIONS(2575), }, - [709] = { - [sym_line_comment] = STATE(709), - [sym_block_comment] = STATE(709), + [711] = { + [sym_line_comment] = STATE(711), + [sym_block_comment] = STATE(711), [ts_builtin_sym_end] = ACTIONS(2579), [sym_identifier] = ACTIONS(2581), [anon_sym_SEMI] = ACTIONS(2579), @@ -88009,9 +88337,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2579), [sym_float_literal] = ACTIONS(2579), }, - [710] = { - [sym_line_comment] = STATE(710), - [sym_block_comment] = STATE(710), + [712] = { + [sym_line_comment] = STATE(712), + [sym_block_comment] = STATE(712), [ts_builtin_sym_end] = ACTIONS(2583), [sym_identifier] = ACTIONS(2585), [anon_sym_SEMI] = ACTIONS(2583), @@ -88090,9 +88418,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2583), [sym_float_literal] = ACTIONS(2583), }, - [711] = { - [sym_line_comment] = STATE(711), - [sym_block_comment] = STATE(711), + [713] = { + [sym_line_comment] = STATE(713), + [sym_block_comment] = STATE(713), [ts_builtin_sym_end] = ACTIONS(2587), [sym_identifier] = ACTIONS(2589), [anon_sym_SEMI] = ACTIONS(2587), @@ -88171,9 +88499,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2587), [sym_float_literal] = ACTIONS(2587), }, - [712] = { - [sym_line_comment] = STATE(712), - [sym_block_comment] = STATE(712), + [714] = { + [sym_line_comment] = STATE(714), + [sym_block_comment] = STATE(714), [ts_builtin_sym_end] = ACTIONS(2591), [sym_identifier] = ACTIONS(2593), [anon_sym_SEMI] = ACTIONS(2591), @@ -88252,9 +88580,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2591), [sym_float_literal] = ACTIONS(2591), }, - [713] = { - [sym_line_comment] = STATE(713), - [sym_block_comment] = STATE(713), + [715] = { + [sym_line_comment] = STATE(715), + [sym_block_comment] = STATE(715), [ts_builtin_sym_end] = ACTIONS(2595), [sym_identifier] = ACTIONS(2597), [anon_sym_SEMI] = ACTIONS(2595), @@ -88333,9 +88661,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2595), [sym_float_literal] = ACTIONS(2595), }, - [714] = { - [sym_line_comment] = STATE(714), - [sym_block_comment] = STATE(714), + [716] = { + [sym_line_comment] = STATE(716), + [sym_block_comment] = STATE(716), [ts_builtin_sym_end] = ACTIONS(2599), [sym_identifier] = ACTIONS(2601), [anon_sym_SEMI] = ACTIONS(2599), @@ -88414,9 +88742,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2599), [sym_float_literal] = ACTIONS(2599), }, - [715] = { - [sym_line_comment] = STATE(715), - [sym_block_comment] = STATE(715), + [717] = { + [sym_line_comment] = STATE(717), + [sym_block_comment] = STATE(717), [ts_builtin_sym_end] = ACTIONS(2603), [sym_identifier] = ACTIONS(2605), [anon_sym_SEMI] = ACTIONS(2603), @@ -88495,9 +88823,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2603), [sym_float_literal] = ACTIONS(2603), }, - [716] = { - [sym_line_comment] = STATE(716), - [sym_block_comment] = STATE(716), + [718] = { + [sym_line_comment] = STATE(718), + [sym_block_comment] = STATE(718), [ts_builtin_sym_end] = ACTIONS(2607), [sym_identifier] = ACTIONS(2609), [anon_sym_SEMI] = ACTIONS(2607), @@ -88576,9 +88904,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2607), [sym_float_literal] = ACTIONS(2607), }, - [717] = { - [sym_line_comment] = STATE(717), - [sym_block_comment] = STATE(717), + [719] = { + [sym_line_comment] = STATE(719), + [sym_block_comment] = STATE(719), [ts_builtin_sym_end] = ACTIONS(2611), [sym_identifier] = ACTIONS(2613), [anon_sym_SEMI] = ACTIONS(2611), @@ -88657,9 +88985,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2611), [sym_float_literal] = ACTIONS(2611), }, - [718] = { - [sym_line_comment] = STATE(718), - [sym_block_comment] = STATE(718), + [720] = { + [sym_line_comment] = STATE(720), + [sym_block_comment] = STATE(720), [ts_builtin_sym_end] = ACTIONS(2615), [sym_identifier] = ACTIONS(2617), [anon_sym_SEMI] = ACTIONS(2615), @@ -88738,9 +89066,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2615), [sym_float_literal] = ACTIONS(2615), }, - [719] = { - [sym_line_comment] = STATE(719), - [sym_block_comment] = STATE(719), + [721] = { + [sym_line_comment] = STATE(721), + [sym_block_comment] = STATE(721), [ts_builtin_sym_end] = ACTIONS(2619), [sym_identifier] = ACTIONS(2621), [anon_sym_SEMI] = ACTIONS(2619), @@ -88819,9 +89147,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2619), [sym_float_literal] = ACTIONS(2619), }, - [720] = { - [sym_line_comment] = STATE(720), - [sym_block_comment] = STATE(720), + [722] = { + [sym_line_comment] = STATE(722), + [sym_block_comment] = STATE(722), [ts_builtin_sym_end] = ACTIONS(2623), [sym_identifier] = ACTIONS(2625), [anon_sym_SEMI] = ACTIONS(2623), @@ -88900,9 +89228,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2623), [sym_float_literal] = ACTIONS(2623), }, - [721] = { - [sym_line_comment] = STATE(721), - [sym_block_comment] = STATE(721), + [723] = { + [sym_line_comment] = STATE(723), + [sym_block_comment] = STATE(723), [ts_builtin_sym_end] = ACTIONS(2627), [sym_identifier] = ACTIONS(2629), [anon_sym_SEMI] = ACTIONS(2627), @@ -88981,9 +89309,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2627), [sym_float_literal] = ACTIONS(2627), }, - [722] = { - [sym_line_comment] = STATE(722), - [sym_block_comment] = STATE(722), + [724] = { + [sym_line_comment] = STATE(724), + [sym_block_comment] = STATE(724), [ts_builtin_sym_end] = ACTIONS(2631), [sym_identifier] = ACTIONS(2633), [anon_sym_SEMI] = ACTIONS(2631), @@ -89062,9 +89390,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2631), [sym_float_literal] = ACTIONS(2631), }, - [723] = { - [sym_line_comment] = STATE(723), - [sym_block_comment] = STATE(723), + [725] = { + [sym_line_comment] = STATE(725), + [sym_block_comment] = STATE(725), [ts_builtin_sym_end] = ACTIONS(2635), [sym_identifier] = ACTIONS(2637), [anon_sym_SEMI] = ACTIONS(2635), @@ -89143,9 +89471,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2635), [sym_float_literal] = ACTIONS(2635), }, - [724] = { - [sym_line_comment] = STATE(724), - [sym_block_comment] = STATE(724), + [726] = { + [sym_line_comment] = STATE(726), + [sym_block_comment] = STATE(726), [ts_builtin_sym_end] = ACTIONS(2639), [sym_identifier] = ACTIONS(2641), [anon_sym_SEMI] = ACTIONS(2639), @@ -89224,9 +89552,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2639), [sym_float_literal] = ACTIONS(2639), }, - [725] = { - [sym_line_comment] = STATE(725), - [sym_block_comment] = STATE(725), + [727] = { + [sym_line_comment] = STATE(727), + [sym_block_comment] = STATE(727), [ts_builtin_sym_end] = ACTIONS(2643), [sym_identifier] = ACTIONS(2645), [anon_sym_SEMI] = ACTIONS(2643), @@ -89305,9 +89633,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2643), [sym_float_literal] = ACTIONS(2643), }, - [726] = { - [sym_line_comment] = STATE(726), - [sym_block_comment] = STATE(726), + [728] = { + [sym_line_comment] = STATE(728), + [sym_block_comment] = STATE(728), [ts_builtin_sym_end] = ACTIONS(2647), [sym_identifier] = ACTIONS(2649), [anon_sym_SEMI] = ACTIONS(2647), @@ -89386,9 +89714,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2647), [sym_float_literal] = ACTIONS(2647), }, - [727] = { - [sym_line_comment] = STATE(727), - [sym_block_comment] = STATE(727), + [729] = { + [sym_line_comment] = STATE(729), + [sym_block_comment] = STATE(729), [ts_builtin_sym_end] = ACTIONS(2651), [sym_identifier] = ACTIONS(2653), [anon_sym_SEMI] = ACTIONS(2651), @@ -89467,9 +89795,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2651), [sym_float_literal] = ACTIONS(2651), }, - [728] = { - [sym_line_comment] = STATE(728), - [sym_block_comment] = STATE(728), + [730] = { + [sym_line_comment] = STATE(730), + [sym_block_comment] = STATE(730), [ts_builtin_sym_end] = ACTIONS(2655), [sym_identifier] = ACTIONS(2657), [anon_sym_SEMI] = ACTIONS(2655), @@ -89548,9 +89876,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2655), [sym_float_literal] = ACTIONS(2655), }, - [729] = { - [sym_line_comment] = STATE(729), - [sym_block_comment] = STATE(729), + [731] = { + [sym_line_comment] = STATE(731), + [sym_block_comment] = STATE(731), [ts_builtin_sym_end] = ACTIONS(2659), [sym_identifier] = ACTIONS(2661), [anon_sym_SEMI] = ACTIONS(2659), @@ -89629,9 +89957,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2659), [sym_float_literal] = ACTIONS(2659), }, - [730] = { - [sym_line_comment] = STATE(730), - [sym_block_comment] = STATE(730), + [732] = { + [sym_line_comment] = STATE(732), + [sym_block_comment] = STATE(732), [ts_builtin_sym_end] = ACTIONS(2663), [sym_identifier] = ACTIONS(2665), [anon_sym_SEMI] = ACTIONS(2663), @@ -89710,9 +90038,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2663), [sym_float_literal] = ACTIONS(2663), }, - [731] = { - [sym_line_comment] = STATE(731), - [sym_block_comment] = STATE(731), + [733] = { + [sym_line_comment] = STATE(733), + [sym_block_comment] = STATE(733), [ts_builtin_sym_end] = ACTIONS(2667), [sym_identifier] = ACTIONS(2669), [anon_sym_SEMI] = ACTIONS(2667), @@ -89791,9 +90119,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2667), [sym_float_literal] = ACTIONS(2667), }, - [732] = { - [sym_line_comment] = STATE(732), - [sym_block_comment] = STATE(732), + [734] = { + [sym_line_comment] = STATE(734), + [sym_block_comment] = STATE(734), [ts_builtin_sym_end] = ACTIONS(2671), [sym_identifier] = ACTIONS(2673), [anon_sym_SEMI] = ACTIONS(2671), @@ -89872,9 +90200,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2671), [sym_float_literal] = ACTIONS(2671), }, - [733] = { - [sym_line_comment] = STATE(733), - [sym_block_comment] = STATE(733), + [735] = { + [sym_line_comment] = STATE(735), + [sym_block_comment] = STATE(735), [ts_builtin_sym_end] = ACTIONS(2675), [sym_identifier] = ACTIONS(2677), [anon_sym_SEMI] = ACTIONS(2675), @@ -89953,9 +90281,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2675), [sym_float_literal] = ACTIONS(2675), }, - [734] = { - [sym_line_comment] = STATE(734), - [sym_block_comment] = STATE(734), + [736] = { + [sym_line_comment] = STATE(736), + [sym_block_comment] = STATE(736), [ts_builtin_sym_end] = ACTIONS(2679), [sym_identifier] = ACTIONS(2681), [anon_sym_SEMI] = ACTIONS(2679), @@ -90034,9 +90362,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2679), [sym_float_literal] = ACTIONS(2679), }, - [735] = { - [sym_line_comment] = STATE(735), - [sym_block_comment] = STATE(735), + [737] = { + [sym_line_comment] = STATE(737), + [sym_block_comment] = STATE(737), [ts_builtin_sym_end] = ACTIONS(2683), [sym_identifier] = ACTIONS(2685), [anon_sym_SEMI] = ACTIONS(2683), @@ -90115,9 +90443,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2683), [sym_float_literal] = ACTIONS(2683), }, - [736] = { - [sym_line_comment] = STATE(736), - [sym_block_comment] = STATE(736), + [738] = { + [sym_line_comment] = STATE(738), + [sym_block_comment] = STATE(738), [ts_builtin_sym_end] = ACTIONS(2687), [sym_identifier] = ACTIONS(2689), [anon_sym_SEMI] = ACTIONS(2687), @@ -90196,9 +90524,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2687), [sym_float_literal] = ACTIONS(2687), }, - [737] = { - [sym_line_comment] = STATE(737), - [sym_block_comment] = STATE(737), + [739] = { + [sym_line_comment] = STATE(739), + [sym_block_comment] = STATE(739), [ts_builtin_sym_end] = ACTIONS(2691), [sym_identifier] = ACTIONS(2693), [anon_sym_SEMI] = ACTIONS(2691), @@ -90277,90 +90605,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2691), [sym_float_literal] = ACTIONS(2691), }, - [738] = { - [sym_attribute_item] = STATE(1486), - [sym_inner_attribute_item] = STATE(1486), - [sym_bracketed_type] = STATE(3540), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3274), - [sym_macro_invocation] = STATE(3031), - [sym_scoped_identifier] = STATE(2153), - [sym_scoped_type_identifier] = STATE(2935), - [sym_match_arm] = STATE(1487), - [sym_last_match_arm] = STATE(3351), - [sym_match_pattern] = STATE(3402), - [sym_const_block] = STATE(3031), - [sym__pattern] = STATE(3016), - [sym_tuple_pattern] = STATE(3031), - [sym_slice_pattern] = STATE(3031), - [sym_tuple_struct_pattern] = STATE(3031), - [sym_struct_pattern] = STATE(3031), - [sym_remaining_field_pattern] = STATE(3031), - [sym_mut_pattern] = STATE(3031), - [sym_range_pattern] = STATE(3031), - [sym_ref_pattern] = STATE(3031), - [sym_captured_pattern] = STATE(3031), - [sym_reference_pattern] = STATE(3031), - [sym_or_pattern] = STATE(3031), + [740] = { + [sym_attribute_item] = STATE(1485), + [sym_inner_attribute_item] = STATE(1485), + [sym_bracketed_type] = STATE(3551), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3283), + [sym_macro_invocation] = STATE(2882), + [sym_scoped_identifier] = STATE(2161), + [sym_scoped_type_identifier] = STATE(2974), + [sym_match_arm] = STATE(1492), + [sym_last_match_arm] = STATE(3445), + [sym_match_pattern] = STATE(3417), + [sym_const_block] = STATE(2882), + [sym__pattern] = STATE(2763), + [sym_tuple_pattern] = STATE(2882), + [sym_slice_pattern] = STATE(2882), + [sym_tuple_struct_pattern] = STATE(2882), + [sym_struct_pattern] = STATE(2882), + [sym_remaining_field_pattern] = STATE(2882), + [sym_mut_pattern] = STATE(2882), + [sym_range_pattern] = STATE(2882), + [sym_ref_pattern] = STATE(2882), + [sym_captured_pattern] = STATE(2882), + [sym_reference_pattern] = STATE(2882), + [sym_or_pattern] = STATE(2882), [sym__literal_pattern] = STATE(2307), - [sym_negative_literal] = STATE(2311), - [sym_string_literal] = STATE(2311), - [sym_raw_string_literal] = STATE(2311), - [sym_boolean_literal] = STATE(2311), - [sym_line_comment] = STATE(738), - [sym_block_comment] = STATE(738), - [aux_sym_match_block_repeat1] = STATE(753), - [aux_sym_match_arm_repeat1] = STATE(761), - [sym_identifier] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1637), - [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_DASH] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_COLON_COLON] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_ref] = ACTIONS(1661), - [sym_mutable_specifier] = ACTIONS(1663), - [sym_integer_literal] = ACTIONS(1665), - [aux_sym_string_literal_token1] = ACTIONS(1667), - [sym_char_literal] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1671), - [sym_super] = ACTIONS(1671), - [sym_crate] = ACTIONS(1671), - [sym_metavariable] = ACTIONS(1673), - [sym__raw_string_literal_start] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(1665), + [sym_negative_literal] = STATE(2305), + [sym_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_boolean_literal] = STATE(2305), + [sym_line_comment] = STATE(740), + [sym_block_comment] = STATE(740), + [aux_sym_match_block_repeat1] = STATE(758), + [aux_sym_match_arm_repeat1] = STATE(766), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(1641), + [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_DASH] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1657), + [anon_sym_POUND] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1663), + [anon_sym_union] = ACTIONS(1663), + [anon_sym_ref] = ACTIONS(1665), + [sym_mutable_specifier] = ACTIONS(1667), + [sym_integer_literal] = ACTIONS(1669), + [aux_sym_string_literal_token1] = ACTIONS(1671), + [sym_char_literal] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1675), + [sym_super] = ACTIONS(1675), + [sym_crate] = ACTIONS(1675), + [sym_metavariable] = ACTIONS(1677), + [sym__raw_string_literal_start] = ACTIONS(1679), + [sym_float_literal] = ACTIONS(1669), }, - [739] = { - [sym_line_comment] = STATE(739), - [sym_block_comment] = STATE(739), + [741] = { + [sym_line_comment] = STATE(741), + [sym_block_comment] = STATE(741), [ts_builtin_sym_end] = ACTIONS(2695), [sym_identifier] = ACTIONS(2697), [anon_sym_SEMI] = ACTIONS(2695), @@ -90439,9 +90767,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2695), [sym_float_literal] = ACTIONS(2695), }, - [740] = { - [sym_line_comment] = STATE(740), - [sym_block_comment] = STATE(740), + [742] = { + [sym_line_comment] = STATE(742), + [sym_block_comment] = STATE(742), [ts_builtin_sym_end] = ACTIONS(2699), [sym_identifier] = ACTIONS(2701), [anon_sym_SEMI] = ACTIONS(2699), @@ -90520,9 +90848,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2699), [sym_float_literal] = ACTIONS(2699), }, - [741] = { - [sym_line_comment] = STATE(741), - [sym_block_comment] = STATE(741), + [743] = { + [sym_line_comment] = STATE(743), + [sym_block_comment] = STATE(743), [ts_builtin_sym_end] = ACTIONS(2703), [sym_identifier] = ACTIONS(2705), [anon_sym_SEMI] = ACTIONS(2703), @@ -90601,9 +90929,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2703), [sym_float_literal] = ACTIONS(2703), }, - [742] = { - [sym_line_comment] = STATE(742), - [sym_block_comment] = STATE(742), + [744] = { + [sym_line_comment] = STATE(744), + [sym_block_comment] = STATE(744), [ts_builtin_sym_end] = ACTIONS(2707), [sym_identifier] = ACTIONS(2709), [anon_sym_SEMI] = ACTIONS(2707), @@ -90682,9 +91010,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2707), [sym_float_literal] = ACTIONS(2707), }, - [743] = { - [sym_line_comment] = STATE(743), - [sym_block_comment] = STATE(743), + [745] = { + [sym_line_comment] = STATE(745), + [sym_block_comment] = STATE(745), [ts_builtin_sym_end] = ACTIONS(2711), [sym_identifier] = ACTIONS(2713), [anon_sym_SEMI] = ACTIONS(2711), @@ -90763,9 +91091,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2711), [sym_float_literal] = ACTIONS(2711), }, - [744] = { - [sym_line_comment] = STATE(744), - [sym_block_comment] = STATE(744), + [746] = { + [sym_line_comment] = STATE(746), + [sym_block_comment] = STATE(746), [ts_builtin_sym_end] = ACTIONS(2715), [sym_identifier] = ACTIONS(2717), [anon_sym_SEMI] = ACTIONS(2715), @@ -90844,9 +91172,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2715), [sym_float_literal] = ACTIONS(2715), }, - [745] = { - [sym_line_comment] = STATE(745), - [sym_block_comment] = STATE(745), + [747] = { + [sym_line_comment] = STATE(747), + [sym_block_comment] = STATE(747), [ts_builtin_sym_end] = ACTIONS(2719), [sym_identifier] = ACTIONS(2721), [anon_sym_SEMI] = ACTIONS(2719), @@ -90925,90 +91253,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2719), [sym_float_literal] = ACTIONS(2719), }, - [746] = { - [sym_attribute_item] = STATE(1486), - [sym_inner_attribute_item] = STATE(1486), - [sym_bracketed_type] = STATE(3540), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3274), - [sym_macro_invocation] = STATE(3031), - [sym_scoped_identifier] = STATE(2153), - [sym_scoped_type_identifier] = STATE(2935), - [sym_match_arm] = STATE(1487), - [sym_last_match_arm] = STATE(3498), - [sym_match_pattern] = STATE(3402), - [sym_const_block] = STATE(3031), - [sym__pattern] = STATE(3016), - [sym_tuple_pattern] = STATE(3031), - [sym_slice_pattern] = STATE(3031), - [sym_tuple_struct_pattern] = STATE(3031), - [sym_struct_pattern] = STATE(3031), - [sym_remaining_field_pattern] = STATE(3031), - [sym_mut_pattern] = STATE(3031), - [sym_range_pattern] = STATE(3031), - [sym_ref_pattern] = STATE(3031), - [sym_captured_pattern] = STATE(3031), - [sym_reference_pattern] = STATE(3031), - [sym_or_pattern] = STATE(3031), - [sym__literal_pattern] = STATE(2307), - [sym_negative_literal] = STATE(2311), - [sym_string_literal] = STATE(2311), - [sym_raw_string_literal] = STATE(2311), - [sym_boolean_literal] = STATE(2311), - [sym_line_comment] = STATE(746), - [sym_block_comment] = STATE(746), - [aux_sym_match_block_repeat1] = STATE(753), - [aux_sym_match_arm_repeat1] = STATE(761), - [sym_identifier] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1637), - [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_DASH] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_COLON_COLON] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_ref] = ACTIONS(1661), - [sym_mutable_specifier] = ACTIONS(1663), - [sym_integer_literal] = ACTIONS(1665), - [aux_sym_string_literal_token1] = ACTIONS(1667), - [sym_char_literal] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1671), - [sym_super] = ACTIONS(1671), - [sym_crate] = ACTIONS(1671), - [sym_metavariable] = ACTIONS(1673), - [sym__raw_string_literal_start] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(1665), - }, - [747] = { - [sym_line_comment] = STATE(747), - [sym_block_comment] = STATE(747), + [748] = { + [sym_line_comment] = STATE(748), + [sym_block_comment] = STATE(748), [ts_builtin_sym_end] = ACTIONS(2723), [sym_identifier] = ACTIONS(2725), [anon_sym_SEMI] = ACTIONS(2723), @@ -91087,87 +91334,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2723), [sym_float_literal] = ACTIONS(2723), }, - [748] = { - [sym_attribute_item] = STATE(1486), - [sym_inner_attribute_item] = STATE(1486), - [sym_bracketed_type] = STATE(3540), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3274), - [sym_macro_invocation] = STATE(3031), - [sym_scoped_identifier] = STATE(2153), - [sym_scoped_type_identifier] = STATE(2935), - [sym_match_arm] = STATE(1487), - [sym_last_match_arm] = STATE(3392), - [sym_match_pattern] = STATE(3402), - [sym_const_block] = STATE(3031), - [sym__pattern] = STATE(3016), - [sym_tuple_pattern] = STATE(3031), - [sym_slice_pattern] = STATE(3031), - [sym_tuple_struct_pattern] = STATE(3031), - [sym_struct_pattern] = STATE(3031), - [sym_remaining_field_pattern] = STATE(3031), - [sym_mut_pattern] = STATE(3031), - [sym_range_pattern] = STATE(3031), - [sym_ref_pattern] = STATE(3031), - [sym_captured_pattern] = STATE(3031), - [sym_reference_pattern] = STATE(3031), - [sym_or_pattern] = STATE(3031), - [sym__literal_pattern] = STATE(2307), - [sym_negative_literal] = STATE(2311), - [sym_string_literal] = STATE(2311), - [sym_raw_string_literal] = STATE(2311), - [sym_boolean_literal] = STATE(2311), - [sym_line_comment] = STATE(748), - [sym_block_comment] = STATE(748), - [aux_sym_match_block_repeat1] = STATE(753), - [aux_sym_match_arm_repeat1] = STATE(761), - [sym_identifier] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1637), - [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_DASH] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_COLON_COLON] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_ref] = ACTIONS(1661), - [sym_mutable_specifier] = ACTIONS(1663), - [sym_integer_literal] = ACTIONS(1665), - [aux_sym_string_literal_token1] = ACTIONS(1667), - [sym_char_literal] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1671), - [sym_super] = ACTIONS(1671), - [sym_crate] = ACTIONS(1671), - [sym_metavariable] = ACTIONS(1673), - [sym__raw_string_literal_start] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(1665), - }, [749] = { [sym_line_comment] = STATE(749), [sym_block_comment] = STATE(749), @@ -91331,8 +91497,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2731), }, [751] = { + [sym_attribute_item] = STATE(1485), + [sym_inner_attribute_item] = STATE(1485), + [sym_bracketed_type] = STATE(3551), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3283), + [sym_macro_invocation] = STATE(2882), + [sym_scoped_identifier] = STATE(2161), + [sym_scoped_type_identifier] = STATE(2974), + [sym_match_arm] = STATE(1492), + [sym_last_match_arm] = STATE(3525), + [sym_match_pattern] = STATE(3417), + [sym_const_block] = STATE(2882), + [sym__pattern] = STATE(2763), + [sym_tuple_pattern] = STATE(2882), + [sym_slice_pattern] = STATE(2882), + [sym_tuple_struct_pattern] = STATE(2882), + [sym_struct_pattern] = STATE(2882), + [sym_remaining_field_pattern] = STATE(2882), + [sym_mut_pattern] = STATE(2882), + [sym_range_pattern] = STATE(2882), + [sym_ref_pattern] = STATE(2882), + [sym_captured_pattern] = STATE(2882), + [sym_reference_pattern] = STATE(2882), + [sym_or_pattern] = STATE(2882), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2305), + [sym_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_boolean_literal] = STATE(2305), [sym_line_comment] = STATE(751), [sym_block_comment] = STATE(751), + [aux_sym_match_block_repeat1] = STATE(758), + [aux_sym_match_arm_repeat1] = STATE(766), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(1641), + [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_DASH] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1657), + [anon_sym_POUND] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1663), + [anon_sym_union] = ACTIONS(1663), + [anon_sym_ref] = ACTIONS(1665), + [sym_mutable_specifier] = ACTIONS(1667), + [sym_integer_literal] = ACTIONS(1669), + [aux_sym_string_literal_token1] = ACTIONS(1671), + [sym_char_literal] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1675), + [sym_super] = ACTIONS(1675), + [sym_crate] = ACTIONS(1675), + [sym_metavariable] = ACTIONS(1677), + [sym__raw_string_literal_start] = ACTIONS(1679), + [sym_float_literal] = ACTIONS(1669), + }, + [752] = { + [sym_line_comment] = STATE(752), + [sym_block_comment] = STATE(752), [ts_builtin_sym_end] = ACTIONS(2735), [sym_identifier] = ACTIONS(2737), [anon_sym_SEMI] = ACTIONS(2735), @@ -91411,18483 +91658,18726 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2735), [sym_float_literal] = ACTIONS(2735), }, - [752] = { - [sym_empty_statement] = STATE(1410), - [sym_macro_definition] = STATE(1410), - [sym_attribute_item] = STATE(1410), - [sym_inner_attribute_item] = STATE(1410), - [sym_mod_item] = STATE(1410), - [sym_foreign_mod_item] = STATE(1410), - [sym_struct_item] = STATE(1410), - [sym_union_item] = STATE(1410), - [sym_enum_item] = STATE(1410), - [sym_extern_crate_declaration] = STATE(1410), - [sym_const_item] = STATE(1410), - [sym_static_item] = STATE(1410), - [sym_type_item] = STATE(1410), - [sym_function_item] = STATE(1410), - [sym_function_signature_item] = STATE(1410), - [sym_function_modifiers] = STATE(3609), - [sym_impl_item] = STATE(1410), - [sym_trait_item] = STATE(1410), - [sym_associated_type] = STATE(1410), - [sym_let_declaration] = STATE(1410), - [sym_use_declaration] = STATE(1410), - [sym_extern_modifier] = STATE(2163), - [sym_visibility_modifier] = STATE(1944), - [sym_bracketed_type] = STATE(3340), - [sym_generic_type_with_turbofish] = STATE(3366), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(3205), - [sym_line_comment] = STATE(752), - [sym_block_comment] = STATE(752), - [aux_sym_declaration_list_repeat1] = STATE(752), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2739), - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_macro_rules_BANG] = ACTIONS(2745), - [anon_sym_RBRACE] = ACTIONS(2748), - [anon_sym_u8] = ACTIONS(2750), - [anon_sym_i8] = ACTIONS(2750), - [anon_sym_u16] = ACTIONS(2750), - [anon_sym_i16] = ACTIONS(2750), - [anon_sym_u32] = ACTIONS(2750), - [anon_sym_i32] = ACTIONS(2750), - [anon_sym_u64] = ACTIONS(2750), - [anon_sym_i64] = ACTIONS(2750), - [anon_sym_u128] = ACTIONS(2750), - [anon_sym_i128] = ACTIONS(2750), - [anon_sym_isize] = ACTIONS(2750), - [anon_sym_usize] = ACTIONS(2750), - [anon_sym_f32] = ACTIONS(2750), - [anon_sym_f64] = ACTIONS(2750), - [anon_sym_bool] = ACTIONS(2750), - [anon_sym_str] = ACTIONS(2750), - [anon_sym_char] = ACTIONS(2750), - [anon_sym_LT] = ACTIONS(2753), - [anon_sym_COLON_COLON] = ACTIONS(2756), - [anon_sym_POUND] = ACTIONS(2759), - [anon_sym_async] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2765), - [anon_sym_default] = ACTIONS(2768), - [anon_sym_enum] = ACTIONS(2771), - [anon_sym_fn] = ACTIONS(2774), - [anon_sym_impl] = ACTIONS(2777), - [anon_sym_let] = ACTIONS(2780), - [anon_sym_mod] = ACTIONS(2783), - [anon_sym_pub] = ACTIONS(2786), - [anon_sym_static] = ACTIONS(2789), - [anon_sym_struct] = ACTIONS(2792), - [anon_sym_trait] = ACTIONS(2795), - [anon_sym_type] = ACTIONS(2798), - [anon_sym_union] = ACTIONS(2801), - [anon_sym_unsafe] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2807), - [anon_sym_extern] = ACTIONS(2810), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2813), - [sym_super] = ACTIONS(2813), - [sym_crate] = ACTIONS(2816), - [sym_metavariable] = ACTIONS(2819), - }, [753] = { - [sym_attribute_item] = STATE(1486), - [sym_inner_attribute_item] = STATE(1486), - [sym_bracketed_type] = STATE(3540), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3274), - [sym_macro_invocation] = STATE(3031), - [sym_scoped_identifier] = STATE(2153), - [sym_scoped_type_identifier] = STATE(2935), - [sym_match_arm] = STATE(1487), - [sym_match_pattern] = STATE(3452), - [sym_const_block] = STATE(3031), - [sym__pattern] = STATE(3016), - [sym_tuple_pattern] = STATE(3031), - [sym_slice_pattern] = STATE(3031), - [sym_tuple_struct_pattern] = STATE(3031), - [sym_struct_pattern] = STATE(3031), - [sym_remaining_field_pattern] = STATE(3031), - [sym_mut_pattern] = STATE(3031), - [sym_range_pattern] = STATE(3031), - [sym_ref_pattern] = STATE(3031), - [sym_captured_pattern] = STATE(3031), - [sym_reference_pattern] = STATE(3031), - [sym_or_pattern] = STATE(3031), - [sym__literal_pattern] = STATE(2307), - [sym_negative_literal] = STATE(2311), - [sym_string_literal] = STATE(2311), - [sym_raw_string_literal] = STATE(2311), - [sym_boolean_literal] = STATE(2311), [sym_line_comment] = STATE(753), [sym_block_comment] = STATE(753), - [aux_sym_match_block_repeat1] = STATE(753), - [aux_sym_match_arm_repeat1] = STATE(762), - [sym_identifier] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2825), - [anon_sym_LBRACK] = ACTIONS(2828), - [anon_sym_u8] = ACTIONS(2831), - [anon_sym_i8] = ACTIONS(2831), - [anon_sym_u16] = ACTIONS(2831), - [anon_sym_i16] = ACTIONS(2831), - [anon_sym_u32] = ACTIONS(2831), - [anon_sym_i32] = ACTIONS(2831), - [anon_sym_u64] = ACTIONS(2831), - [anon_sym_i64] = ACTIONS(2831), - [anon_sym_u128] = ACTIONS(2831), - [anon_sym_i128] = ACTIONS(2831), - [anon_sym_isize] = ACTIONS(2831), - [anon_sym_usize] = ACTIONS(2831), - [anon_sym_f32] = ACTIONS(2831), - [anon_sym_f64] = ACTIONS(2831), - [anon_sym_bool] = ACTIONS(2831), - [anon_sym_str] = ACTIONS(2831), - [anon_sym_char] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_AMP] = ACTIONS(2837), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_LT] = ACTIONS(2843), - [anon_sym__] = ACTIONS(2846), - [anon_sym_DOT_DOT] = ACTIONS(2849), - [anon_sym_COLON_COLON] = ACTIONS(2852), - [anon_sym_POUND] = ACTIONS(2855), - [anon_sym_const] = ACTIONS(2858), - [anon_sym_default] = ACTIONS(2861), - [anon_sym_union] = ACTIONS(2861), - [anon_sym_ref] = ACTIONS(2864), - [sym_mutable_specifier] = ACTIONS(2867), - [sym_integer_literal] = ACTIONS(2870), - [aux_sym_string_literal_token1] = ACTIONS(2873), - [sym_char_literal] = ACTIONS(2870), - [anon_sym_true] = ACTIONS(2876), - [anon_sym_false] = ACTIONS(2876), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2879), - [sym_super] = ACTIONS(2879), - [sym_crate] = ACTIONS(2879), - [sym_metavariable] = ACTIONS(2882), - [sym__raw_string_literal_start] = ACTIONS(2885), - [sym_float_literal] = ACTIONS(2870), + [ts_builtin_sym_end] = ACTIONS(2739), + [sym_identifier] = ACTIONS(2741), + [anon_sym_SEMI] = ACTIONS(2739), + [anon_sym_macro_rules_BANG] = ACTIONS(2739), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2739), + [anon_sym_RBRACE] = ACTIONS(2739), + [anon_sym_STAR] = ACTIONS(2739), + [anon_sym_u8] = ACTIONS(2741), + [anon_sym_i8] = ACTIONS(2741), + [anon_sym_u16] = ACTIONS(2741), + [anon_sym_i16] = ACTIONS(2741), + [anon_sym_u32] = ACTIONS(2741), + [anon_sym_i32] = ACTIONS(2741), + [anon_sym_u64] = ACTIONS(2741), + [anon_sym_i64] = ACTIONS(2741), + [anon_sym_u128] = ACTIONS(2741), + [anon_sym_i128] = ACTIONS(2741), + [anon_sym_isize] = ACTIONS(2741), + [anon_sym_usize] = ACTIONS(2741), + [anon_sym_f32] = ACTIONS(2741), + [anon_sym_f64] = ACTIONS(2741), + [anon_sym_bool] = ACTIONS(2741), + [anon_sym_str] = ACTIONS(2741), + [anon_sym_char] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2739), + [anon_sym_BANG] = ACTIONS(2739), + [anon_sym_AMP] = ACTIONS(2739), + [anon_sym_PIPE] = ACTIONS(2739), + [anon_sym_LT] = ACTIONS(2739), + [anon_sym_DOT_DOT] = ACTIONS(2739), + [anon_sym_COLON_COLON] = ACTIONS(2739), + [anon_sym_POUND] = ACTIONS(2739), + [anon_sym_SQUOTE] = ACTIONS(2741), + [anon_sym_async] = ACTIONS(2741), + [anon_sym_break] = ACTIONS(2741), + [anon_sym_const] = ACTIONS(2741), + [anon_sym_continue] = ACTIONS(2741), + [anon_sym_default] = ACTIONS(2741), + [anon_sym_enum] = ACTIONS(2741), + [anon_sym_fn] = ACTIONS(2741), + [anon_sym_for] = ACTIONS(2741), + [anon_sym_gen] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_impl] = ACTIONS(2741), + [anon_sym_let] = ACTIONS(2741), + [anon_sym_loop] = ACTIONS(2741), + [anon_sym_match] = ACTIONS(2741), + [anon_sym_mod] = ACTIONS(2741), + [anon_sym_pub] = ACTIONS(2741), + [anon_sym_return] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_trait] = ACTIONS(2741), + [anon_sym_type] = ACTIONS(2741), + [anon_sym_union] = ACTIONS(2741), + [anon_sym_unsafe] = ACTIONS(2741), + [anon_sym_use] = ACTIONS(2741), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_extern] = ACTIONS(2741), + [anon_sym_yield] = ACTIONS(2741), + [anon_sym_move] = ACTIONS(2741), + [anon_sym_try] = ACTIONS(2741), + [sym_integer_literal] = ACTIONS(2739), + [aux_sym_string_literal_token1] = ACTIONS(2739), + [sym_char_literal] = ACTIONS(2739), + [anon_sym_true] = ACTIONS(2741), + [anon_sym_false] = ACTIONS(2741), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2741), + [sym_super] = ACTIONS(2741), + [sym_crate] = ACTIONS(2741), + [sym_metavariable] = ACTIONS(2739), + [sym__raw_string_literal_start] = ACTIONS(2739), + [sym_float_literal] = ACTIONS(2739), }, [754] = { - [sym_empty_statement] = STATE(1410), - [sym_macro_definition] = STATE(1410), - [sym_attribute_item] = STATE(1410), - [sym_inner_attribute_item] = STATE(1410), - [sym_mod_item] = STATE(1410), - [sym_foreign_mod_item] = STATE(1410), - [sym_struct_item] = STATE(1410), - [sym_union_item] = STATE(1410), - [sym_enum_item] = STATE(1410), - [sym_extern_crate_declaration] = STATE(1410), - [sym_const_item] = STATE(1410), - [sym_static_item] = STATE(1410), - [sym_type_item] = STATE(1410), - [sym_function_item] = STATE(1410), - [sym_function_signature_item] = STATE(1410), - [sym_function_modifiers] = STATE(3609), - [sym_impl_item] = STATE(1410), - [sym_trait_item] = STATE(1410), - [sym_associated_type] = STATE(1410), - [sym_let_declaration] = STATE(1410), - [sym_use_declaration] = STATE(1410), - [sym_extern_modifier] = STATE(2163), - [sym_visibility_modifier] = STATE(1944), - [sym_bracketed_type] = STATE(3340), - [sym_generic_type_with_turbofish] = STATE(3366), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(3205), + [sym_attribute_item] = STATE(1485), + [sym_inner_attribute_item] = STATE(1485), + [sym_bracketed_type] = STATE(3551), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3283), + [sym_macro_invocation] = STATE(2882), + [sym_scoped_identifier] = STATE(2161), + [sym_scoped_type_identifier] = STATE(2974), + [sym_match_arm] = STATE(1492), + [sym_last_match_arm] = STATE(3406), + [sym_match_pattern] = STATE(3417), + [sym_const_block] = STATE(2882), + [sym__pattern] = STATE(2763), + [sym_tuple_pattern] = STATE(2882), + [sym_slice_pattern] = STATE(2882), + [sym_tuple_struct_pattern] = STATE(2882), + [sym_struct_pattern] = STATE(2882), + [sym_remaining_field_pattern] = STATE(2882), + [sym_mut_pattern] = STATE(2882), + [sym_range_pattern] = STATE(2882), + [sym_ref_pattern] = STATE(2882), + [sym_captured_pattern] = STATE(2882), + [sym_reference_pattern] = STATE(2882), + [sym_or_pattern] = STATE(2882), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2305), + [sym_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_boolean_literal] = STATE(2305), [sym_line_comment] = STATE(754), [sym_block_comment] = STATE(754), - [aux_sym_declaration_list_repeat1] = STATE(755), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2888), - [anon_sym_SEMI] = ACTIONS(2890), - [anon_sym_macro_rules_BANG] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2894), - [anon_sym_u8] = ACTIONS(2896), - [anon_sym_i8] = ACTIONS(2896), - [anon_sym_u16] = ACTIONS(2896), - [anon_sym_i16] = ACTIONS(2896), - [anon_sym_u32] = ACTIONS(2896), - [anon_sym_i32] = ACTIONS(2896), - [anon_sym_u64] = ACTIONS(2896), - [anon_sym_i64] = ACTIONS(2896), - [anon_sym_u128] = ACTIONS(2896), - [anon_sym_i128] = ACTIONS(2896), - [anon_sym_isize] = ACTIONS(2896), - [anon_sym_usize] = ACTIONS(2896), - [anon_sym_f32] = ACTIONS(2896), - [anon_sym_f64] = ACTIONS(2896), - [anon_sym_bool] = ACTIONS(2896), - [anon_sym_str] = ACTIONS(2896), - [anon_sym_char] = ACTIONS(2896), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2898), - [anon_sym_POUND] = ACTIONS(2900), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(2902), - [anon_sym_default] = ACTIONS(2904), - [anon_sym_enum] = ACTIONS(2906), - [anon_sym_fn] = ACTIONS(2908), - [anon_sym_impl] = ACTIONS(2910), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_mod] = ACTIONS(2914), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2918), - [anon_sym_trait] = ACTIONS(2920), - [anon_sym_type] = ACTIONS(2922), - [anon_sym_union] = ACTIONS(2924), - [anon_sym_unsafe] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_extern] = ACTIONS(2930), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2932), - [sym_super] = ACTIONS(2932), - [sym_crate] = ACTIONS(2934), - [sym_metavariable] = ACTIONS(2936), + [aux_sym_match_block_repeat1] = STATE(758), + [aux_sym_match_arm_repeat1] = STATE(766), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(1641), + [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_DASH] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1657), + [anon_sym_POUND] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1663), + [anon_sym_union] = ACTIONS(1663), + [anon_sym_ref] = ACTIONS(1665), + [sym_mutable_specifier] = ACTIONS(1667), + [sym_integer_literal] = ACTIONS(1669), + [aux_sym_string_literal_token1] = ACTIONS(1671), + [sym_char_literal] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1675), + [sym_super] = ACTIONS(1675), + [sym_crate] = ACTIONS(1675), + [sym_metavariable] = ACTIONS(1677), + [sym__raw_string_literal_start] = ACTIONS(1679), + [sym_float_literal] = ACTIONS(1669), }, [755] = { - [sym_empty_statement] = STATE(1410), - [sym_macro_definition] = STATE(1410), - [sym_attribute_item] = STATE(1410), - [sym_inner_attribute_item] = STATE(1410), - [sym_mod_item] = STATE(1410), - [sym_foreign_mod_item] = STATE(1410), - [sym_struct_item] = STATE(1410), - [sym_union_item] = STATE(1410), - [sym_enum_item] = STATE(1410), - [sym_extern_crate_declaration] = STATE(1410), - [sym_const_item] = STATE(1410), - [sym_static_item] = STATE(1410), - [sym_type_item] = STATE(1410), - [sym_function_item] = STATE(1410), - [sym_function_signature_item] = STATE(1410), - [sym_function_modifiers] = STATE(3609), - [sym_impl_item] = STATE(1410), - [sym_trait_item] = STATE(1410), - [sym_associated_type] = STATE(1410), - [sym_let_declaration] = STATE(1410), - [sym_use_declaration] = STATE(1410), - [sym_extern_modifier] = STATE(2163), - [sym_visibility_modifier] = STATE(1944), - [sym_bracketed_type] = STATE(3340), - [sym_generic_type_with_turbofish] = STATE(3366), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(3205), [sym_line_comment] = STATE(755), [sym_block_comment] = STATE(755), - [aux_sym_declaration_list_repeat1] = STATE(752), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2888), - [anon_sym_SEMI] = ACTIONS(2890), - [anon_sym_macro_rules_BANG] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2938), - [anon_sym_u8] = ACTIONS(2896), - [anon_sym_i8] = ACTIONS(2896), - [anon_sym_u16] = ACTIONS(2896), - [anon_sym_i16] = ACTIONS(2896), - [anon_sym_u32] = ACTIONS(2896), - [anon_sym_i32] = ACTIONS(2896), - [anon_sym_u64] = ACTIONS(2896), - [anon_sym_i64] = ACTIONS(2896), - [anon_sym_u128] = ACTIONS(2896), - [anon_sym_i128] = ACTIONS(2896), - [anon_sym_isize] = ACTIONS(2896), - [anon_sym_usize] = ACTIONS(2896), - [anon_sym_f32] = ACTIONS(2896), - [anon_sym_f64] = ACTIONS(2896), - [anon_sym_bool] = ACTIONS(2896), - [anon_sym_str] = ACTIONS(2896), - [anon_sym_char] = ACTIONS(2896), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2898), - [anon_sym_POUND] = ACTIONS(2900), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(2902), - [anon_sym_default] = ACTIONS(2904), - [anon_sym_enum] = ACTIONS(2906), - [anon_sym_fn] = ACTIONS(2908), - [anon_sym_impl] = ACTIONS(2910), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_mod] = ACTIONS(2914), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2918), - [anon_sym_trait] = ACTIONS(2920), - [anon_sym_type] = ACTIONS(2922), - [anon_sym_union] = ACTIONS(2924), - [anon_sym_unsafe] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_extern] = ACTIONS(2930), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2932), - [sym_super] = ACTIONS(2932), - [sym_crate] = ACTIONS(2934), - [sym_metavariable] = ACTIONS(2936), + [ts_builtin_sym_end] = ACTIONS(2743), + [sym_identifier] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(2743), + [anon_sym_macro_rules_BANG] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_RBRACE] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_u8] = ACTIONS(2745), + [anon_sym_i8] = ACTIONS(2745), + [anon_sym_u16] = ACTIONS(2745), + [anon_sym_i16] = ACTIONS(2745), + [anon_sym_u32] = ACTIONS(2745), + [anon_sym_i32] = ACTIONS(2745), + [anon_sym_u64] = ACTIONS(2745), + [anon_sym_i64] = ACTIONS(2745), + [anon_sym_u128] = ACTIONS(2745), + [anon_sym_i128] = ACTIONS(2745), + [anon_sym_isize] = ACTIONS(2745), + [anon_sym_usize] = ACTIONS(2745), + [anon_sym_f32] = ACTIONS(2745), + [anon_sym_f64] = ACTIONS(2745), + [anon_sym_bool] = ACTIONS(2745), + [anon_sym_str] = ACTIONS(2745), + [anon_sym_char] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_PIPE] = ACTIONS(2743), + [anon_sym_LT] = ACTIONS(2743), + [anon_sym_DOT_DOT] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2743), + [anon_sym_POUND] = ACTIONS(2743), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_async] = ACTIONS(2745), + [anon_sym_break] = ACTIONS(2745), + [anon_sym_const] = ACTIONS(2745), + [anon_sym_continue] = ACTIONS(2745), + [anon_sym_default] = ACTIONS(2745), + [anon_sym_enum] = ACTIONS(2745), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_for] = ACTIONS(2745), + [anon_sym_gen] = ACTIONS(2745), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_impl] = ACTIONS(2745), + [anon_sym_let] = ACTIONS(2745), + [anon_sym_loop] = ACTIONS(2745), + [anon_sym_match] = ACTIONS(2745), + [anon_sym_mod] = ACTIONS(2745), + [anon_sym_pub] = ACTIONS(2745), + [anon_sym_return] = ACTIONS(2745), + [anon_sym_static] = ACTIONS(2745), + [anon_sym_struct] = ACTIONS(2745), + [anon_sym_trait] = ACTIONS(2745), + [anon_sym_type] = ACTIONS(2745), + [anon_sym_union] = ACTIONS(2745), + [anon_sym_unsafe] = ACTIONS(2745), + [anon_sym_use] = ACTIONS(2745), + [anon_sym_while] = ACTIONS(2745), + [anon_sym_extern] = ACTIONS(2745), + [anon_sym_yield] = ACTIONS(2745), + [anon_sym_move] = ACTIONS(2745), + [anon_sym_try] = ACTIONS(2745), + [sym_integer_literal] = ACTIONS(2743), + [aux_sym_string_literal_token1] = ACTIONS(2743), + [sym_char_literal] = ACTIONS(2743), + [anon_sym_true] = ACTIONS(2745), + [anon_sym_false] = ACTIONS(2745), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2745), + [sym_super] = ACTIONS(2745), + [sym_crate] = ACTIONS(2745), + [sym_metavariable] = ACTIONS(2743), + [sym__raw_string_literal_start] = ACTIONS(2743), + [sym_float_literal] = ACTIONS(2743), }, [756] = { - [sym_empty_statement] = STATE(1410), - [sym_macro_definition] = STATE(1410), - [sym_attribute_item] = STATE(1410), - [sym_inner_attribute_item] = STATE(1410), - [sym_mod_item] = STATE(1410), - [sym_foreign_mod_item] = STATE(1410), - [sym_struct_item] = STATE(1410), - [sym_union_item] = STATE(1410), - [sym_enum_item] = STATE(1410), - [sym_extern_crate_declaration] = STATE(1410), - [sym_const_item] = STATE(1410), - [sym_static_item] = STATE(1410), - [sym_type_item] = STATE(1410), - [sym_function_item] = STATE(1410), - [sym_function_signature_item] = STATE(1410), - [sym_function_modifiers] = STATE(3609), - [sym_impl_item] = STATE(1410), - [sym_trait_item] = STATE(1410), - [sym_associated_type] = STATE(1410), - [sym_let_declaration] = STATE(1410), - [sym_use_declaration] = STATE(1410), - [sym_extern_modifier] = STATE(2163), - [sym_visibility_modifier] = STATE(1944), - [sym_bracketed_type] = STATE(3340), - [sym_generic_type_with_turbofish] = STATE(3366), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(3205), + [sym_empty_statement] = STATE(1435), + [sym_macro_definition] = STATE(1435), + [sym_attribute_item] = STATE(1435), + [sym_inner_attribute_item] = STATE(1435), + [sym_mod_item] = STATE(1435), + [sym_foreign_mod_item] = STATE(1435), + [sym_struct_item] = STATE(1435), + [sym_union_item] = STATE(1435), + [sym_enum_item] = STATE(1435), + [sym_extern_crate_declaration] = STATE(1435), + [sym_const_item] = STATE(1435), + [sym_static_item] = STATE(1435), + [sym_type_item] = STATE(1435), + [sym_function_item] = STATE(1435), + [sym_function_signature_item] = STATE(1435), + [sym_function_modifiers] = STATE(3619), + [sym_impl_item] = STATE(1435), + [sym_trait_item] = STATE(1435), + [sym_associated_type] = STATE(1435), + [sym_let_declaration] = STATE(1435), + [sym_use_declaration] = STATE(1435), + [sym_extern_modifier] = STATE(2164), + [sym_visibility_modifier] = STATE(1948), + [sym_bracketed_type] = STATE(3350), + [sym_generic_type_with_turbofish] = STATE(3375), + [sym_macro_invocation] = STATE(1435), + [sym_scoped_identifier] = STATE(3093), [sym_line_comment] = STATE(756), [sym_block_comment] = STATE(756), - [aux_sym_declaration_list_repeat1] = STATE(757), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2888), - [anon_sym_SEMI] = ACTIONS(2890), - [anon_sym_macro_rules_BANG] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2940), - [anon_sym_u8] = ACTIONS(2896), - [anon_sym_i8] = ACTIONS(2896), - [anon_sym_u16] = ACTIONS(2896), - [anon_sym_i16] = ACTIONS(2896), - [anon_sym_u32] = ACTIONS(2896), - [anon_sym_i32] = ACTIONS(2896), - [anon_sym_u64] = ACTIONS(2896), - [anon_sym_i64] = ACTIONS(2896), - [anon_sym_u128] = ACTIONS(2896), - [anon_sym_i128] = ACTIONS(2896), - [anon_sym_isize] = ACTIONS(2896), - [anon_sym_usize] = ACTIONS(2896), - [anon_sym_f32] = ACTIONS(2896), - [anon_sym_f64] = ACTIONS(2896), - [anon_sym_bool] = ACTIONS(2896), - [anon_sym_str] = ACTIONS(2896), - [anon_sym_char] = ACTIONS(2896), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2898), - [anon_sym_POUND] = ACTIONS(2900), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(2902), - [anon_sym_default] = ACTIONS(2904), - [anon_sym_enum] = ACTIONS(2906), - [anon_sym_fn] = ACTIONS(2908), - [anon_sym_impl] = ACTIONS(2910), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_mod] = ACTIONS(2914), + [aux_sym_declaration_list_repeat1] = STATE(761), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym_macro_rules_BANG] = ACTIONS(2751), + [anon_sym_RBRACE] = ACTIONS(2753), + [anon_sym_u8] = ACTIONS(2755), + [anon_sym_i8] = ACTIONS(2755), + [anon_sym_u16] = ACTIONS(2755), + [anon_sym_i16] = ACTIONS(2755), + [anon_sym_u32] = ACTIONS(2755), + [anon_sym_i32] = ACTIONS(2755), + [anon_sym_u64] = ACTIONS(2755), + [anon_sym_i64] = ACTIONS(2755), + [anon_sym_u128] = ACTIONS(2755), + [anon_sym_i128] = ACTIONS(2755), + [anon_sym_isize] = ACTIONS(2755), + [anon_sym_usize] = ACTIONS(2755), + [anon_sym_f32] = ACTIONS(2755), + [anon_sym_f64] = ACTIONS(2755), + [anon_sym_bool] = ACTIONS(2755), + [anon_sym_str] = ACTIONS(2755), + [anon_sym_char] = ACTIONS(2755), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2757), + [anon_sym_POUND] = ACTIONS(2759), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(2761), + [anon_sym_default] = ACTIONS(2763), + [anon_sym_enum] = ACTIONS(2765), + [anon_sym_fn] = ACTIONS(2767), + [anon_sym_impl] = ACTIONS(2769), + [anon_sym_let] = ACTIONS(2771), + [anon_sym_mod] = ACTIONS(2773), [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2918), - [anon_sym_trait] = ACTIONS(2920), - [anon_sym_type] = ACTIONS(2922), - [anon_sym_union] = ACTIONS(2924), - [anon_sym_unsafe] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_extern] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(2777), + [anon_sym_trait] = ACTIONS(2779), + [anon_sym_type] = ACTIONS(2781), + [anon_sym_union] = ACTIONS(2783), + [anon_sym_unsafe] = ACTIONS(2785), + [anon_sym_use] = ACTIONS(2787), + [anon_sym_extern] = ACTIONS(2789), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2932), - [sym_super] = ACTIONS(2932), - [sym_crate] = ACTIONS(2934), - [sym_metavariable] = ACTIONS(2936), + [sym_self] = ACTIONS(2791), + [sym_super] = ACTIONS(2791), + [sym_crate] = ACTIONS(2793), + [sym_metavariable] = ACTIONS(2795), }, [757] = { - [sym_empty_statement] = STATE(1410), - [sym_macro_definition] = STATE(1410), - [sym_attribute_item] = STATE(1410), - [sym_inner_attribute_item] = STATE(1410), - [sym_mod_item] = STATE(1410), - [sym_foreign_mod_item] = STATE(1410), - [sym_struct_item] = STATE(1410), - [sym_union_item] = STATE(1410), - [sym_enum_item] = STATE(1410), - [sym_extern_crate_declaration] = STATE(1410), - [sym_const_item] = STATE(1410), - [sym_static_item] = STATE(1410), - [sym_type_item] = STATE(1410), - [sym_function_item] = STATE(1410), - [sym_function_signature_item] = STATE(1410), - [sym_function_modifiers] = STATE(3609), - [sym_impl_item] = STATE(1410), - [sym_trait_item] = STATE(1410), - [sym_associated_type] = STATE(1410), - [sym_let_declaration] = STATE(1410), - [sym_use_declaration] = STATE(1410), - [sym_extern_modifier] = STATE(2163), - [sym_visibility_modifier] = STATE(1944), - [sym_bracketed_type] = STATE(3340), - [sym_generic_type_with_turbofish] = STATE(3366), - [sym_macro_invocation] = STATE(1410), - [sym_scoped_identifier] = STATE(3205), + [sym_empty_statement] = STATE(1435), + [sym_macro_definition] = STATE(1435), + [sym_attribute_item] = STATE(1435), + [sym_inner_attribute_item] = STATE(1435), + [sym_mod_item] = STATE(1435), + [sym_foreign_mod_item] = STATE(1435), + [sym_struct_item] = STATE(1435), + [sym_union_item] = STATE(1435), + [sym_enum_item] = STATE(1435), + [sym_extern_crate_declaration] = STATE(1435), + [sym_const_item] = STATE(1435), + [sym_static_item] = STATE(1435), + [sym_type_item] = STATE(1435), + [sym_function_item] = STATE(1435), + [sym_function_signature_item] = STATE(1435), + [sym_function_modifiers] = STATE(3619), + [sym_impl_item] = STATE(1435), + [sym_trait_item] = STATE(1435), + [sym_associated_type] = STATE(1435), + [sym_let_declaration] = STATE(1435), + [sym_use_declaration] = STATE(1435), + [sym_extern_modifier] = STATE(2164), + [sym_visibility_modifier] = STATE(1948), + [sym_bracketed_type] = STATE(3350), + [sym_generic_type_with_turbofish] = STATE(3375), + [sym_macro_invocation] = STATE(1435), + [sym_scoped_identifier] = STATE(3093), [sym_line_comment] = STATE(757), [sym_block_comment] = STATE(757), - [aux_sym_declaration_list_repeat1] = STATE(752), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2888), - [anon_sym_SEMI] = ACTIONS(2890), - [anon_sym_macro_rules_BANG] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2942), - [anon_sym_u8] = ACTIONS(2896), - [anon_sym_i8] = ACTIONS(2896), - [anon_sym_u16] = ACTIONS(2896), - [anon_sym_i16] = ACTIONS(2896), - [anon_sym_u32] = ACTIONS(2896), - [anon_sym_i32] = ACTIONS(2896), - [anon_sym_u64] = ACTIONS(2896), - [anon_sym_i64] = ACTIONS(2896), - [anon_sym_u128] = ACTIONS(2896), - [anon_sym_i128] = ACTIONS(2896), - [anon_sym_isize] = ACTIONS(2896), - [anon_sym_usize] = ACTIONS(2896), - [anon_sym_f32] = ACTIONS(2896), - [anon_sym_f64] = ACTIONS(2896), - [anon_sym_bool] = ACTIONS(2896), - [anon_sym_str] = ACTIONS(2896), - [anon_sym_char] = ACTIONS(2896), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2898), - [anon_sym_POUND] = ACTIONS(2900), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(2902), - [anon_sym_default] = ACTIONS(2904), - [anon_sym_enum] = ACTIONS(2906), - [anon_sym_fn] = ACTIONS(2908), - [anon_sym_impl] = ACTIONS(2910), - [anon_sym_let] = ACTIONS(2912), - [anon_sym_mod] = ACTIONS(2914), + [aux_sym_declaration_list_repeat1] = STATE(759), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym_macro_rules_BANG] = ACTIONS(2751), + [anon_sym_RBRACE] = ACTIONS(2797), + [anon_sym_u8] = ACTIONS(2755), + [anon_sym_i8] = ACTIONS(2755), + [anon_sym_u16] = ACTIONS(2755), + [anon_sym_i16] = ACTIONS(2755), + [anon_sym_u32] = ACTIONS(2755), + [anon_sym_i32] = ACTIONS(2755), + [anon_sym_u64] = ACTIONS(2755), + [anon_sym_i64] = ACTIONS(2755), + [anon_sym_u128] = ACTIONS(2755), + [anon_sym_i128] = ACTIONS(2755), + [anon_sym_isize] = ACTIONS(2755), + [anon_sym_usize] = ACTIONS(2755), + [anon_sym_f32] = ACTIONS(2755), + [anon_sym_f64] = ACTIONS(2755), + [anon_sym_bool] = ACTIONS(2755), + [anon_sym_str] = ACTIONS(2755), + [anon_sym_char] = ACTIONS(2755), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2757), + [anon_sym_POUND] = ACTIONS(2759), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(2761), + [anon_sym_default] = ACTIONS(2763), + [anon_sym_enum] = ACTIONS(2765), + [anon_sym_fn] = ACTIONS(2767), + [anon_sym_impl] = ACTIONS(2769), + [anon_sym_let] = ACTIONS(2771), + [anon_sym_mod] = ACTIONS(2773), [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2916), - [anon_sym_struct] = ACTIONS(2918), - [anon_sym_trait] = ACTIONS(2920), - [anon_sym_type] = ACTIONS(2922), - [anon_sym_union] = ACTIONS(2924), - [anon_sym_unsafe] = ACTIONS(2926), - [anon_sym_use] = ACTIONS(2928), - [anon_sym_extern] = ACTIONS(2930), + [anon_sym_static] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(2777), + [anon_sym_trait] = ACTIONS(2779), + [anon_sym_type] = ACTIONS(2781), + [anon_sym_union] = ACTIONS(2783), + [anon_sym_unsafe] = ACTIONS(2785), + [anon_sym_use] = ACTIONS(2787), + [anon_sym_extern] = ACTIONS(2789), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2932), - [sym_super] = ACTIONS(2932), - [sym_crate] = ACTIONS(2934), - [sym_metavariable] = ACTIONS(2936), + [sym_self] = ACTIONS(2791), + [sym_super] = ACTIONS(2791), + [sym_crate] = ACTIONS(2793), + [sym_metavariable] = ACTIONS(2795), }, [758] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym_closure_expression] = STATE(2752), - [sym_closure_parameters] = STATE(232), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_attribute_item] = STATE(1485), + [sym_inner_attribute_item] = STATE(1485), + [sym_bracketed_type] = STATE(3551), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3283), + [sym_macro_invocation] = STATE(2882), + [sym_scoped_identifier] = STATE(2161), + [sym_scoped_type_identifier] = STATE(2974), + [sym_match_arm] = STATE(1492), + [sym_match_pattern] = STATE(3353), + [sym_const_block] = STATE(2882), + [sym__pattern] = STATE(2763), + [sym_tuple_pattern] = STATE(2882), + [sym_slice_pattern] = STATE(2882), + [sym_tuple_struct_pattern] = STATE(2882), + [sym_struct_pattern] = STATE(2882), + [sym_remaining_field_pattern] = STATE(2882), + [sym_mut_pattern] = STATE(2882), + [sym_range_pattern] = STATE(2882), + [sym_ref_pattern] = STATE(2882), + [sym_captured_pattern] = STATE(2882), + [sym_reference_pattern] = STATE(2882), + [sym_or_pattern] = STATE(2882), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2305), + [sym_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_boolean_literal] = STATE(2305), [sym_line_comment] = STATE(758), [sym_block_comment] = STATE(758), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_RPAREN] = ACTIONS(2948), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [anon_sym_move] = ACTIONS(1515), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_match_block_repeat1] = STATE(758), + [aux_sym_match_arm_repeat1] = STATE(764), + [sym_identifier] = ACTIONS(2799), + [anon_sym_LPAREN] = ACTIONS(2802), + [anon_sym_LBRACK] = ACTIONS(2805), + [anon_sym_u8] = ACTIONS(2808), + [anon_sym_i8] = ACTIONS(2808), + [anon_sym_u16] = ACTIONS(2808), + [anon_sym_i16] = ACTIONS(2808), + [anon_sym_u32] = ACTIONS(2808), + [anon_sym_i32] = ACTIONS(2808), + [anon_sym_u64] = ACTIONS(2808), + [anon_sym_i64] = ACTIONS(2808), + [anon_sym_u128] = ACTIONS(2808), + [anon_sym_i128] = ACTIONS(2808), + [anon_sym_isize] = ACTIONS(2808), + [anon_sym_usize] = ACTIONS(2808), + [anon_sym_f32] = ACTIONS(2808), + [anon_sym_f64] = ACTIONS(2808), + [anon_sym_bool] = ACTIONS(2808), + [anon_sym_str] = ACTIONS(2808), + [anon_sym_char] = ACTIONS(2808), + [anon_sym_DASH] = ACTIONS(2811), + [anon_sym_AMP] = ACTIONS(2814), + [anon_sym_PIPE] = ACTIONS(2817), + [anon_sym_LT] = ACTIONS(2820), + [anon_sym__] = ACTIONS(2823), + [anon_sym_DOT_DOT] = ACTIONS(2826), + [anon_sym_COLON_COLON] = ACTIONS(2829), + [anon_sym_POUND] = ACTIONS(2832), + [anon_sym_const] = ACTIONS(2835), + [anon_sym_default] = ACTIONS(2838), + [anon_sym_union] = ACTIONS(2838), + [anon_sym_ref] = ACTIONS(2841), + [sym_mutable_specifier] = ACTIONS(2844), + [sym_integer_literal] = ACTIONS(2847), + [aux_sym_string_literal_token1] = ACTIONS(2850), + [sym_char_literal] = ACTIONS(2847), + [anon_sym_true] = ACTIONS(2853), + [anon_sym_false] = ACTIONS(2853), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2856), + [sym_super] = ACTIONS(2856), + [sym_crate] = ACTIONS(2856), + [sym_metavariable] = ACTIONS(2859), + [sym__raw_string_literal_start] = ACTIONS(2862), + [sym_float_literal] = ACTIONS(2847), }, [759] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym_closure_expression] = STATE(2802), - [sym_closure_parameters] = STATE(232), - [sym__pattern] = STATE(2539), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_empty_statement] = STATE(1435), + [sym_macro_definition] = STATE(1435), + [sym_attribute_item] = STATE(1435), + [sym_inner_attribute_item] = STATE(1435), + [sym_mod_item] = STATE(1435), + [sym_foreign_mod_item] = STATE(1435), + [sym_struct_item] = STATE(1435), + [sym_union_item] = STATE(1435), + [sym_enum_item] = STATE(1435), + [sym_extern_crate_declaration] = STATE(1435), + [sym_const_item] = STATE(1435), + [sym_static_item] = STATE(1435), + [sym_type_item] = STATE(1435), + [sym_function_item] = STATE(1435), + [sym_function_signature_item] = STATE(1435), + [sym_function_modifiers] = STATE(3619), + [sym_impl_item] = STATE(1435), + [sym_trait_item] = STATE(1435), + [sym_associated_type] = STATE(1435), + [sym_let_declaration] = STATE(1435), + [sym_use_declaration] = STATE(1435), + [sym_extern_modifier] = STATE(2164), + [sym_visibility_modifier] = STATE(1948), + [sym_bracketed_type] = STATE(3350), + [sym_generic_type_with_turbofish] = STATE(3375), + [sym_macro_invocation] = STATE(1435), + [sym_scoped_identifier] = STATE(3093), [sym_line_comment] = STATE(759), [sym_block_comment] = STATE(759), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_RPAREN] = ACTIONS(2968), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [anon_sym_move] = ACTIONS(1515), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_declaration_list_repeat1] = STATE(761), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym_macro_rules_BANG] = ACTIONS(2751), + [anon_sym_RBRACE] = ACTIONS(2865), + [anon_sym_u8] = ACTIONS(2755), + [anon_sym_i8] = ACTIONS(2755), + [anon_sym_u16] = ACTIONS(2755), + [anon_sym_i16] = ACTIONS(2755), + [anon_sym_u32] = ACTIONS(2755), + [anon_sym_i32] = ACTIONS(2755), + [anon_sym_u64] = ACTIONS(2755), + [anon_sym_i64] = ACTIONS(2755), + [anon_sym_u128] = ACTIONS(2755), + [anon_sym_i128] = ACTIONS(2755), + [anon_sym_isize] = ACTIONS(2755), + [anon_sym_usize] = ACTIONS(2755), + [anon_sym_f32] = ACTIONS(2755), + [anon_sym_f64] = ACTIONS(2755), + [anon_sym_bool] = ACTIONS(2755), + [anon_sym_str] = ACTIONS(2755), + [anon_sym_char] = ACTIONS(2755), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2757), + [anon_sym_POUND] = ACTIONS(2759), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(2761), + [anon_sym_default] = ACTIONS(2763), + [anon_sym_enum] = ACTIONS(2765), + [anon_sym_fn] = ACTIONS(2767), + [anon_sym_impl] = ACTIONS(2769), + [anon_sym_let] = ACTIONS(2771), + [anon_sym_mod] = ACTIONS(2773), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(2777), + [anon_sym_trait] = ACTIONS(2779), + [anon_sym_type] = ACTIONS(2781), + [anon_sym_union] = ACTIONS(2783), + [anon_sym_unsafe] = ACTIONS(2785), + [anon_sym_use] = ACTIONS(2787), + [anon_sym_extern] = ACTIONS(2789), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2791), + [sym_super] = ACTIONS(2791), + [sym_crate] = ACTIONS(2793), + [sym_metavariable] = ACTIONS(2795), }, [760] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym_closure_expression] = STATE(3071), - [sym_closure_parameters] = STATE(232), - [sym__pattern] = STATE(2798), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_empty_statement] = STATE(1435), + [sym_macro_definition] = STATE(1435), + [sym_attribute_item] = STATE(1435), + [sym_inner_attribute_item] = STATE(1435), + [sym_mod_item] = STATE(1435), + [sym_foreign_mod_item] = STATE(1435), + [sym_struct_item] = STATE(1435), + [sym_union_item] = STATE(1435), + [sym_enum_item] = STATE(1435), + [sym_extern_crate_declaration] = STATE(1435), + [sym_const_item] = STATE(1435), + [sym_static_item] = STATE(1435), + [sym_type_item] = STATE(1435), + [sym_function_item] = STATE(1435), + [sym_function_signature_item] = STATE(1435), + [sym_function_modifiers] = STATE(3619), + [sym_impl_item] = STATE(1435), + [sym_trait_item] = STATE(1435), + [sym_associated_type] = STATE(1435), + [sym_let_declaration] = STATE(1435), + [sym_use_declaration] = STATE(1435), + [sym_extern_modifier] = STATE(2164), + [sym_visibility_modifier] = STATE(1948), + [sym_bracketed_type] = STATE(3350), + [sym_generic_type_with_turbofish] = STATE(3375), + [sym_macro_invocation] = STATE(1435), + [sym_scoped_identifier] = STATE(3093), [sym_line_comment] = STATE(760), [sym_block_comment] = STATE(760), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_RPAREN] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [anon_sym_move] = ACTIONS(1515), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_declaration_list_repeat1] = STATE(756), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2747), + [anon_sym_SEMI] = ACTIONS(2749), + [anon_sym_macro_rules_BANG] = ACTIONS(2751), + [anon_sym_RBRACE] = ACTIONS(2867), + [anon_sym_u8] = ACTIONS(2755), + [anon_sym_i8] = ACTIONS(2755), + [anon_sym_u16] = ACTIONS(2755), + [anon_sym_i16] = ACTIONS(2755), + [anon_sym_u32] = ACTIONS(2755), + [anon_sym_i32] = ACTIONS(2755), + [anon_sym_u64] = ACTIONS(2755), + [anon_sym_i64] = ACTIONS(2755), + [anon_sym_u128] = ACTIONS(2755), + [anon_sym_i128] = ACTIONS(2755), + [anon_sym_isize] = ACTIONS(2755), + [anon_sym_usize] = ACTIONS(2755), + [anon_sym_f32] = ACTIONS(2755), + [anon_sym_f64] = ACTIONS(2755), + [anon_sym_bool] = ACTIONS(2755), + [anon_sym_str] = ACTIONS(2755), + [anon_sym_char] = ACTIONS(2755), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2757), + [anon_sym_POUND] = ACTIONS(2759), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(2761), + [anon_sym_default] = ACTIONS(2763), + [anon_sym_enum] = ACTIONS(2765), + [anon_sym_fn] = ACTIONS(2767), + [anon_sym_impl] = ACTIONS(2769), + [anon_sym_let] = ACTIONS(2771), + [anon_sym_mod] = ACTIONS(2773), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2775), + [anon_sym_struct] = ACTIONS(2777), + [anon_sym_trait] = ACTIONS(2779), + [anon_sym_type] = ACTIONS(2781), + [anon_sym_union] = ACTIONS(2783), + [anon_sym_unsafe] = ACTIONS(2785), + [anon_sym_use] = ACTIONS(2787), + [anon_sym_extern] = ACTIONS(2789), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2791), + [sym_super] = ACTIONS(2791), + [sym_crate] = ACTIONS(2793), + [sym_metavariable] = ACTIONS(2795), }, [761] = { - [sym_attribute_item] = STATE(1486), - [sym_inner_attribute_item] = STATE(1486), - [sym_bracketed_type] = STATE(3540), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3274), - [sym_macro_invocation] = STATE(3031), - [sym_scoped_identifier] = STATE(2153), - [sym_scoped_type_identifier] = STATE(2935), - [sym_match_pattern] = STATE(3501), - [sym_const_block] = STATE(3031), - [sym__pattern] = STATE(3016), - [sym_tuple_pattern] = STATE(3031), - [sym_slice_pattern] = STATE(3031), - [sym_tuple_struct_pattern] = STATE(3031), - [sym_struct_pattern] = STATE(3031), - [sym_remaining_field_pattern] = STATE(3031), - [sym_mut_pattern] = STATE(3031), - [sym_range_pattern] = STATE(3031), - [sym_ref_pattern] = STATE(3031), - [sym_captured_pattern] = STATE(3031), - [sym_reference_pattern] = STATE(3031), - [sym_or_pattern] = STATE(3031), - [sym__literal_pattern] = STATE(2307), - [sym_negative_literal] = STATE(2311), - [sym_string_literal] = STATE(2311), - [sym_raw_string_literal] = STATE(2311), - [sym_boolean_literal] = STATE(2311), + [sym_empty_statement] = STATE(1435), + [sym_macro_definition] = STATE(1435), + [sym_attribute_item] = STATE(1435), + [sym_inner_attribute_item] = STATE(1435), + [sym_mod_item] = STATE(1435), + [sym_foreign_mod_item] = STATE(1435), + [sym_struct_item] = STATE(1435), + [sym_union_item] = STATE(1435), + [sym_enum_item] = STATE(1435), + [sym_extern_crate_declaration] = STATE(1435), + [sym_const_item] = STATE(1435), + [sym_static_item] = STATE(1435), + [sym_type_item] = STATE(1435), + [sym_function_item] = STATE(1435), + [sym_function_signature_item] = STATE(1435), + [sym_function_modifiers] = STATE(3619), + [sym_impl_item] = STATE(1435), + [sym_trait_item] = STATE(1435), + [sym_associated_type] = STATE(1435), + [sym_let_declaration] = STATE(1435), + [sym_use_declaration] = STATE(1435), + [sym_extern_modifier] = STATE(2164), + [sym_visibility_modifier] = STATE(1948), + [sym_bracketed_type] = STATE(3350), + [sym_generic_type_with_turbofish] = STATE(3375), + [sym_macro_invocation] = STATE(1435), + [sym_scoped_identifier] = STATE(3093), [sym_line_comment] = STATE(761), [sym_block_comment] = STATE(761), - [aux_sym_match_arm_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1637), - [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_DASH] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_COLON_COLON] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_ref] = ACTIONS(1661), - [sym_mutable_specifier] = ACTIONS(1663), - [sym_integer_literal] = ACTIONS(1665), - [aux_sym_string_literal_token1] = ACTIONS(1667), - [sym_char_literal] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1671), - [sym_super] = ACTIONS(1671), - [sym_crate] = ACTIONS(1671), - [sym_metavariable] = ACTIONS(1673), - [sym__raw_string_literal_start] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(1665), + [aux_sym_declaration_list_repeat1] = STATE(761), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2869), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_macro_rules_BANG] = ACTIONS(2875), + [anon_sym_RBRACE] = ACTIONS(2878), + [anon_sym_u8] = ACTIONS(2880), + [anon_sym_i8] = ACTIONS(2880), + [anon_sym_u16] = ACTIONS(2880), + [anon_sym_i16] = ACTIONS(2880), + [anon_sym_u32] = ACTIONS(2880), + [anon_sym_i32] = ACTIONS(2880), + [anon_sym_u64] = ACTIONS(2880), + [anon_sym_i64] = ACTIONS(2880), + [anon_sym_u128] = ACTIONS(2880), + [anon_sym_i128] = ACTIONS(2880), + [anon_sym_isize] = ACTIONS(2880), + [anon_sym_usize] = ACTIONS(2880), + [anon_sym_f32] = ACTIONS(2880), + [anon_sym_f64] = ACTIONS(2880), + [anon_sym_bool] = ACTIONS(2880), + [anon_sym_str] = ACTIONS(2880), + [anon_sym_char] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2883), + [anon_sym_COLON_COLON] = ACTIONS(2886), + [anon_sym_POUND] = ACTIONS(2889), + [anon_sym_async] = ACTIONS(2892), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_default] = ACTIONS(2898), + [anon_sym_enum] = ACTIONS(2901), + [anon_sym_fn] = ACTIONS(2904), + [anon_sym_impl] = ACTIONS(2907), + [anon_sym_let] = ACTIONS(2910), + [anon_sym_mod] = ACTIONS(2913), + [anon_sym_pub] = ACTIONS(2916), + [anon_sym_static] = ACTIONS(2919), + [anon_sym_struct] = ACTIONS(2922), + [anon_sym_trait] = ACTIONS(2925), + [anon_sym_type] = ACTIONS(2928), + [anon_sym_union] = ACTIONS(2931), + [anon_sym_unsafe] = ACTIONS(2934), + [anon_sym_use] = ACTIONS(2937), + [anon_sym_extern] = ACTIONS(2940), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2943), + [sym_super] = ACTIONS(2943), + [sym_crate] = ACTIONS(2946), + [sym_metavariable] = ACTIONS(2949), }, [762] = { - [sym_attribute_item] = STATE(1486), - [sym_inner_attribute_item] = STATE(1486), - [sym_bracketed_type] = STATE(3540), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3274), - [sym_macro_invocation] = STATE(3031), - [sym_scoped_identifier] = STATE(2153), - [sym_scoped_type_identifier] = STATE(2935), - [sym_match_pattern] = STATE(3469), - [sym_const_block] = STATE(3031), - [sym__pattern] = STATE(3016), - [sym_tuple_pattern] = STATE(3031), - [sym_slice_pattern] = STATE(3031), - [sym_tuple_struct_pattern] = STATE(3031), - [sym_struct_pattern] = STATE(3031), - [sym_remaining_field_pattern] = STATE(3031), - [sym_mut_pattern] = STATE(3031), - [sym_range_pattern] = STATE(3031), - [sym_ref_pattern] = STATE(3031), - [sym_captured_pattern] = STATE(3031), - [sym_reference_pattern] = STATE(3031), - [sym_or_pattern] = STATE(3031), - [sym__literal_pattern] = STATE(2307), - [sym_negative_literal] = STATE(2311), - [sym_string_literal] = STATE(2311), - [sym_raw_string_literal] = STATE(2311), - [sym_boolean_literal] = STATE(2311), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym_closure_expression] = STATE(3004), + [sym_closure_parameters] = STATE(215), + [sym__pattern] = STATE(2669), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(762), [sym_block_comment] = STATE(762), - [aux_sym_match_arm_repeat1] = STATE(1037), - [sym_identifier] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1637), - [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_DASH] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_COLON_COLON] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(1655), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_ref] = ACTIONS(1661), - [sym_mutable_specifier] = ACTIONS(1663), - [sym_integer_literal] = ACTIONS(1665), - [aux_sym_string_literal_token1] = ACTIONS(1667), - [sym_char_literal] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1671), - [sym_super] = ACTIONS(1671), - [sym_crate] = ACTIONS(1671), - [sym_metavariable] = ACTIONS(1673), - [sym__raw_string_literal_start] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(1665), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_RPAREN] = ACTIONS(2956), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COMMA] = ACTIONS(2964), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_static] = ACTIONS(1519), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [anon_sym_move] = ACTIONS(1523), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [763] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym_closure_expression] = STATE(3071), - [sym_closure_parameters] = STATE(232), - [sym__pattern] = STATE(2798), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym_closure_expression] = STATE(2813), + [sym_closure_parameters] = STATE(215), + [sym__pattern] = STATE(2696), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(763), [sym_block_comment] = STATE(763), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_RPAREN] = ACTIONS(2972), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [anon_sym_move] = ACTIONS(1515), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_RPAREN] = ACTIONS(2976), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COMMA] = ACTIONS(1517), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_static] = ACTIONS(1519), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [anon_sym_move] = ACTIONS(1523), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [764] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym_closure_expression] = STATE(3071), - [sym_closure_parameters] = STATE(232), - [sym__pattern] = STATE(2798), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_attribute_item] = STATE(1485), + [sym_inner_attribute_item] = STATE(1485), + [sym_bracketed_type] = STATE(3551), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3283), + [sym_macro_invocation] = STATE(2882), + [sym_scoped_identifier] = STATE(2161), + [sym_scoped_type_identifier] = STATE(2974), + [sym_match_pattern] = STATE(3519), + [sym_const_block] = STATE(2882), + [sym__pattern] = STATE(2763), + [sym_tuple_pattern] = STATE(2882), + [sym_slice_pattern] = STATE(2882), + [sym_tuple_struct_pattern] = STATE(2882), + [sym_struct_pattern] = STATE(2882), + [sym_remaining_field_pattern] = STATE(2882), + [sym_mut_pattern] = STATE(2882), + [sym_range_pattern] = STATE(2882), + [sym_ref_pattern] = STATE(2882), + [sym_captured_pattern] = STATE(2882), + [sym_reference_pattern] = STATE(2882), + [sym_or_pattern] = STATE(2882), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2305), + [sym_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_boolean_literal] = STATE(2305), [sym_line_comment] = STATE(764), [sym_block_comment] = STATE(764), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_RPAREN] = ACTIONS(2974), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [anon_sym_move] = ACTIONS(1515), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_match_arm_repeat1] = STATE(1042), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(1641), + [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_DASH] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1657), + [anon_sym_POUND] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1663), + [anon_sym_union] = ACTIONS(1663), + [anon_sym_ref] = ACTIONS(1665), + [sym_mutable_specifier] = ACTIONS(1667), + [sym_integer_literal] = ACTIONS(1669), + [aux_sym_string_literal_token1] = ACTIONS(1671), + [sym_char_literal] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1675), + [sym_super] = ACTIONS(1675), + [sym_crate] = ACTIONS(1675), + [sym_metavariable] = ACTIONS(1677), + [sym__raw_string_literal_start] = ACTIONS(1679), + [sym_float_literal] = ACTIONS(1669), }, [765] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym_closure_expression] = STATE(3071), - [sym_closure_parameters] = STATE(232), - [sym__pattern] = STATE(2798), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym_closure_expression] = STATE(3251), + [sym_closure_parameters] = STATE(215), + [sym__pattern] = STATE(2852), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(765), [sym_block_comment] = STATE(765), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_RPAREN] = ACTIONS(2976), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [anon_sym_move] = ACTIONS(1515), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_RPAREN] = ACTIONS(2978), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_static] = ACTIONS(1519), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [anon_sym_move] = ACTIONS(1523), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [766] = { - [sym_attribute_item] = STATE(1479), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_const_parameter] = STATE(2999), - [sym_constrained_type_parameter] = STATE(2719), - [sym_optional_type_parameter] = STATE(2999), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2982), - [sym_bracketed_type] = STATE(3348), - [sym_qualified_type] = STATE(3449), - [sym_lifetime] = STATE(2351), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_attribute_item] = STATE(1485), + [sym_inner_attribute_item] = STATE(1485), + [sym_bracketed_type] = STATE(3551), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3283), + [sym_macro_invocation] = STATE(2882), + [sym_scoped_identifier] = STATE(2161), + [sym_scoped_type_identifier] = STATE(2974), + [sym_match_pattern] = STATE(3392), + [sym_const_block] = STATE(2882), + [sym__pattern] = STATE(2763), + [sym_tuple_pattern] = STATE(2882), + [sym_slice_pattern] = STATE(2882), + [sym_tuple_struct_pattern] = STATE(2882), + [sym_struct_pattern] = STATE(2882), + [sym_remaining_field_pattern] = STATE(2882), + [sym_mut_pattern] = STATE(2882), + [sym_range_pattern] = STATE(2882), + [sym_ref_pattern] = STATE(2882), + [sym_captured_pattern] = STATE(2882), + [sym_reference_pattern] = STATE(2882), + [sym_or_pattern] = STATE(2882), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2305), + [sym_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_boolean_literal] = STATE(2305), [sym_line_comment] = STATE(766), [sym_block_comment] = STATE(766), - [aux_sym_enum_variant_list_repeat1] = STATE(2047), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_POUND] = ACTIONS(2980), - [anon_sym_SQUOTE] = ACTIONS(2982), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(2984), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(2986), + [aux_sym_match_arm_repeat1] = STATE(1042), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(1641), + [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_DASH] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1657), + [anon_sym_POUND] = ACTIONS(1659), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1663), + [anon_sym_union] = ACTIONS(1663), + [anon_sym_ref] = ACTIONS(1665), + [sym_mutable_specifier] = ACTIONS(1667), + [sym_integer_literal] = ACTIONS(1669), + [aux_sym_string_literal_token1] = ACTIONS(1671), + [sym_char_literal] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1675), + [sym_super] = ACTIONS(1675), + [sym_crate] = ACTIONS(1675), + [sym_metavariable] = ACTIONS(1677), + [sym__raw_string_literal_start] = ACTIONS(1679), + [sym_float_literal] = ACTIONS(1669), }, [767] = { - [sym_attribute_item] = STATE(1479), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym_visibility_modifier] = STATE(912), - [sym__type] = STATE(2562), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym_closure_expression] = STATE(3251), + [sym_closure_parameters] = STATE(215), + [sym__pattern] = STATE(2852), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(767), [sym_block_comment] = STATE(767), - [aux_sym_enum_variant_list_repeat1] = STATE(778), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(2990), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(2992), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_POUND] = ACTIONS(2980), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_pub] = ACTIONS(2996), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(2998), - [sym_metavariable] = ACTIONS(1609), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_RPAREN] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_static] = ACTIONS(1519), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [anon_sym_move] = ACTIONS(1523), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [768] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym_closure_expression] = STATE(3071), - [sym_closure_parameters] = STATE(232), - [sym__pattern] = STATE(2798), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym_closure_expression] = STATE(3251), + [sym_closure_parameters] = STATE(215), + [sym__pattern] = STATE(2852), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(768), [sym_block_comment] = STATE(768), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_static] = ACTIONS(1511), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [anon_sym_move] = ACTIONS(1515), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_RPAREN] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_static] = ACTIONS(1519), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [anon_sym_move] = ACTIONS(1523), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [769] = { - [sym_attribute_item] = STATE(1479), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym_visibility_modifier] = STATE(936), - [sym__type] = STATE(2797), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym_closure_expression] = STATE(3251), + [sym_closure_parameters] = STATE(215), + [sym__pattern] = STATE(2852), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(769), [sym_block_comment] = STATE(769), - [aux_sym_enum_variant_list_repeat1] = STATE(775), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(3000), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_POUND] = ACTIONS(2980), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_pub] = ACTIONS(2996), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(2998), - [sym_metavariable] = ACTIONS(1609), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_RPAREN] = ACTIONS(2984), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_static] = ACTIONS(1519), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [anon_sym_move] = ACTIONS(1523), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [770] = { - [sym_attribute_item] = STATE(1479), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym_visibility_modifier] = STATE(936), - [sym__type] = STATE(2797), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym_closure_expression] = STATE(3251), + [sym_closure_parameters] = STATE(215), + [sym__pattern] = STATE(2852), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(770), [sym_block_comment] = STATE(770), - [aux_sym_enum_variant_list_repeat1] = STATE(775), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(3002), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_POUND] = ACTIONS(2980), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_pub] = ACTIONS(2996), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(2998), - [sym_metavariable] = ACTIONS(1609), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_static] = ACTIONS(1519), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [anon_sym_move] = ACTIONS(1523), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [771] = { - [sym_attribute_item] = STATE(1479), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym_visibility_modifier] = STATE(936), - [sym__type] = STATE(2797), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_attribute_item] = STATE(1490), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym_visibility_modifier] = STATE(869), + [sym__type] = STATE(2662), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(771), [sym_block_comment] = STATE(771), - [aux_sym_enum_variant_list_repeat1] = STATE(775), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(3004), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_POUND] = ACTIONS(2980), + [aux_sym_enum_variant_list_repeat1] = STATE(785), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_RPAREN] = ACTIONS(2988), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COMMA] = ACTIONS(2990), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(2992), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), [anon_sym_pub] = ACTIONS(2996), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), [sym_crate] = ACTIONS(2998), - [sym_metavariable] = ACTIONS(1609), + [sym_metavariable] = ACTIONS(1617), }, [772] = { - [sym_attribute_item] = STATE(1479), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym_visibility_modifier] = STATE(936), - [sym__type] = STATE(2797), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_attribute_item] = STATE(1490), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_const_parameter] = STATE(2796), + [sym_constrained_type_parameter] = STATE(2520), + [sym_optional_type_parameter] = STATE(2796), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(3000), + [sym_bracketed_type] = STATE(3358), + [sym_qualified_type] = STATE(3469), + [sym_lifetime] = STATE(2321), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(772), [sym_block_comment] = STATE(772), - [aux_sym_enum_variant_list_repeat1] = STATE(775), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(3006), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_POUND] = ACTIONS(2980), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_pub] = ACTIONS(2996), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(2998), - [sym_metavariable] = ACTIONS(1609), + [aux_sym_enum_variant_list_repeat1] = STATE(2050), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3000), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(2992), + [anon_sym_SQUOTE] = ACTIONS(3002), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(3004), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(3006), }, [773] = { - [sym_attribute_item] = STATE(1479), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym_visibility_modifier] = STATE(936), - [sym__type] = STATE(2797), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_attribute_item] = STATE(1490), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym_visibility_modifier] = STATE(924), + [sym__type] = STATE(2874), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(773), [sym_block_comment] = STATE(773), - [aux_sym_enum_variant_list_repeat1] = STATE(775), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), + [aux_sym_enum_variant_list_repeat1] = STATE(782), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), [anon_sym_RPAREN] = ACTIONS(3008), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_POUND] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(2992), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), [anon_sym_pub] = ACTIONS(2996), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), [sym_crate] = ACTIONS(2998), - [sym_metavariable] = ACTIONS(1609), + [sym_metavariable] = ACTIONS(1617), }, [774] = { - [sym_attribute_item] = STATE(1479), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym_visibility_modifier] = STATE(936), - [sym__type] = STATE(2797), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_attribute_item] = STATE(1490), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym_visibility_modifier] = STATE(924), + [sym__type] = STATE(2874), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(774), [sym_block_comment] = STATE(774), - [aux_sym_enum_variant_list_repeat1] = STATE(775), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), + [aux_sym_enum_variant_list_repeat1] = STATE(782), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), [anon_sym_RPAREN] = ACTIONS(3010), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_POUND] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(2992), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), [anon_sym_pub] = ACTIONS(2996), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), [sym_crate] = ACTIONS(2998), - [sym_metavariable] = ACTIONS(1609), + [sym_metavariable] = ACTIONS(1617), }, [775] = { - [sym_attribute_item] = STATE(1479), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym_visibility_modifier] = STATE(865), - [sym__type] = STATE(2856), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_attribute_item] = STATE(1490), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym_visibility_modifier] = STATE(924), + [sym__type] = STATE(2874), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(775), [sym_block_comment] = STATE(775), - [aux_sym_enum_variant_list_repeat1] = STATE(1052), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_POUND] = ACTIONS(2980), + [aux_sym_enum_variant_list_repeat1] = STATE(782), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_RPAREN] = ACTIONS(3012), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(2992), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), [anon_sym_pub] = ACTIONS(2996), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), [sym_crate] = ACTIONS(2998), - [sym_metavariable] = ACTIONS(1609), + [sym_metavariable] = ACTIONS(1617), }, [776] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2687), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_attribute_item] = STATE(1490), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym_visibility_modifier] = STATE(924), + [sym__type] = STATE(2874), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(776), [sym_block_comment] = STATE(776), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_RBRACK] = ACTIONS(3012), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COMMA] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_enum_variant_list_repeat1] = STATE(782), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_RPAREN] = ACTIONS(3014), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(2992), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_pub] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(2998), + [sym_metavariable] = ACTIONS(1617), }, [777] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2514), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_attribute_item] = STATE(1490), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym_visibility_modifier] = STATE(924), + [sym__type] = STATE(2874), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(777), [sym_block_comment] = STATE(777), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), + [aux_sym_enum_variant_list_repeat1] = STATE(782), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), [anon_sym_RPAREN] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COMMA] = ACTIONS(3018), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(2992), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_pub] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(2998), + [sym_metavariable] = ACTIONS(1617), }, [778] = { - [sym_attribute_item] = STATE(1479), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym_visibility_modifier] = STATE(894), - [sym__type] = STATE(2730), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_attribute_item] = STATE(1490), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym_visibility_modifier] = STATE(924), + [sym__type] = STATE(2874), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(778), [sym_block_comment] = STATE(778), - [aux_sym_enum_variant_list_repeat1] = STATE(1052), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_POUND] = ACTIONS(2980), + [aux_sym_enum_variant_list_repeat1] = STATE(782), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_RPAREN] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(2992), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), [anon_sym_pub] = ACTIONS(2996), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), [sym_crate] = ACTIONS(2998), - [sym_metavariable] = ACTIONS(1609), + [sym_metavariable] = ACTIONS(1617), }, [779] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2513), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2542), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(779), [sym_block_comment] = STATE(779), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), [anon_sym_RPAREN] = ACTIONS(3020), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), [anon_sym_COMMA] = ACTIONS(3022), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [780] = { - [sym_attribute_item] = STATE(1479), - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym_visibility_modifier] = STATE(936), - [sym__type] = STATE(2797), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2541), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(780), [sym_block_comment] = STATE(780), - [aux_sym_enum_variant_list_repeat1] = STATE(775), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_POUND] = ACTIONS(2980), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_pub] = ACTIONS(2996), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(2998), - [sym_metavariable] = ACTIONS(1609), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_RPAREN] = ACTIONS(3024), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COMMA] = ACTIONS(3026), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [781] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2680), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2670), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(781), [sym_block_comment] = STATE(781), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_RPAREN] = ACTIONS(3024), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COMMA] = ACTIONS(3026), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_RBRACK] = ACTIONS(3028), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COMMA] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [782] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2699), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_attribute_item] = STATE(1490), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym_visibility_modifier] = STATE(922), + [sym__type] = STATE(2921), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(782), [sym_block_comment] = STATE(782), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_RPAREN] = ACTIONS(3028), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COMMA] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_enum_variant_list_repeat1] = STATE(1096), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(2992), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_pub] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(2998), + [sym_metavariable] = ACTIONS(1617), }, [783] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2588), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2635), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(783), [sym_block_comment] = STATE(783), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_RBRACK] = ACTIONS(1533), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COMMA] = ACTIONS(1539), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_RPAREN] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COMMA] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [784] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2605), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_attribute_item] = STATE(1490), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym_visibility_modifier] = STATE(924), + [sym__type] = STATE(2874), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(784), [sym_block_comment] = STATE(784), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_RPAREN] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_enum_variant_list_repeat1] = STATE(782), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(2992), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_pub] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(2998), + [sym_metavariable] = ACTIONS(1617), }, [785] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2605), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_attribute_item] = STATE(1490), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym_visibility_modifier] = STATE(943), + [sym__type] = STATE(2665), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(785), [sym_block_comment] = STATE(785), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_RPAREN] = ACTIONS(3034), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [aux_sym_enum_variant_list_repeat1] = STATE(1096), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(2992), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_pub] = ACTIONS(2996), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(2998), + [sym_metavariable] = ACTIONS(1617), }, [786] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2605), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2602), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(786), [sym_block_comment] = STATE(786), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), [anon_sym_RPAREN] = ACTIONS(3036), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COMMA] = ACTIONS(3038), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [787] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2661), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2717), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3040), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_RBRACK] = ACTIONS(1541), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [788] = { - [sym_parameter] = STATE(2923), - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2480), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2578), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(788), [sym_block_comment] = STATE(788), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(3044), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3046), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_RPAREN] = ACTIONS(3040), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [789] = { - [sym_parameter] = STATE(3229), - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2957), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_parameter] = STATE(2755), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2683), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(789), [sym_block_comment] = STATE(789), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), [sym_mutable_specifier] = ACTIONS(3044), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(3046), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [790] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2605), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2673), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(790), [sym_block_comment] = STATE(790), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_RBRACK] = ACTIONS(3048), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3048), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3050), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [791] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2605), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_parameter] = STATE(2755), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2427), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_RBRACK] = ACTIONS(3050), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(3042), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(3044), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3046), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [792] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2605), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2578), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_RPAREN] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_RBRACK] = ACTIONS(3052), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [793] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2605), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_parameter] = STATE(3164), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2949), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(793), [sym_block_comment] = STATE(793), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_RPAREN] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(3044), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3046), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [794] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2605), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2578), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(794), [sym_block_comment] = STATE(794), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_RPAREN] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_RPAREN] = ACTIONS(3054), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [795] = { - [sym_parameter] = STATE(2923), - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2583), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2578), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(795), [sym_block_comment] = STATE(795), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(3042), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(3044), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3046), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_RBRACK] = ACTIONS(3056), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [796] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2605), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2578), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(796), [sym_block_comment] = STATE(796), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), [anon_sym_RPAREN] = ACTIONS(3058), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [797] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2605), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2578), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(797), [sym_block_comment] = STATE(797), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), [anon_sym_RBRACK] = ACTIONS(3060), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [798] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2605), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2578), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(798), [sym_block_comment] = STATE(798), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), [anon_sym_RPAREN] = ACTIONS(3062), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [799] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2605), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2578), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(799), [sym_block_comment] = STATE(799), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_RBRACK] = ACTIONS(3064), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_RPAREN] = ACTIONS(3064), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [800] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3251), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2578), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(800), [sym_block_comment] = STATE(800), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_RPAREN] = ACTIONS(3066), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [801] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2910), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2578), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(801), [sym_block_comment] = STATE(801), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_RPAREN] = ACTIONS(3068), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [802] = { - [sym_bracketed_type] = STATE(3540), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3274), - [sym_macro_invocation] = STATE(3031), - [sym_scoped_identifier] = STATE(2153), - [sym_scoped_type_identifier] = STATE(2935), - [sym_const_block] = STATE(3031), - [sym__pattern] = STATE(2843), - [sym_tuple_pattern] = STATE(3031), - [sym_slice_pattern] = STATE(3031), - [sym_tuple_struct_pattern] = STATE(3031), - [sym_struct_pattern] = STATE(3031), - [sym_remaining_field_pattern] = STATE(3031), - [sym_mut_pattern] = STATE(3031), - [sym_range_pattern] = STATE(3031), - [sym_ref_pattern] = STATE(3031), - [sym_captured_pattern] = STATE(3031), - [sym_reference_pattern] = STATE(3031), - [sym_or_pattern] = STATE(3031), - [sym__literal_pattern] = STATE(2307), - [sym_negative_literal] = STATE(2311), - [sym_string_literal] = STATE(2311), - [sym_raw_string_literal] = STATE(2311), - [sym_boolean_literal] = STATE(2311), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2578), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(802), [sym_block_comment] = STATE(802), - [sym_identifier] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1637), - [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_DASH] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_COLON_COLON] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_ref] = ACTIONS(1661), - [sym_mutable_specifier] = ACTIONS(3066), - [sym_integer_literal] = ACTIONS(1665), - [aux_sym_string_literal_token1] = ACTIONS(1667), - [sym_char_literal] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1671), - [sym_super] = ACTIONS(1671), - [sym_crate] = ACTIONS(1671), - [sym_metavariable] = ACTIONS(1673), - [sym__raw_string_literal_start] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(1665), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_RPAREN] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [803] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2097), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2578), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(803), [sym_block_comment] = STATE(803), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(3068), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_RBRACK] = ACTIONS(3072), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [804] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2133), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2115), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(804), [sym_block_comment] = STATE(804), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [805] = { - [sym_bracketed_type] = STATE(3540), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3274), - [sym_macro_invocation] = STATE(3031), - [sym_scoped_identifier] = STATE(2153), - [sym_scoped_type_identifier] = STATE(2935), - [sym_const_block] = STATE(3031), - [sym__pattern] = STATE(2849), - [sym_tuple_pattern] = STATE(3031), - [sym_slice_pattern] = STATE(3031), - [sym_tuple_struct_pattern] = STATE(3031), - [sym_struct_pattern] = STATE(3031), - [sym_remaining_field_pattern] = STATE(3031), - [sym_mut_pattern] = STATE(3031), - [sym_range_pattern] = STATE(3031), - [sym_ref_pattern] = STATE(3031), - [sym_captured_pattern] = STATE(3031), - [sym_reference_pattern] = STATE(3031), - [sym_or_pattern] = STATE(3031), - [sym__literal_pattern] = STATE(2307), - [sym_negative_literal] = STATE(2311), - [sym_string_literal] = STATE(2311), - [sym_raw_string_literal] = STATE(2311), - [sym_boolean_literal] = STATE(2311), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2487), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(805), [sym_block_comment] = STATE(805), - [sym_identifier] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1637), - [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_DASH] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_COLON_COLON] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_ref] = ACTIONS(1661), - [sym_mutable_specifier] = ACTIONS(1663), - [sym_integer_literal] = ACTIONS(1665), - [aux_sym_string_literal_token1] = ACTIONS(1667), - [sym_char_literal] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1671), - [sym_super] = ACTIONS(1671), - [sym_crate] = ACTIONS(1671), - [sym_metavariable] = ACTIONS(1673), - [sym__raw_string_literal_start] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(1665), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [806] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2503), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3551), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3283), + [sym_macro_invocation] = STATE(2882), + [sym_scoped_identifier] = STATE(2161), + [sym_scoped_type_identifier] = STATE(2974), + [sym_const_block] = STATE(2882), + [sym__pattern] = STATE(2842), + [sym_tuple_pattern] = STATE(2882), + [sym_slice_pattern] = STATE(2882), + [sym_tuple_struct_pattern] = STATE(2882), + [sym_struct_pattern] = STATE(2882), + [sym_remaining_field_pattern] = STATE(2882), + [sym_mut_pattern] = STATE(2882), + [sym_range_pattern] = STATE(2882), + [sym_ref_pattern] = STATE(2882), + [sym_captured_pattern] = STATE(2882), + [sym_reference_pattern] = STATE(2882), + [sym_or_pattern] = STATE(2882), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2305), + [sym_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_boolean_literal] = STATE(2305), [sym_line_comment] = STATE(806), [sym_block_comment] = STATE(806), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(1641), + [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_DASH] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1657), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1663), + [anon_sym_union] = ACTIONS(1663), + [anon_sym_ref] = ACTIONS(1665), + [sym_mutable_specifier] = ACTIONS(1667), + [sym_integer_literal] = ACTIONS(1669), + [aux_sym_string_literal_token1] = ACTIONS(1671), + [sym_char_literal] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1675), + [sym_super] = ACTIONS(1675), + [sym_crate] = ACTIONS(1675), + [sym_metavariable] = ACTIONS(1677), + [sym__raw_string_literal_start] = ACTIONS(1679), + [sym_float_literal] = ACTIONS(1669), }, [807] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2425), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3325), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(807), [sym_block_comment] = STATE(807), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(3070), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [808] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3247), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2578), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(808), [sym_block_comment] = STATE(808), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [809] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2430), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3551), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3283), + [sym_macro_invocation] = STATE(2882), + [sym_scoped_identifier] = STATE(2161), + [sym_scoped_type_identifier] = STATE(2974), + [sym_const_block] = STATE(2882), + [sym__pattern] = STATE(2846), + [sym_tuple_pattern] = STATE(2882), + [sym_slice_pattern] = STATE(2882), + [sym_tuple_struct_pattern] = STATE(2882), + [sym_struct_pattern] = STATE(2882), + [sym_remaining_field_pattern] = STATE(2882), + [sym_mut_pattern] = STATE(2882), + [sym_range_pattern] = STATE(2882), + [sym_ref_pattern] = STATE(2882), + [sym_captured_pattern] = STATE(2882), + [sym_reference_pattern] = STATE(2882), + [sym_or_pattern] = STATE(2882), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2305), + [sym_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_boolean_literal] = STATE(2305), [sym_line_comment] = STATE(809), [sym_block_comment] = STATE(809), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(1641), + [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_DASH] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1657), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1663), + [anon_sym_union] = ACTIONS(1663), + [anon_sym_ref] = ACTIONS(1665), + [sym_mutable_specifier] = ACTIONS(1667), + [sym_integer_literal] = ACTIONS(1669), + [aux_sym_string_literal_token1] = ACTIONS(1671), + [sym_char_literal] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1675), + [sym_super] = ACTIONS(1675), + [sym_crate] = ACTIONS(1675), + [sym_metavariable] = ACTIONS(1677), + [sym__raw_string_literal_start] = ACTIONS(1679), + [sym_float_literal] = ACTIONS(1669), }, [810] = { - [sym_bracketed_type] = STATE(3540), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3274), - [sym_macro_invocation] = STATE(3031), - [sym_scoped_identifier] = STATE(2153), - [sym_scoped_type_identifier] = STATE(2935), - [sym_const_block] = STATE(3031), - [sym__pattern] = STATE(2794), - [sym_tuple_pattern] = STATE(3031), - [sym_slice_pattern] = STATE(3031), - [sym_tuple_struct_pattern] = STATE(3031), - [sym_struct_pattern] = STATE(3031), - [sym_remaining_field_pattern] = STATE(3031), - [sym_mut_pattern] = STATE(3031), - [sym_range_pattern] = STATE(3031), - [sym_ref_pattern] = STATE(3031), - [sym_captured_pattern] = STATE(3031), - [sym_reference_pattern] = STATE(3031), - [sym_or_pattern] = STATE(3031), + [sym_bracketed_type] = STATE(3551), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3283), + [sym_macro_invocation] = STATE(2882), + [sym_scoped_identifier] = STATE(2161), + [sym_scoped_type_identifier] = STATE(2974), + [sym_const_block] = STATE(2882), + [sym__pattern] = STATE(2868), + [sym_tuple_pattern] = STATE(2882), + [sym_slice_pattern] = STATE(2882), + [sym_tuple_struct_pattern] = STATE(2882), + [sym_struct_pattern] = STATE(2882), + [sym_remaining_field_pattern] = STATE(2882), + [sym_mut_pattern] = STATE(2882), + [sym_range_pattern] = STATE(2882), + [sym_ref_pattern] = STATE(2882), + [sym_captured_pattern] = STATE(2882), + [sym_reference_pattern] = STATE(2882), + [sym_or_pattern] = STATE(2882), [sym__literal_pattern] = STATE(2307), - [sym_negative_literal] = STATE(2311), - [sym_string_literal] = STATE(2311), - [sym_raw_string_literal] = STATE(2311), - [sym_boolean_literal] = STATE(2311), + [sym_negative_literal] = STATE(2305), + [sym_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_boolean_literal] = STATE(2305), [sym_line_comment] = STATE(810), [sym_block_comment] = STATE(810), - [sym_identifier] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1637), - [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_DASH] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_COLON_COLON] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_ref] = ACTIONS(1661), - [sym_mutable_specifier] = ACTIONS(1663), - [sym_integer_literal] = ACTIONS(1665), - [aux_sym_string_literal_token1] = ACTIONS(1667), - [sym_char_literal] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1671), - [sym_super] = ACTIONS(1671), - [sym_crate] = ACTIONS(1671), - [sym_metavariable] = ACTIONS(1673), - [sym__raw_string_literal_start] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(1641), + [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_DASH] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1657), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1663), + [anon_sym_union] = ACTIONS(1663), + [anon_sym_ref] = ACTIONS(1665), + [sym_mutable_specifier] = ACTIONS(1667), + [sym_integer_literal] = ACTIONS(1669), + [aux_sym_string_literal_token1] = ACTIONS(1671), + [sym_char_literal] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1675), + [sym_super] = ACTIONS(1675), + [sym_crate] = ACTIONS(1675), + [sym_metavariable] = ACTIONS(1677), + [sym__raw_string_literal_start] = ACTIONS(1679), + [sym_float_literal] = ACTIONS(1669), }, [811] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2111), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2091), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(811), [sym_block_comment] = STATE(811), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(3074), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [812] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2120), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2093), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(812), [sym_block_comment] = STATE(812), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [813] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2100), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2982), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(813), [sym_block_comment] = STATE(813), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [814] = { - [sym_bracketed_type] = STATE(3540), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3274), - [sym_macro_invocation] = STATE(3031), - [sym_scoped_identifier] = STATE(2153), - [sym_scoped_type_identifier] = STATE(2935), - [sym_const_block] = STATE(3031), - [sym__pattern] = STATE(2762), - [sym_tuple_pattern] = STATE(3031), - [sym_slice_pattern] = STATE(3031), - [sym_tuple_struct_pattern] = STATE(3031), - [sym_struct_pattern] = STATE(3031), - [sym_remaining_field_pattern] = STATE(3031), - [sym_mut_pattern] = STATE(3031), - [sym_range_pattern] = STATE(3031), - [sym_ref_pattern] = STATE(3031), - [sym_captured_pattern] = STATE(3031), - [sym_reference_pattern] = STATE(3031), - [sym_or_pattern] = STATE(3031), - [sym__literal_pattern] = STATE(2307), - [sym_negative_literal] = STATE(2311), - [sym_string_literal] = STATE(2311), - [sym_raw_string_literal] = STATE(2311), - [sym_boolean_literal] = STATE(2311), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2768), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(814), [sym_block_comment] = STATE(814), - [sym_identifier] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1637), - [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_DASH] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_COLON_COLON] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_ref] = ACTIONS(1661), - [sym_mutable_specifier] = ACTIONS(1663), - [sym_integer_literal] = ACTIONS(1665), - [aux_sym_string_literal_token1] = ACTIONS(1667), - [sym_char_literal] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1671), - [sym_super] = ACTIONS(1671), - [sym_crate] = ACTIONS(1671), - [sym_metavariable] = ACTIONS(1673), - [sym__raw_string_literal_start] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(1665), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [815] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3319), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2124), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(815), [sym_block_comment] = STATE(815), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [816] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2583), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(816), [sym_block_comment] = STATE(816), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3076), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [817] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2929), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2114), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(817), [sym_block_comment] = STATE(817), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [818] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2098), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3309), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(818), [sym_block_comment] = STATE(818), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [819] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3250), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3551), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3283), + [sym_macro_invocation] = STATE(2882), + [sym_scoped_identifier] = STATE(2161), + [sym_scoped_type_identifier] = STATE(2974), + [sym_const_block] = STATE(2882), + [sym__pattern] = STATE(2952), + [sym_tuple_pattern] = STATE(2882), + [sym_slice_pattern] = STATE(2882), + [sym_tuple_struct_pattern] = STATE(2882), + [sym_struct_pattern] = STATE(2882), + [sym_remaining_field_pattern] = STATE(2882), + [sym_mut_pattern] = STATE(2882), + [sym_range_pattern] = STATE(2882), + [sym_ref_pattern] = STATE(2882), + [sym_captured_pattern] = STATE(2882), + [sym_reference_pattern] = STATE(2882), + [sym_or_pattern] = STATE(2882), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2305), + [sym_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_boolean_literal] = STATE(2305), [sym_line_comment] = STATE(819), [sym_block_comment] = STATE(819), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(1641), + [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_DASH] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1657), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1663), + [anon_sym_union] = ACTIONS(1663), + [anon_sym_ref] = ACTIONS(1665), + [sym_mutable_specifier] = ACTIONS(3078), + [sym_integer_literal] = ACTIONS(1669), + [aux_sym_string_literal_token1] = ACTIONS(1671), + [sym_char_literal] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1675), + [sym_super] = ACTIONS(1675), + [sym_crate] = ACTIONS(1675), + [sym_metavariable] = ACTIONS(1677), + [sym__raw_string_literal_start] = ACTIONS(1679), + [sym_float_literal] = ACTIONS(1669), }, [820] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2605), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2095), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(820), [sym_block_comment] = STATE(820), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [821] = { - [sym_bracketed_type] = STATE(3540), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3274), - [sym_macro_invocation] = STATE(3031), - [sym_scoped_identifier] = STATE(2153), - [sym_scoped_type_identifier] = STATE(2935), - [sym_const_block] = STATE(3031), - [sym__pattern] = STATE(2751), - [sym_tuple_pattern] = STATE(3031), - [sym_slice_pattern] = STATE(3031), - [sym_tuple_struct_pattern] = STATE(3031), - [sym_struct_pattern] = STATE(3031), - [sym_remaining_field_pattern] = STATE(3031), - [sym_mut_pattern] = STATE(3031), - [sym_range_pattern] = STATE(3031), - [sym_ref_pattern] = STATE(3031), - [sym_captured_pattern] = STATE(3031), - [sym_reference_pattern] = STATE(3031), - [sym_or_pattern] = STATE(3031), - [sym__literal_pattern] = STATE(2307), - [sym_negative_literal] = STATE(2311), - [sym_string_literal] = STATE(2311), - [sym_raw_string_literal] = STATE(2311), - [sym_boolean_literal] = STATE(2311), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2109), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(821), [sym_block_comment] = STATE(821), - [sym_identifier] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1637), - [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_DASH] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_COLON_COLON] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_ref] = ACTIONS(1661), - [sym_mutable_specifier] = ACTIONS(1663), - [sym_integer_literal] = ACTIONS(1665), - [aux_sym_string_literal_token1] = ACTIONS(1667), - [sym_char_literal] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1671), - [sym_super] = ACTIONS(1671), - [sym_crate] = ACTIONS(1671), - [sym_metavariable] = ACTIONS(1673), - [sym__raw_string_literal_start] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(1665), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [822] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2754), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3301), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(822), [sym_block_comment] = STATE(822), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [823] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2521), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2505), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(823), [sym_block_comment] = STATE(823), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3072), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(3080), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [824] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3245), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3273), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(824), [sym_block_comment] = STATE(824), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [825] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(2424), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2416), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(825), [sym_block_comment] = STATE(825), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(3074), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [826] = { - [sym_bracketed_type] = STATE(3540), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3274), - [sym_macro_invocation] = STATE(3031), - [sym_scoped_identifier] = STATE(2153), - [sym_scoped_type_identifier] = STATE(2935), - [sym_const_block] = STATE(3031), - [sym__pattern] = STATE(2861), - [sym_tuple_pattern] = STATE(3031), - [sym_slice_pattern] = STATE(3031), - [sym_tuple_struct_pattern] = STATE(3031), - [sym_struct_pattern] = STATE(3031), - [sym_remaining_field_pattern] = STATE(3031), - [sym_mut_pattern] = STATE(3031), - [sym_range_pattern] = STATE(3031), - [sym_ref_pattern] = STATE(3031), - [sym_captured_pattern] = STATE(3031), - [sym_reference_pattern] = STATE(3031), - [sym_or_pattern] = STATE(3031), + [sym_bracketed_type] = STATE(3551), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3283), + [sym_macro_invocation] = STATE(2882), + [sym_scoped_identifier] = STATE(2161), + [sym_scoped_type_identifier] = STATE(2974), + [sym_const_block] = STATE(2882), + [sym__pattern] = STATE(3033), + [sym_tuple_pattern] = STATE(2882), + [sym_slice_pattern] = STATE(2882), + [sym_tuple_struct_pattern] = STATE(2882), + [sym_struct_pattern] = STATE(2882), + [sym_remaining_field_pattern] = STATE(2882), + [sym_mut_pattern] = STATE(2882), + [sym_range_pattern] = STATE(2882), + [sym_ref_pattern] = STATE(2882), + [sym_captured_pattern] = STATE(2882), + [sym_reference_pattern] = STATE(2882), + [sym_or_pattern] = STATE(2882), [sym__literal_pattern] = STATE(2307), - [sym_negative_literal] = STATE(2311), - [sym_string_literal] = STATE(2311), - [sym_raw_string_literal] = STATE(2311), - [sym_boolean_literal] = STATE(2311), + [sym_negative_literal] = STATE(2305), + [sym_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_boolean_literal] = STATE(2305), [sym_line_comment] = STATE(826), [sym_block_comment] = STATE(826), - [sym_identifier] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1637), - [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_DASH] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_COLON_COLON] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_ref] = ACTIONS(1661), - [sym_mutable_specifier] = ACTIONS(1663), - [sym_integer_literal] = ACTIONS(1665), - [aux_sym_string_literal_token1] = ACTIONS(1667), - [sym_char_literal] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1671), - [sym_super] = ACTIONS(1671), - [sym_crate] = ACTIONS(1671), - [sym_metavariable] = ACTIONS(1673), - [sym__raw_string_literal_start] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(1641), + [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_DASH] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1657), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1663), + [anon_sym_union] = ACTIONS(1663), + [anon_sym_ref] = ACTIONS(1665), + [sym_mutable_specifier] = ACTIONS(1667), + [sym_integer_literal] = ACTIONS(1669), + [aux_sym_string_literal_token1] = ACTIONS(1671), + [sym_char_literal] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1675), + [sym_super] = ACTIONS(1675), + [sym_crate] = ACTIONS(1675), + [sym_metavariable] = ACTIONS(1677), + [sym__raw_string_literal_start] = ACTIONS(1679), + [sym_float_literal] = ACTIONS(1669), }, [827] = { - [sym_bracketed_type] = STATE(3540), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3274), - [sym_macro_invocation] = STATE(3031), - [sym_scoped_identifier] = STATE(2153), - [sym_scoped_type_identifier] = STATE(2935), - [sym_const_block] = STATE(3031), - [sym__pattern] = STATE(2759), - [sym_tuple_pattern] = STATE(3031), - [sym_slice_pattern] = STATE(3031), - [sym_tuple_struct_pattern] = STATE(3031), - [sym_struct_pattern] = STATE(3031), - [sym_remaining_field_pattern] = STATE(3031), - [sym_mut_pattern] = STATE(3031), - [sym_range_pattern] = STATE(3031), - [sym_ref_pattern] = STATE(3031), - [sym_captured_pattern] = STATE(3031), - [sym_reference_pattern] = STATE(3031), - [sym_or_pattern] = STATE(3031), + [sym_bracketed_type] = STATE(3551), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3283), + [sym_macro_invocation] = STATE(2882), + [sym_scoped_identifier] = STATE(2161), + [sym_scoped_type_identifier] = STATE(2974), + [sym_const_block] = STATE(2882), + [sym__pattern] = STATE(2959), + [sym_tuple_pattern] = STATE(2882), + [sym_slice_pattern] = STATE(2882), + [sym_tuple_struct_pattern] = STATE(2882), + [sym_struct_pattern] = STATE(2882), + [sym_remaining_field_pattern] = STATE(2882), + [sym_mut_pattern] = STATE(2882), + [sym_range_pattern] = STATE(2882), + [sym_ref_pattern] = STATE(2882), + [sym_captured_pattern] = STATE(2882), + [sym_reference_pattern] = STATE(2882), + [sym_or_pattern] = STATE(2882), [sym__literal_pattern] = STATE(2307), - [sym_negative_literal] = STATE(2311), - [sym_string_literal] = STATE(2311), - [sym_raw_string_literal] = STATE(2311), - [sym_boolean_literal] = STATE(2311), + [sym_negative_literal] = STATE(2305), + [sym_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_boolean_literal] = STATE(2305), [sym_line_comment] = STATE(827), [sym_block_comment] = STATE(827), - [sym_identifier] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1635), - [anon_sym_LBRACK] = ACTIONS(1637), - [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_DASH] = ACTIONS(1643), - [anon_sym_AMP] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1647), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1651), - [anon_sym_COLON_COLON] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1657), - [anon_sym_default] = ACTIONS(1659), - [anon_sym_union] = ACTIONS(1659), - [anon_sym_ref] = ACTIONS(1661), - [sym_mutable_specifier] = ACTIONS(1663), - [sym_integer_literal] = ACTIONS(1665), - [aux_sym_string_literal_token1] = ACTIONS(1667), - [sym_char_literal] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1671), - [sym_super] = ACTIONS(1671), - [sym_crate] = ACTIONS(1671), - [sym_metavariable] = ACTIONS(1673), - [sym__raw_string_literal_start] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(1665), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(1641), + [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_DASH] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1657), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1663), + [anon_sym_union] = ACTIONS(1663), + [anon_sym_ref] = ACTIONS(1665), + [sym_mutable_specifier] = ACTIONS(1667), + [sym_integer_literal] = ACTIONS(1669), + [aux_sym_string_literal_token1] = ACTIONS(1671), + [sym_char_literal] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1675), + [sym_super] = ACTIONS(1675), + [sym_crate] = ACTIONS(1675), + [sym_metavariable] = ACTIONS(1677), + [sym__raw_string_literal_start] = ACTIONS(1679), + [sym_float_literal] = ACTIONS(1669), }, [828] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3293), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(2471), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(3082), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [829] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3313), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3326), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(829), [sym_block_comment] = STATE(829), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [830] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3316), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3117), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(830), [sym_block_comment] = STATE(830), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [831] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3317), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3043), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(831), [sym_block_comment] = STATE(831), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [832] = { - [sym_bracketed_type] = STATE(3403), - [sym_generic_type] = STATE(3423), - [sym_generic_type_with_turbofish] = STATE(3168), - [sym_macro_invocation] = STATE(2124), - [sym_scoped_identifier] = STATE(1971), - [sym_scoped_type_identifier] = STATE(2764), - [sym_const_block] = STATE(2124), - [sym__pattern] = STATE(3318), - [sym_tuple_pattern] = STATE(2124), - [sym_slice_pattern] = STATE(2124), - [sym_tuple_struct_pattern] = STATE(2124), - [sym_struct_pattern] = STATE(2124), - [sym_remaining_field_pattern] = STATE(2124), - [sym_mut_pattern] = STATE(2124), - [sym_range_pattern] = STATE(2124), - [sym_ref_pattern] = STATE(2124), - [sym_captured_pattern] = STATE(2124), - [sym_reference_pattern] = STATE(2124), - [sym_or_pattern] = STATE(2124), - [sym__literal_pattern] = STATE(2017), - [sym_negative_literal] = STATE(2016), - [sym_string_literal] = STATE(2016), - [sym_raw_string_literal] = STATE(2016), - [sym_boolean_literal] = STATE(2016), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3304), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(832), [sym_block_comment] = STATE(832), - [sym_identifier] = ACTIONS(2944), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_u8] = ACTIONS(2952), - [anon_sym_i8] = ACTIONS(2952), - [anon_sym_u16] = ACTIONS(2952), - [anon_sym_i16] = ACTIONS(2952), - [anon_sym_u32] = ACTIONS(2952), - [anon_sym_i32] = ACTIONS(2952), - [anon_sym_u64] = ACTIONS(2952), - [anon_sym_i64] = ACTIONS(2952), - [anon_sym_u128] = ACTIONS(2952), - [anon_sym_i128] = ACTIONS(2952), - [anon_sym_isize] = ACTIONS(2952), - [anon_sym_usize] = ACTIONS(2952), - [anon_sym_f32] = ACTIONS(2952), - [anon_sym_f64] = ACTIONS(2952), - [anon_sym_bool] = ACTIONS(2952), - [anon_sym_str] = ACTIONS(2952), - [anon_sym_char] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(1375), - [anon_sym_AMP] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(1381), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2960), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_union] = ACTIONS(2962), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1513), - [sym_integer_literal] = ACTIONS(1419), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1419), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2964), - [sym_super] = ACTIONS(2964), - [sym_crate] = ACTIONS(2964), - [sym_metavariable] = ACTIONS(2966), - [sym__raw_string_literal_start] = ACTIONS(1431), - [sym_float_literal] = ACTIONS(1419), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [833] = { - [sym_function_modifiers] = STATE(3354), - [sym_removed_trait_bound] = STATE(1426), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1122), - [sym_bracketed_type] = STATE(3531), - [sym_lifetime] = STATE(3337), - [sym_array_type] = STATE(1426), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1426), - [sym_tuple_type] = STATE(1426), - [sym_unit_type] = STATE(1426), - [sym_generic_type] = STATE(1051), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1426), - [sym_reference_type] = STATE(1426), - [sym_pointer_type] = STATE(1426), - [sym_never_type] = STATE(1426), - [sym_abstract_type] = STATE(1426), - [sym_dynamic_type] = STATE(1426), - [sym_macro_invocation] = STATE(1426), - [sym_scoped_identifier] = STATE(3212), - [sym_scoped_type_identifier] = STATE(1019), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3318), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(833), [sym_block_comment] = STATE(833), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_PLUS] = ACTIONS(3082), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_u8] = ACTIONS(3088), - [anon_sym_i8] = ACTIONS(3088), - [anon_sym_u16] = ACTIONS(3088), - [anon_sym_i16] = ACTIONS(3088), - [anon_sym_u32] = ACTIONS(3088), - [anon_sym_i32] = ACTIONS(3088), - [anon_sym_u64] = ACTIONS(3088), - [anon_sym_i64] = ACTIONS(3088), - [anon_sym_u128] = ACTIONS(3088), - [anon_sym_i128] = ACTIONS(3088), - [anon_sym_isize] = ACTIONS(3088), - [anon_sym_usize] = ACTIONS(3088), - [anon_sym_f32] = ACTIONS(3088), - [anon_sym_f64] = ACTIONS(3088), - [anon_sym_bool] = ACTIONS(3088), - [anon_sym_str] = ACTIONS(3088), - [anon_sym_char] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3094), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3096), - [anon_sym_fn] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3100), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3104), - [sym_mutable_specifier] = ACTIONS(3106), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3108), - [sym_super] = ACTIONS(3108), - [sym_crate] = ACTIONS(3108), - [sym_metavariable] = ACTIONS(3110), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [834] = { - [sym_function_modifiers] = STATE(3328), - [sym_removed_trait_bound] = STATE(1645), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1701), - [sym_bracketed_type] = STATE(3546), - [sym_lifetime] = STATE(3363), - [sym_array_type] = STATE(1645), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1645), - [sym_tuple_type] = STATE(1645), - [sym_unit_type] = STATE(1645), - [sym_generic_type] = STATE(1626), - [sym_generic_type_with_turbofish] = STATE(3538), - [sym_bounded_type] = STATE(1645), - [sym_reference_type] = STATE(1645), - [sym_pointer_type] = STATE(1645), - [sym_never_type] = STATE(1645), - [sym_abstract_type] = STATE(1645), - [sym_dynamic_type] = STATE(1645), - [sym_macro_invocation] = STATE(1645), - [sym_scoped_identifier] = STATE(3277), - [sym_scoped_type_identifier] = STATE(1526), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3323), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(834), [sym_block_comment] = STATE(834), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_PLUS] = ACTIONS(3118), - [anon_sym_STAR] = ACTIONS(3120), - [anon_sym_QMARK] = ACTIONS(3122), - [anon_sym_u8] = ACTIONS(3124), - [anon_sym_i8] = ACTIONS(3124), - [anon_sym_u16] = ACTIONS(3124), - [anon_sym_i16] = ACTIONS(3124), - [anon_sym_u32] = ACTIONS(3124), - [anon_sym_i32] = ACTIONS(3124), - [anon_sym_u64] = ACTIONS(3124), - [anon_sym_i64] = ACTIONS(3124), - [anon_sym_u128] = ACTIONS(3124), - [anon_sym_i128] = ACTIONS(3124), - [anon_sym_isize] = ACTIONS(3124), - [anon_sym_usize] = ACTIONS(3124), - [anon_sym_f32] = ACTIONS(3124), - [anon_sym_f64] = ACTIONS(3124), - [anon_sym_bool] = ACTIONS(3124), - [anon_sym_str] = ACTIONS(3124), - [anon_sym_char] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_fn] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3136), - [anon_sym_union] = ACTIONS(3138), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3140), - [sym_mutable_specifier] = ACTIONS(3142), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_crate] = ACTIONS(3144), - [sym_metavariable] = ACTIONS(3146), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [835] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1977), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_bracketed_type] = STATE(3458), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3103), + [sym_macro_invocation] = STATE(2094), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2782), + [sym_const_block] = STATE(2094), + [sym__pattern] = STATE(3324), + [sym_tuple_pattern] = STATE(2094), + [sym_slice_pattern] = STATE(2094), + [sym_tuple_struct_pattern] = STATE(2094), + [sym_struct_pattern] = STATE(2094), + [sym_remaining_field_pattern] = STATE(2094), + [sym_mut_pattern] = STATE(2094), + [sym_range_pattern] = STATE(2094), + [sym_ref_pattern] = STATE(2094), + [sym_captured_pattern] = STATE(2094), + [sym_reference_pattern] = STATE(2094), + [sym_or_pattern] = STATE(2094), + [sym__literal_pattern] = STATE(2018), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(835), [sym_block_comment] = STATE(835), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(3150), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3152), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [sym_identifier] = ACTIONS(2952), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_u8] = ACTIONS(2960), + [anon_sym_i8] = ACTIONS(2960), + [anon_sym_u16] = ACTIONS(2960), + [anon_sym_i16] = ACTIONS(2960), + [anon_sym_u32] = ACTIONS(2960), + [anon_sym_i32] = ACTIONS(2960), + [anon_sym_u64] = ACTIONS(2960), + [anon_sym_i64] = ACTIONS(2960), + [anon_sym_u128] = ACTIONS(2960), + [anon_sym_i128] = ACTIONS(2960), + [anon_sym_isize] = ACTIONS(2960), + [anon_sym_usize] = ACTIONS(2960), + [anon_sym_f32] = ACTIONS(2960), + [anon_sym_f64] = ACTIONS(2960), + [anon_sym_bool] = ACTIONS(2960), + [anon_sym_str] = ACTIONS(2960), + [anon_sym_char] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1513), + [anon_sym_DOT_DOT] = ACTIONS(1515), + [anon_sym_COLON_COLON] = ACTIONS(2966), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2970), + [anon_sym_union] = ACTIONS(2970), + [anon_sym_ref] = ACTIONS(1421), + [sym_mutable_specifier] = ACTIONS(1521), + [sym_integer_literal] = ACTIONS(1427), + [aux_sym_string_literal_token1] = ACTIONS(1429), + [sym_char_literal] = ACTIONS(1427), + [anon_sym_true] = ACTIONS(1431), + [anon_sym_false] = ACTIONS(1431), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2972), + [sym_super] = ACTIONS(2972), + [sym_crate] = ACTIONS(2972), + [sym_metavariable] = ACTIONS(2974), + [sym__raw_string_literal_start] = ACTIONS(1439), + [sym_float_literal] = ACTIONS(1427), }, [836] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(3312), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_bracketed_type] = STATE(3551), + [sym_generic_type] = STATE(3540), + [sym_generic_type_with_turbofish] = STATE(3283), + [sym_macro_invocation] = STATE(2882), + [sym_scoped_identifier] = STATE(2161), + [sym_scoped_type_identifier] = STATE(2974), + [sym_const_block] = STATE(2882), + [sym__pattern] = STATE(2953), + [sym_tuple_pattern] = STATE(2882), + [sym_slice_pattern] = STATE(2882), + [sym_tuple_struct_pattern] = STATE(2882), + [sym_struct_pattern] = STATE(2882), + [sym_remaining_field_pattern] = STATE(2882), + [sym_mut_pattern] = STATE(2882), + [sym_range_pattern] = STATE(2882), + [sym_ref_pattern] = STATE(2882), + [sym_captured_pattern] = STATE(2882), + [sym_reference_pattern] = STATE(2882), + [sym_or_pattern] = STATE(2882), + [sym__literal_pattern] = STATE(2307), + [sym_negative_literal] = STATE(2305), + [sym_string_literal] = STATE(2305), + [sym_raw_string_literal] = STATE(2305), + [sym_boolean_literal] = STATE(2305), [sym_line_comment] = STATE(836), [sym_block_comment] = STATE(836), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(3154), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [sym_identifier] = ACTIONS(1637), + [anon_sym_LPAREN] = ACTIONS(1639), + [anon_sym_LBRACK] = ACTIONS(1641), + [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_DASH] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1649), + [anon_sym_PIPE] = ACTIONS(1651), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1657), + [anon_sym_const] = ACTIONS(1661), + [anon_sym_default] = ACTIONS(1663), + [anon_sym_union] = ACTIONS(1663), + [anon_sym_ref] = ACTIONS(1665), + [sym_mutable_specifier] = ACTIONS(1667), + [sym_integer_literal] = ACTIONS(1669), + [aux_sym_string_literal_token1] = ACTIONS(1671), + [sym_char_literal] = ACTIONS(1669), + [anon_sym_true] = ACTIONS(1673), + [anon_sym_false] = ACTIONS(1673), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1675), + [sym_super] = ACTIONS(1675), + [sym_crate] = ACTIONS(1675), + [sym_metavariable] = ACTIONS(1677), + [sym__raw_string_literal_start] = ACTIONS(1679), + [sym_float_literal] = ACTIONS(1669), }, [837] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1977), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1997), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(837), [sym_block_comment] = STATE(837), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(3156), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(3086), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [838] = { - [sym_function_modifiers] = STATE(3428), - [sym_higher_ranked_trait_bound] = STATE(2192), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2207), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(2197), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1997), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(838), [sym_block_comment] = STATE(838), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(3158), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(3088), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3090), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [839] = { - [sym_function_modifiers] = STATE(3354), - [sym_removed_trait_bound] = STATE(1426), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1416), - [sym_bracketed_type] = STATE(3531), - [sym_lifetime] = STATE(833), - [sym_array_type] = STATE(1426), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1426), - [sym_tuple_type] = STATE(1426), - [sym_unit_type] = STATE(1426), - [sym_generic_type] = STATE(1051), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1426), - [sym_reference_type] = STATE(1426), - [sym_pointer_type] = STATE(1426), - [sym_never_type] = STATE(1426), - [sym_abstract_type] = STATE(1426), - [sym_dynamic_type] = STATE(1426), - [sym_macro_invocation] = STATE(1426), - [sym_scoped_identifier] = STATE(3212), - [sym_scoped_type_identifier] = STATE(1019), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(3264), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(839), [sym_block_comment] = STATE(839), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_u8] = ACTIONS(3088), - [anon_sym_i8] = ACTIONS(3088), - [anon_sym_u16] = ACTIONS(3088), - [anon_sym_i16] = ACTIONS(3088), - [anon_sym_u32] = ACTIONS(3088), - [anon_sym_i32] = ACTIONS(3088), - [anon_sym_u64] = ACTIONS(3088), - [anon_sym_i64] = ACTIONS(3088), - [anon_sym_u128] = ACTIONS(3088), - [anon_sym_i128] = ACTIONS(3088), - [anon_sym_isize] = ACTIONS(3088), - [anon_sym_usize] = ACTIONS(3088), - [anon_sym_f32] = ACTIONS(3088), - [anon_sym_f64] = ACTIONS(3088), - [anon_sym_bool] = ACTIONS(3088), - [anon_sym_str] = ACTIONS(3088), - [anon_sym_char] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3094), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_PLUS] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3096), - [anon_sym_fn] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3100), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3104), - [sym_mutable_specifier] = ACTIONS(3160), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3108), - [sym_super] = ACTIONS(3108), - [sym_crate] = ACTIONS(3108), - [sym_metavariable] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(3092), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [840] = { + [sym_function_modifiers] = STATE(3363), + [sym_removed_trait_bound] = STATE(1469), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1107), + [sym_bracketed_type] = STATE(3542), + [sym_lifetime] = STATE(3339), + [sym_array_type] = STATE(1469), + [sym_for_lifetimes] = STATE(1611), + [sym_function_type] = STATE(1469), + [sym_tuple_type] = STATE(1469), + [sym_unit_type] = STATE(1469), + [sym_generic_type] = STATE(1094), + [sym_generic_type_with_turbofish] = STATE(3533), + [sym_bounded_type] = STATE(1469), + [sym_reference_type] = STATE(1469), + [sym_pointer_type] = STATE(1469), + [sym_never_type] = STATE(1469), + [sym_abstract_type] = STATE(1469), + [sym_dynamic_type] = STATE(1469), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(3219), + [sym_scoped_type_identifier] = STATE(1032), [sym_line_comment] = STATE(840), [sym_block_comment] = STATE(840), - [sym_identifier] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACK] = ACTIONS(2143), - [anon_sym_RBRACK] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_STAR] = ACTIONS(2143), - [anon_sym_u8] = ACTIONS(2145), - [anon_sym_i8] = ACTIONS(2145), - [anon_sym_u16] = ACTIONS(2145), - [anon_sym_i16] = ACTIONS(2145), - [anon_sym_u32] = ACTIONS(2145), - [anon_sym_i32] = ACTIONS(2145), - [anon_sym_u64] = ACTIONS(2145), - [anon_sym_i64] = ACTIONS(2145), - [anon_sym_u128] = ACTIONS(2145), - [anon_sym_i128] = ACTIONS(2145), - [anon_sym_isize] = ACTIONS(2145), - [anon_sym_usize] = ACTIONS(2145), - [anon_sym_f32] = ACTIONS(2145), - [anon_sym_f64] = ACTIONS(2145), - [anon_sym_bool] = ACTIONS(2145), - [anon_sym_str] = ACTIONS(2145), - [anon_sym_char] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2143), - [anon_sym_BANG] = ACTIONS(2143), - [anon_sym_AMP] = ACTIONS(2143), - [anon_sym_PIPE] = ACTIONS(2143), - [anon_sym_LT] = ACTIONS(2143), - [anon_sym__] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2143), - [anon_sym_COMMA] = ACTIONS(2143), - [anon_sym_COLON_COLON] = ACTIONS(2143), - [anon_sym_POUND] = ACTIONS(2143), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_default] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_gen] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_loop] = ACTIONS(2145), - [anon_sym_match] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_union] = ACTIONS(2145), - [anon_sym_unsafe] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_ref] = ACTIONS(2145), - [sym_mutable_specifier] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_move] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [sym_integer_literal] = ACTIONS(2143), - [aux_sym_string_literal_token1] = ACTIONS(2143), - [sym_char_literal] = ACTIONS(2143), - [anon_sym_true] = ACTIONS(2145), - [anon_sym_false] = ACTIONS(2145), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_crate] = ACTIONS(2145), - [sym_metavariable] = ACTIONS(2143), - [sym__raw_string_literal_start] = ACTIONS(2143), - [sym_float_literal] = ACTIONS(2143), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3104), + [anon_sym_u8] = ACTIONS(3106), + [anon_sym_i8] = ACTIONS(3106), + [anon_sym_u16] = ACTIONS(3106), + [anon_sym_i16] = ACTIONS(3106), + [anon_sym_u32] = ACTIONS(3106), + [anon_sym_i32] = ACTIONS(3106), + [anon_sym_u64] = ACTIONS(3106), + [anon_sym_i64] = ACTIONS(3106), + [anon_sym_u128] = ACTIONS(3106), + [anon_sym_i128] = ACTIONS(3106), + [anon_sym_isize] = ACTIONS(3106), + [anon_sym_usize] = ACTIONS(3106), + [anon_sym_f32] = ACTIONS(3106), + [anon_sym_f64] = ACTIONS(3106), + [anon_sym_bool] = ACTIONS(3106), + [anon_sym_str] = ACTIONS(3106), + [anon_sym_char] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3112), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3114), + [anon_sym_fn] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3122), + [sym_mutable_specifier] = ACTIONS(3124), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_crate] = ACTIONS(3126), + [sym_metavariable] = ACTIONS(3128), }, [841] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2982), - [sym_bracketed_type] = STATE(3348), - [sym_qualified_type] = STATE(3449), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3502), + [sym_removed_trait_bound] = STATE(1665), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1679), + [sym_bracketed_type] = STATE(3557), + [sym_lifetime] = STATE(3404), + [sym_array_type] = STATE(1665), + [sym_for_lifetimes] = STATE(1584), + [sym_function_type] = STATE(1665), + [sym_tuple_type] = STATE(1665), + [sym_unit_type] = STATE(1665), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3549), + [sym_bounded_type] = STATE(1665), + [sym_reference_type] = STATE(1665), + [sym_pointer_type] = STATE(1665), + [sym_never_type] = STATE(1665), + [sym_abstract_type] = STATE(1665), + [sym_dynamic_type] = STATE(1665), + [sym_macro_invocation] = STATE(1665), + [sym_scoped_identifier] = STATE(3285), + [sym_scoped_type_identifier] = STATE(1536), [sym_line_comment] = STATE(841), [sym_block_comment] = STATE(841), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3136), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_u8] = ACTIONS(3142), + [anon_sym_i8] = ACTIONS(3142), + [anon_sym_u16] = ACTIONS(3142), + [anon_sym_i16] = ACTIONS(3142), + [anon_sym_u32] = ACTIONS(3142), + [anon_sym_i32] = ACTIONS(3142), + [anon_sym_u64] = ACTIONS(3142), + [anon_sym_i64] = ACTIONS(3142), + [anon_sym_u128] = ACTIONS(3142), + [anon_sym_i128] = ACTIONS(3142), + [anon_sym_isize] = ACTIONS(3142), + [anon_sym_usize] = ACTIONS(3142), + [anon_sym_f32] = ACTIONS(3142), + [anon_sym_f64] = ACTIONS(3142), + [anon_sym_bool] = ACTIONS(3142), + [anon_sym_str] = ACTIONS(3142), + [anon_sym_char] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3154), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3158), + [sym_mutable_specifier] = ACTIONS(3160), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3162), + [sym_super] = ACTIONS(3162), + [sym_crate] = ACTIONS(3162), + [sym_metavariable] = ACTIONS(3164), }, [842] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2604), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(3114), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(839), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(842), [sym_block_comment] = STATE(842), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(3162), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(3166), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [843] = { - [sym_function_modifiers] = STATE(3328), - [sym_removed_trait_bound] = STATE(1645), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1681), - [sym_bracketed_type] = STATE(3546), - [sym_lifetime] = STATE(834), - [sym_array_type] = STATE(1645), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1645), - [sym_tuple_type] = STATE(1645), - [sym_unit_type] = STATE(1645), - [sym_generic_type] = STATE(1626), - [sym_generic_type_with_turbofish] = STATE(3538), - [sym_bounded_type] = STATE(1645), - [sym_reference_type] = STATE(1645), - [sym_pointer_type] = STATE(1645), - [sym_never_type] = STATE(1645), - [sym_abstract_type] = STATE(1645), - [sym_dynamic_type] = STATE(1645), - [sym_macro_invocation] = STATE(1645), - [sym_scoped_identifier] = STATE(3277), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2891), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(843), [sym_block_comment] = STATE(843), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3120), - [anon_sym_QMARK] = ACTIONS(3122), - [anon_sym_u8] = ACTIONS(3124), - [anon_sym_i8] = ACTIONS(3124), - [anon_sym_u16] = ACTIONS(3124), - [anon_sym_i16] = ACTIONS(3124), - [anon_sym_u32] = ACTIONS(3124), - [anon_sym_i32] = ACTIONS(3124), - [anon_sym_u64] = ACTIONS(3124), - [anon_sym_i64] = ACTIONS(3124), - [anon_sym_u128] = ACTIONS(3124), - [anon_sym_i128] = ACTIONS(3124), - [anon_sym_isize] = ACTIONS(3124), - [anon_sym_usize] = ACTIONS(3124), - [anon_sym_f32] = ACTIONS(3124), - [anon_sym_f64] = ACTIONS(3124), - [anon_sym_bool] = ACTIONS(3124), - [anon_sym_str] = ACTIONS(3124), - [anon_sym_char] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3130), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_RPAREN] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_fn] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3136), - [anon_sym_union] = ACTIONS(3138), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3140), - [sym_mutable_specifier] = ACTIONS(3164), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_crate] = ACTIONS(3144), - [sym_metavariable] = ACTIONS(3146), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [844] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_type_parameters] = STATE(946), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2344), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(2298), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(2177), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(3000), + [sym_bracketed_type] = STATE(3358), + [sym_qualified_type] = STATE(3469), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(844), [sym_block_comment] = STATE(844), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3166), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [845] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2879), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2891), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(845), [sym_block_comment] = STATE(845), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_RPAREN] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [846] = { - [sym_function_modifiers] = STATE(3428), - [sym_higher_ranked_trait_bound] = STATE(2192), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2195), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(2197), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_higher_ranked_trait_bound] = STATE(2148), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2149), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(2150), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(846), [sym_block_comment] = STATE(846), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(3158), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(3172), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [847] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2002), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(837), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), [sym_line_comment] = STATE(847), [sym_block_comment] = STATE(847), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(3174), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [sym_identifier] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2039), + [anon_sym_LBRACK] = ACTIONS(2039), + [anon_sym_RBRACK] = ACTIONS(2039), + [anon_sym_LBRACE] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2039), + [anon_sym_u8] = ACTIONS(2041), + [anon_sym_i8] = ACTIONS(2041), + [anon_sym_u16] = ACTIONS(2041), + [anon_sym_i16] = ACTIONS(2041), + [anon_sym_u32] = ACTIONS(2041), + [anon_sym_i32] = ACTIONS(2041), + [anon_sym_u64] = ACTIONS(2041), + [anon_sym_i64] = ACTIONS(2041), + [anon_sym_u128] = ACTIONS(2041), + [anon_sym_i128] = ACTIONS(2041), + [anon_sym_isize] = ACTIONS(2041), + [anon_sym_usize] = ACTIONS(2041), + [anon_sym_f32] = ACTIONS(2041), + [anon_sym_f64] = ACTIONS(2041), + [anon_sym_bool] = ACTIONS(2041), + [anon_sym_str] = ACTIONS(2041), + [anon_sym_char] = ACTIONS(2041), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_BANG] = ACTIONS(2039), + [anon_sym_AMP] = ACTIONS(2039), + [anon_sym_PIPE] = ACTIONS(2039), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym__] = ACTIONS(2041), + [anon_sym_DOT_DOT] = ACTIONS(2039), + [anon_sym_COMMA] = ACTIONS(2039), + [anon_sym_COLON_COLON] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(2039), + [anon_sym_SQUOTE] = ACTIONS(2041), + [anon_sym_async] = ACTIONS(2041), + [anon_sym_break] = ACTIONS(2041), + [anon_sym_const] = ACTIONS(2041), + [anon_sym_continue] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(2041), + [anon_sym_for] = ACTIONS(2041), + [anon_sym_gen] = ACTIONS(2041), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_loop] = ACTIONS(2041), + [anon_sym_match] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2041), + [anon_sym_static] = ACTIONS(2041), + [anon_sym_union] = ACTIONS(2041), + [anon_sym_unsafe] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2041), + [anon_sym_ref] = ACTIONS(2041), + [sym_mutable_specifier] = ACTIONS(2041), + [anon_sym_yield] = ACTIONS(2041), + [anon_sym_move] = ACTIONS(2041), + [anon_sym_try] = ACTIONS(2041), + [sym_integer_literal] = ACTIONS(2039), + [aux_sym_string_literal_token1] = ACTIONS(2039), + [sym_char_literal] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2041), + [anon_sym_false] = ACTIONS(2041), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2041), + [sym_super] = ACTIONS(2041), + [sym_crate] = ACTIONS(2041), + [sym_metavariable] = ACTIONS(2039), + [sym__raw_string_literal_start] = ACTIONS(2039), + [sym_float_literal] = ACTIONS(2039), }, [848] = { - [sym_function_modifiers] = STATE(3428), - [sym_higher_ranked_trait_bound] = STATE(2192), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2207), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(2209), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2891), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(848), [sym_block_comment] = STATE(848), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_RPAREN] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(3158), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [849] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2879), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2891), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(849), [sym_block_comment] = STATE(849), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), [anon_sym_RPAREN] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [850] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2558), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2628), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(850), [sym_block_comment] = STATE(850), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [851] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_type_parameters] = STATE(1000), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2348), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(2364), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(2182), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2569), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(851), [sym_block_comment] = STATE(851), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3180), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(3182), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_RPAREN] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [852] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2693), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2652), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(852), [sym_block_comment] = STATE(852), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_RPAREN] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [853] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2617), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2891), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(853), [sym_block_comment] = STATE(853), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3186), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_RPAREN] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [854] = { - [sym_function_modifiers] = STATE(3428), - [sym_higher_ranked_trait_bound] = STATE(2148), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2150), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(2152), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2591), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(854), [sym_block_comment] = STATE(854), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3186), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(3158), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [855] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(3269), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(836), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2891), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(855), [sym_block_comment] = STATE(855), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_RPAREN] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [sym_mutable_specifier] = ACTIONS(3188), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [856] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2879), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1988), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(837), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(856), [sym_block_comment] = STATE(856), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [sym_mutable_specifier] = ACTIONS(3190), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [857] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2692), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3502), + [sym_removed_trait_bound] = STATE(1665), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1657), + [sym_bracketed_type] = STATE(3557), + [sym_lifetime] = STATE(841), + [sym_array_type] = STATE(1665), + [sym_for_lifetimes] = STATE(1584), + [sym_function_type] = STATE(1665), + [sym_tuple_type] = STATE(1665), + [sym_unit_type] = STATE(1665), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3549), + [sym_bounded_type] = STATE(1665), + [sym_reference_type] = STATE(1665), + [sym_pointer_type] = STATE(1665), + [sym_never_type] = STATE(1665), + [sym_abstract_type] = STATE(1665), + [sym_dynamic_type] = STATE(1665), + [sym_macro_invocation] = STATE(1665), + [sym_scoped_identifier] = STATE(3285), + [sym_scoped_type_identifier] = STATE(1536), [sym_line_comment] = STATE(857), [sym_block_comment] = STATE(857), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3192), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_u8] = ACTIONS(3142), + [anon_sym_i8] = ACTIONS(3142), + [anon_sym_u16] = ACTIONS(3142), + [anon_sym_i16] = ACTIONS(3142), + [anon_sym_u32] = ACTIONS(3142), + [anon_sym_i32] = ACTIONS(3142), + [anon_sym_u64] = ACTIONS(3142), + [anon_sym_i64] = ACTIONS(3142), + [anon_sym_u128] = ACTIONS(3142), + [anon_sym_i128] = ACTIONS(3142), + [anon_sym_isize] = ACTIONS(3142), + [anon_sym_usize] = ACTIONS(3142), + [anon_sym_f32] = ACTIONS(3142), + [anon_sym_f64] = ACTIONS(3142), + [anon_sym_bool] = ACTIONS(3142), + [anon_sym_str] = ACTIONS(3142), + [anon_sym_char] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3154), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3158), + [sym_mutable_specifier] = ACTIONS(3192), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3162), + [sym_super] = ACTIONS(3162), + [sym_crate] = ACTIONS(3162), + [sym_metavariable] = ACTIONS(3164), }, [858] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2879), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_type_parameters] = STATE(939), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2323), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(2396), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(2187), [sym_line_comment] = STATE(858), [sym_block_comment] = STATE(858), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [859] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_type_parameters] = STATE(929), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2363), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(2372), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(2174), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_type_parameters] = STATE(882), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2387), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(2389), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(2156), [sym_line_comment] = STATE(859), [sym_block_comment] = STATE(859), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3196), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3200), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [860] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_type_parameters] = STATE(1006), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2330), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(2319), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(2145), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_type_parameters] = STATE(952), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2334), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(2400), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(2162), [sym_line_comment] = STATE(860), [sym_block_comment] = STATE(860), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(3202), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(3206), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [861] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2879), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_higher_ranked_trait_bound] = STATE(2192), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2198), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(2200), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(861), [sym_block_comment] = STATE(861), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(3172), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [862] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2879), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_higher_ranked_trait_bound] = STATE(2192), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2206), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(2212), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(862), [sym_block_comment] = STATE(862), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_RPAREN] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(3172), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [863] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2304), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_higher_ranked_trait_bound] = STATE(2192), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2206), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(2200), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(863), [sym_block_comment] = STATE(863), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(3172), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [864] = { - [sym_function_modifiers] = STATE(3354), - [sym_removed_trait_bound] = STATE(1426), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1246), - [sym_bracketed_type] = STATE(3531), - [sym_lifetime] = STATE(3337), - [sym_array_type] = STATE(1426), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1426), - [sym_tuple_type] = STATE(1426), - [sym_unit_type] = STATE(1426), - [sym_generic_type] = STATE(1051), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1426), - [sym_reference_type] = STATE(1426), - [sym_pointer_type] = STATE(1426), - [sym_never_type] = STATE(1426), - [sym_abstract_type] = STATE(1426), - [sym_dynamic_type] = STATE(1426), - [sym_macro_invocation] = STATE(1426), - [sym_scoped_identifier] = STATE(3212), - [sym_scoped_type_identifier] = STATE(1019), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2685), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(864), [sym_block_comment] = STATE(864), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_u8] = ACTIONS(3088), - [anon_sym_i8] = ACTIONS(3088), - [anon_sym_u16] = ACTIONS(3088), - [anon_sym_i16] = ACTIONS(3088), - [anon_sym_u32] = ACTIONS(3088), - [anon_sym_i32] = ACTIONS(3088), - [anon_sym_u64] = ACTIONS(3088), - [anon_sym_i64] = ACTIONS(3088), - [anon_sym_u128] = ACTIONS(3088), - [anon_sym_i128] = ACTIONS(3088), - [anon_sym_isize] = ACTIONS(3088), - [anon_sym_usize] = ACTIONS(3088), - [anon_sym_f32] = ACTIONS(3088), - [anon_sym_f64] = ACTIONS(3088), - [anon_sym_bool] = ACTIONS(3088), - [anon_sym_str] = ACTIONS(3088), - [anon_sym_char] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3094), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_RPAREN] = ACTIONS(3208), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3096), - [anon_sym_fn] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3100), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3104), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3108), - [sym_super] = ACTIONS(3108), - [sym_crate] = ACTIONS(3108), - [sym_metavariable] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [865] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2946), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3363), + [sym_removed_trait_bound] = STATE(1469), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1103), + [sym_bracketed_type] = STATE(3542), + [sym_lifetime] = STATE(840), + [sym_array_type] = STATE(1469), + [sym_for_lifetimes] = STATE(1611), + [sym_function_type] = STATE(1469), + [sym_tuple_type] = STATE(1469), + [sym_unit_type] = STATE(1469), + [sym_generic_type] = STATE(1094), + [sym_generic_type_with_turbofish] = STATE(3533), + [sym_bounded_type] = STATE(1469), + [sym_reference_type] = STATE(1469), + [sym_pointer_type] = STATE(1469), + [sym_never_type] = STATE(1469), + [sym_abstract_type] = STATE(1469), + [sym_dynamic_type] = STATE(1469), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(3219), + [sym_scoped_type_identifier] = STATE(1032), [sym_line_comment] = STATE(865), [sym_block_comment] = STATE(865), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3104), + [anon_sym_u8] = ACTIONS(3106), + [anon_sym_i8] = ACTIONS(3106), + [anon_sym_u16] = ACTIONS(3106), + [anon_sym_i16] = ACTIONS(3106), + [anon_sym_u32] = ACTIONS(3106), + [anon_sym_i32] = ACTIONS(3106), + [anon_sym_u64] = ACTIONS(3106), + [anon_sym_i64] = ACTIONS(3106), + [anon_sym_u128] = ACTIONS(3106), + [anon_sym_i128] = ACTIONS(3106), + [anon_sym_isize] = ACTIONS(3106), + [anon_sym_usize] = ACTIONS(3106), + [anon_sym_f32] = ACTIONS(3106), + [anon_sym_f64] = ACTIONS(3106), + [anon_sym_bool] = ACTIONS(3106), + [anon_sym_str] = ACTIONS(3106), + [anon_sym_char] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3112), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3114), + [anon_sym_fn] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3122), + [sym_mutable_specifier] = ACTIONS(3210), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_crate] = ACTIONS(3126), + [sym_metavariable] = ACTIONS(3128), }, [866] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2896), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_type_parameters] = STATE(996), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2379), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(2380), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(2181), [sym_line_comment] = STATE(866), [sym_block_comment] = STATE(866), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3212), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [867] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2231), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3363), + [sym_removed_trait_bound] = STATE(1469), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1168), + [sym_bracketed_type] = STATE(3542), + [sym_lifetime] = STATE(3339), + [sym_array_type] = STATE(1469), + [sym_for_lifetimes] = STATE(1611), + [sym_function_type] = STATE(1469), + [sym_tuple_type] = STATE(1469), + [sym_unit_type] = STATE(1469), + [sym_generic_type] = STATE(1094), + [sym_generic_type_with_turbofish] = STATE(3533), + [sym_bounded_type] = STATE(1469), + [sym_reference_type] = STATE(1469), + [sym_pointer_type] = STATE(1469), + [sym_never_type] = STATE(1469), + [sym_abstract_type] = STATE(1469), + [sym_dynamic_type] = STATE(1469), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(3219), + [sym_scoped_type_identifier] = STATE(1032), [sym_line_comment] = STATE(867), [sym_block_comment] = STATE(867), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3104), + [anon_sym_u8] = ACTIONS(3106), + [anon_sym_i8] = ACTIONS(3106), + [anon_sym_u16] = ACTIONS(3106), + [anon_sym_i16] = ACTIONS(3106), + [anon_sym_u32] = ACTIONS(3106), + [anon_sym_i32] = ACTIONS(3106), + [anon_sym_u64] = ACTIONS(3106), + [anon_sym_i64] = ACTIONS(3106), + [anon_sym_u128] = ACTIONS(3106), + [anon_sym_i128] = ACTIONS(3106), + [anon_sym_isize] = ACTIONS(3106), + [anon_sym_usize] = ACTIONS(3106), + [anon_sym_f32] = ACTIONS(3106), + [anon_sym_f64] = ACTIONS(3106), + [anon_sym_bool] = ACTIONS(3106), + [anon_sym_str] = ACTIONS(3106), + [anon_sym_char] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3112), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3114), + [anon_sym_fn] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3122), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_crate] = ACTIONS(3126), + [sym_metavariable] = ACTIONS(3128), }, [868] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2745), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2472), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(868), [sym_block_comment] = STATE(868), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [869] = { - [sym_function_modifiers] = STATE(3354), - [sym_removed_trait_bound] = STATE(1426), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1476), - [sym_bracketed_type] = STATE(3531), - [sym_lifetime] = STATE(3337), - [sym_array_type] = STATE(1426), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1426), - [sym_tuple_type] = STATE(1426), - [sym_unit_type] = STATE(1426), - [sym_generic_type] = STATE(1051), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1426), - [sym_reference_type] = STATE(1426), - [sym_pointer_type] = STATE(1426), - [sym_never_type] = STATE(1426), - [sym_abstract_type] = STATE(1426), - [sym_dynamic_type] = STATE(1426), - [sym_macro_invocation] = STATE(1426), - [sym_scoped_identifier] = STATE(3212), - [sym_scoped_type_identifier] = STATE(1019), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2665), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(869), [sym_block_comment] = STATE(869), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_u8] = ACTIONS(3088), - [anon_sym_i8] = ACTIONS(3088), - [anon_sym_u16] = ACTIONS(3088), - [anon_sym_i16] = ACTIONS(3088), - [anon_sym_u32] = ACTIONS(3088), - [anon_sym_i32] = ACTIONS(3088), - [anon_sym_u64] = ACTIONS(3088), - [anon_sym_i64] = ACTIONS(3088), - [anon_sym_u128] = ACTIONS(3088), - [anon_sym_i128] = ACTIONS(3088), - [anon_sym_isize] = ACTIONS(3088), - [anon_sym_usize] = ACTIONS(3088), - [anon_sym_f32] = ACTIONS(3088), - [anon_sym_f64] = ACTIONS(3088), - [anon_sym_bool] = ACTIONS(3088), - [anon_sym_str] = ACTIONS(3088), - [anon_sym_char] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3094), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3096), - [anon_sym_fn] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3100), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3104), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3108), - [sym_super] = ACTIONS(3108), - [sym_crate] = ACTIONS(3108), - [sym_metavariable] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [870] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2301), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2199), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(870), [sym_block_comment] = STATE(870), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [871] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2394), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3502), + [sym_removed_trait_bound] = STATE(1665), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1834), + [sym_bracketed_type] = STATE(3557), + [sym_lifetime] = STATE(3404), + [sym_array_type] = STATE(1665), + [sym_for_lifetimes] = STATE(1584), + [sym_function_type] = STATE(1665), + [sym_tuple_type] = STATE(1665), + [sym_unit_type] = STATE(1665), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3549), + [sym_bounded_type] = STATE(1665), + [sym_reference_type] = STATE(1665), + [sym_pointer_type] = STATE(1665), + [sym_never_type] = STATE(1665), + [sym_abstract_type] = STATE(1665), + [sym_dynamic_type] = STATE(1665), + [sym_macro_invocation] = STATE(1665), + [sym_scoped_identifier] = STATE(3285), + [sym_scoped_type_identifier] = STATE(1536), [sym_line_comment] = STATE(871), [sym_block_comment] = STATE(871), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_u8] = ACTIONS(3142), + [anon_sym_i8] = ACTIONS(3142), + [anon_sym_u16] = ACTIONS(3142), + [anon_sym_i16] = ACTIONS(3142), + [anon_sym_u32] = ACTIONS(3142), + [anon_sym_i32] = ACTIONS(3142), + [anon_sym_u64] = ACTIONS(3142), + [anon_sym_i64] = ACTIONS(3142), + [anon_sym_u128] = ACTIONS(3142), + [anon_sym_i128] = ACTIONS(3142), + [anon_sym_isize] = ACTIONS(3142), + [anon_sym_usize] = ACTIONS(3142), + [anon_sym_f32] = ACTIONS(3142), + [anon_sym_f64] = ACTIONS(3142), + [anon_sym_bool] = ACTIONS(3142), + [anon_sym_str] = ACTIONS(3142), + [anon_sym_char] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3154), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3158), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3162), + [sym_super] = ACTIONS(3162), + [sym_crate] = ACTIONS(3162), + [sym_metavariable] = ACTIONS(3164), }, [872] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2395), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3502), + [sym_removed_trait_bound] = STATE(1665), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1838), + [sym_bracketed_type] = STATE(3557), + [sym_lifetime] = STATE(3404), + [sym_array_type] = STATE(1665), + [sym_for_lifetimes] = STATE(1584), + [sym_function_type] = STATE(1665), + [sym_tuple_type] = STATE(1665), + [sym_unit_type] = STATE(1665), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3549), + [sym_bounded_type] = STATE(1665), + [sym_reference_type] = STATE(1665), + [sym_pointer_type] = STATE(1665), + [sym_never_type] = STATE(1665), + [sym_abstract_type] = STATE(1665), + [sym_dynamic_type] = STATE(1665), + [sym_macro_invocation] = STATE(1665), + [sym_scoped_identifier] = STATE(3285), + [sym_scoped_type_identifier] = STATE(1536), [sym_line_comment] = STATE(872), [sym_block_comment] = STATE(872), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_u8] = ACTIONS(3142), + [anon_sym_i8] = ACTIONS(3142), + [anon_sym_u16] = ACTIONS(3142), + [anon_sym_i16] = ACTIONS(3142), + [anon_sym_u32] = ACTIONS(3142), + [anon_sym_i32] = ACTIONS(3142), + [anon_sym_u64] = ACTIONS(3142), + [anon_sym_i64] = ACTIONS(3142), + [anon_sym_u128] = ACTIONS(3142), + [anon_sym_i128] = ACTIONS(3142), + [anon_sym_isize] = ACTIONS(3142), + [anon_sym_usize] = ACTIONS(3142), + [anon_sym_f32] = ACTIONS(3142), + [anon_sym_f64] = ACTIONS(3142), + [anon_sym_bool] = ACTIONS(3142), + [anon_sym_str] = ACTIONS(3142), + [anon_sym_char] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3154), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3158), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3162), + [sym_super] = ACTIONS(3162), + [sym_crate] = ACTIONS(3162), + [sym_metavariable] = ACTIONS(3164), }, [873] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2692), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3502), + [sym_removed_trait_bound] = STATE(1665), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1840), + [sym_bracketed_type] = STATE(3557), + [sym_lifetime] = STATE(3404), + [sym_array_type] = STATE(1665), + [sym_for_lifetimes] = STATE(1584), + [sym_function_type] = STATE(1665), + [sym_tuple_type] = STATE(1665), + [sym_unit_type] = STATE(1665), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3549), + [sym_bounded_type] = STATE(1665), + [sym_reference_type] = STATE(1665), + [sym_pointer_type] = STATE(1665), + [sym_never_type] = STATE(1665), + [sym_abstract_type] = STATE(1665), + [sym_dynamic_type] = STATE(1665), + [sym_macro_invocation] = STATE(1665), + [sym_scoped_identifier] = STATE(3285), + [sym_scoped_type_identifier] = STATE(1536), [sym_line_comment] = STATE(873), [sym_block_comment] = STATE(873), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_u8] = ACTIONS(3142), + [anon_sym_i8] = ACTIONS(3142), + [anon_sym_u16] = ACTIONS(3142), + [anon_sym_i16] = ACTIONS(3142), + [anon_sym_u32] = ACTIONS(3142), + [anon_sym_i32] = ACTIONS(3142), + [anon_sym_u64] = ACTIONS(3142), + [anon_sym_i64] = ACTIONS(3142), + [anon_sym_u128] = ACTIONS(3142), + [anon_sym_i128] = ACTIONS(3142), + [anon_sym_isize] = ACTIONS(3142), + [anon_sym_usize] = ACTIONS(3142), + [anon_sym_f32] = ACTIONS(3142), + [anon_sym_f64] = ACTIONS(3142), + [anon_sym_bool] = ACTIONS(3142), + [anon_sym_str] = ACTIONS(3142), + [anon_sym_char] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3154), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3158), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3162), + [sym_super] = ACTIONS(3162), + [sym_crate] = ACTIONS(3162), + [sym_metavariable] = ACTIONS(3164), }, [874] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2904), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2653), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(874), [sym_block_comment] = STATE(874), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [875] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2302), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3363), + [sym_removed_trait_bound] = STATE(1469), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1162), + [sym_bracketed_type] = STATE(3542), + [sym_lifetime] = STATE(3339), + [sym_array_type] = STATE(1469), + [sym_for_lifetimes] = STATE(1611), + [sym_function_type] = STATE(1469), + [sym_tuple_type] = STATE(1469), + [sym_unit_type] = STATE(1469), + [sym_generic_type] = STATE(1094), + [sym_generic_type_with_turbofish] = STATE(3533), + [sym_bounded_type] = STATE(1469), + [sym_reference_type] = STATE(1469), + [sym_pointer_type] = STATE(1469), + [sym_never_type] = STATE(1469), + [sym_abstract_type] = STATE(1469), + [sym_dynamic_type] = STATE(1469), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(3219), + [sym_scoped_type_identifier] = STATE(1032), [sym_line_comment] = STATE(875), [sym_block_comment] = STATE(875), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3104), + [anon_sym_u8] = ACTIONS(3106), + [anon_sym_i8] = ACTIONS(3106), + [anon_sym_u16] = ACTIONS(3106), + [anon_sym_i16] = ACTIONS(3106), + [anon_sym_u32] = ACTIONS(3106), + [anon_sym_i32] = ACTIONS(3106), + [anon_sym_u64] = ACTIONS(3106), + [anon_sym_i64] = ACTIONS(3106), + [anon_sym_u128] = ACTIONS(3106), + [anon_sym_i128] = ACTIONS(3106), + [anon_sym_isize] = ACTIONS(3106), + [anon_sym_usize] = ACTIONS(3106), + [anon_sym_f32] = ACTIONS(3106), + [anon_sym_f64] = ACTIONS(3106), + [anon_sym_bool] = ACTIONS(3106), + [anon_sym_str] = ACTIONS(3106), + [anon_sym_char] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3112), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3114), + [anon_sym_fn] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3122), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_crate] = ACTIONS(3126), + [sym_metavariable] = ACTIONS(3128), }, [876] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2387), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2703), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(876), [sym_block_comment] = STATE(876), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [877] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2354), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2394), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(877), [sym_block_comment] = STATE(877), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [878] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2947), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2628), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(878), [sym_block_comment] = STATE(878), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [879] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2967), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3502), + [sym_removed_trait_bound] = STATE(1665), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1847), + [sym_bracketed_type] = STATE(3557), + [sym_lifetime] = STATE(3404), + [sym_array_type] = STATE(1665), + [sym_for_lifetimes] = STATE(1584), + [sym_function_type] = STATE(1665), + [sym_tuple_type] = STATE(1665), + [sym_unit_type] = STATE(1665), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3549), + [sym_bounded_type] = STATE(1665), + [sym_reference_type] = STATE(1665), + [sym_pointer_type] = STATE(1665), + [sym_never_type] = STATE(1665), + [sym_abstract_type] = STATE(1665), + [sym_dynamic_type] = STATE(1665), + [sym_macro_invocation] = STATE(1665), + [sym_scoped_identifier] = STATE(3285), + [sym_scoped_type_identifier] = STATE(1536), [sym_line_comment] = STATE(879), [sym_block_comment] = STATE(879), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_u8] = ACTIONS(3142), + [anon_sym_i8] = ACTIONS(3142), + [anon_sym_u16] = ACTIONS(3142), + [anon_sym_i16] = ACTIONS(3142), + [anon_sym_u32] = ACTIONS(3142), + [anon_sym_i32] = ACTIONS(3142), + [anon_sym_u64] = ACTIONS(3142), + [anon_sym_i64] = ACTIONS(3142), + [anon_sym_u128] = ACTIONS(3142), + [anon_sym_i128] = ACTIONS(3142), + [anon_sym_isize] = ACTIONS(3142), + [anon_sym_usize] = ACTIONS(3142), + [anon_sym_f32] = ACTIONS(3142), + [anon_sym_f64] = ACTIONS(3142), + [anon_sym_bool] = ACTIONS(3142), + [anon_sym_str] = ACTIONS(3142), + [anon_sym_char] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3154), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3158), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3162), + [sym_super] = ACTIONS(3162), + [sym_crate] = ACTIONS(3162), + [sym_metavariable] = ACTIONS(3164), }, [880] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2978), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2573), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(880), [sym_block_comment] = STATE(880), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [881] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2393), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2351), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(881), [sym_block_comment] = STATE(881), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [882] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2328), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2354), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(2355), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(2152), [sym_line_comment] = STATE(882), [sym_block_comment] = STATE(882), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3216), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [883] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2452), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2003), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(883), [sym_block_comment] = STATE(883), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [884] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2564), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2308), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(884), [sym_block_comment] = STATE(884), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [885] = { - [sym_function_modifiers] = STATE(3328), - [sym_removed_trait_bound] = STATE(1645), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1739), - [sym_bracketed_type] = STATE(3546), - [sym_lifetime] = STATE(3363), - [sym_array_type] = STATE(1645), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1645), - [sym_tuple_type] = STATE(1645), - [sym_unit_type] = STATE(1645), - [sym_generic_type] = STATE(1626), - [sym_generic_type_with_turbofish] = STATE(3538), - [sym_bounded_type] = STATE(1645), - [sym_reference_type] = STATE(1645), - [sym_pointer_type] = STATE(1645), - [sym_never_type] = STATE(1645), - [sym_abstract_type] = STATE(1645), - [sym_dynamic_type] = STATE(1645), - [sym_macro_invocation] = STATE(1645), - [sym_scoped_identifier] = STATE(3277), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3363), + [sym_removed_trait_bound] = STATE(1469), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1230), + [sym_bracketed_type] = STATE(3542), + [sym_lifetime] = STATE(3339), + [sym_array_type] = STATE(1469), + [sym_for_lifetimes] = STATE(1611), + [sym_function_type] = STATE(1469), + [sym_tuple_type] = STATE(1469), + [sym_unit_type] = STATE(1469), + [sym_generic_type] = STATE(1094), + [sym_generic_type_with_turbofish] = STATE(3533), + [sym_bounded_type] = STATE(1469), + [sym_reference_type] = STATE(1469), + [sym_pointer_type] = STATE(1469), + [sym_never_type] = STATE(1469), + [sym_abstract_type] = STATE(1469), + [sym_dynamic_type] = STATE(1469), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(3219), + [sym_scoped_type_identifier] = STATE(1032), [sym_line_comment] = STATE(885), [sym_block_comment] = STATE(885), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3120), - [anon_sym_QMARK] = ACTIONS(3122), - [anon_sym_u8] = ACTIONS(3124), - [anon_sym_i8] = ACTIONS(3124), - [anon_sym_u16] = ACTIONS(3124), - [anon_sym_i16] = ACTIONS(3124), - [anon_sym_u32] = ACTIONS(3124), - [anon_sym_i32] = ACTIONS(3124), - [anon_sym_u64] = ACTIONS(3124), - [anon_sym_i64] = ACTIONS(3124), - [anon_sym_u128] = ACTIONS(3124), - [anon_sym_i128] = ACTIONS(3124), - [anon_sym_isize] = ACTIONS(3124), - [anon_sym_usize] = ACTIONS(3124), - [anon_sym_f32] = ACTIONS(3124), - [anon_sym_f64] = ACTIONS(3124), - [anon_sym_bool] = ACTIONS(3124), - [anon_sym_str] = ACTIONS(3124), - [anon_sym_char] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3130), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3104), + [anon_sym_u8] = ACTIONS(3106), + [anon_sym_i8] = ACTIONS(3106), + [anon_sym_u16] = ACTIONS(3106), + [anon_sym_i16] = ACTIONS(3106), + [anon_sym_u32] = ACTIONS(3106), + [anon_sym_i32] = ACTIONS(3106), + [anon_sym_u64] = ACTIONS(3106), + [anon_sym_i64] = ACTIONS(3106), + [anon_sym_u128] = ACTIONS(3106), + [anon_sym_i128] = ACTIONS(3106), + [anon_sym_isize] = ACTIONS(3106), + [anon_sym_usize] = ACTIONS(3106), + [anon_sym_f32] = ACTIONS(3106), + [anon_sym_f64] = ACTIONS(3106), + [anon_sym_bool] = ACTIONS(3106), + [anon_sym_str] = ACTIONS(3106), + [anon_sym_char] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3112), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_fn] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3136), - [anon_sym_union] = ACTIONS(3138), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3140), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_crate] = ACTIONS(3144), - [sym_metavariable] = ACTIONS(3146), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3114), + [anon_sym_fn] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3122), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_crate] = ACTIONS(3126), + [sym_metavariable] = ACTIONS(3128), }, [886] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2353), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3363), + [sym_removed_trait_bound] = STATE(1469), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1400), + [sym_bracketed_type] = STATE(3542), + [sym_lifetime] = STATE(3339), + [sym_array_type] = STATE(1469), + [sym_for_lifetimes] = STATE(1611), + [sym_function_type] = STATE(1469), + [sym_tuple_type] = STATE(1469), + [sym_unit_type] = STATE(1469), + [sym_generic_type] = STATE(1094), + [sym_generic_type_with_turbofish] = STATE(3533), + [sym_bounded_type] = STATE(1469), + [sym_reference_type] = STATE(1469), + [sym_pointer_type] = STATE(1469), + [sym_never_type] = STATE(1469), + [sym_abstract_type] = STATE(1469), + [sym_dynamic_type] = STATE(1469), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(3219), + [sym_scoped_type_identifier] = STATE(1032), [sym_line_comment] = STATE(886), [sym_block_comment] = STATE(886), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3104), + [anon_sym_u8] = ACTIONS(3106), + [anon_sym_i8] = ACTIONS(3106), + [anon_sym_u16] = ACTIONS(3106), + [anon_sym_i16] = ACTIONS(3106), + [anon_sym_u32] = ACTIONS(3106), + [anon_sym_i32] = ACTIONS(3106), + [anon_sym_u64] = ACTIONS(3106), + [anon_sym_i64] = ACTIONS(3106), + [anon_sym_u128] = ACTIONS(3106), + [anon_sym_i128] = ACTIONS(3106), + [anon_sym_isize] = ACTIONS(3106), + [anon_sym_usize] = ACTIONS(3106), + [anon_sym_f32] = ACTIONS(3106), + [anon_sym_f64] = ACTIONS(3106), + [anon_sym_bool] = ACTIONS(3106), + [anon_sym_str] = ACTIONS(3106), + [anon_sym_char] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3112), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3114), + [anon_sym_fn] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3122), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_crate] = ACTIONS(3126), + [sym_metavariable] = ACTIONS(3128), }, [887] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2604), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1979), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(887), [sym_block_comment] = STATE(887), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [888] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2004), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3363), + [sym_removed_trait_bound] = STATE(1469), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1231), + [sym_bracketed_type] = STATE(3542), + [sym_lifetime] = STATE(3339), + [sym_array_type] = STATE(1469), + [sym_for_lifetimes] = STATE(1611), + [sym_function_type] = STATE(1469), + [sym_tuple_type] = STATE(1469), + [sym_unit_type] = STATE(1469), + [sym_generic_type] = STATE(1094), + [sym_generic_type_with_turbofish] = STATE(3533), + [sym_bounded_type] = STATE(1469), + [sym_reference_type] = STATE(1469), + [sym_pointer_type] = STATE(1469), + [sym_never_type] = STATE(1469), + [sym_abstract_type] = STATE(1469), + [sym_dynamic_type] = STATE(1469), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(3219), + [sym_scoped_type_identifier] = STATE(1032), [sym_line_comment] = STATE(888), [sym_block_comment] = STATE(888), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3104), + [anon_sym_u8] = ACTIONS(3106), + [anon_sym_i8] = ACTIONS(3106), + [anon_sym_u16] = ACTIONS(3106), + [anon_sym_i16] = ACTIONS(3106), + [anon_sym_u32] = ACTIONS(3106), + [anon_sym_i32] = ACTIONS(3106), + [anon_sym_u64] = ACTIONS(3106), + [anon_sym_i64] = ACTIONS(3106), + [anon_sym_u128] = ACTIONS(3106), + [anon_sym_i128] = ACTIONS(3106), + [anon_sym_isize] = ACTIONS(3106), + [anon_sym_usize] = ACTIONS(3106), + [anon_sym_f32] = ACTIONS(3106), + [anon_sym_f64] = ACTIONS(3106), + [anon_sym_bool] = ACTIONS(3106), + [anon_sym_str] = ACTIONS(3106), + [anon_sym_char] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3112), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3114), + [anon_sym_fn] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3122), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_crate] = ACTIONS(3126), + [sym_metavariable] = ACTIONS(3128), }, [889] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2757), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1986), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(889), [sym_block_comment] = STATE(889), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [890] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1977), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2585), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(890), [sym_block_comment] = STATE(890), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [891] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2329), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1999), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(891), [sym_block_comment] = STATE(891), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [892] = { - [sym_function_modifiers] = STATE(3354), - [sym_removed_trait_bound] = STATE(1426), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1121), - [sym_bracketed_type] = STATE(3531), - [sym_lifetime] = STATE(3337), - [sym_array_type] = STATE(1426), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1426), - [sym_tuple_type] = STATE(1426), - [sym_unit_type] = STATE(1426), - [sym_generic_type] = STATE(1051), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1426), - [sym_reference_type] = STATE(1426), - [sym_pointer_type] = STATE(1426), - [sym_never_type] = STATE(1426), - [sym_abstract_type] = STATE(1426), - [sym_dynamic_type] = STATE(1426), - [sym_macro_invocation] = STATE(1426), - [sym_scoped_identifier] = STATE(3212), - [sym_scoped_type_identifier] = STATE(1019), + [sym_function_modifiers] = STATE(3502), + [sym_removed_trait_bound] = STATE(1665), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1724), + [sym_bracketed_type] = STATE(3557), + [sym_lifetime] = STATE(3404), + [sym_array_type] = STATE(1665), + [sym_for_lifetimes] = STATE(1584), + [sym_function_type] = STATE(1665), + [sym_tuple_type] = STATE(1665), + [sym_unit_type] = STATE(1665), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3549), + [sym_bounded_type] = STATE(1665), + [sym_reference_type] = STATE(1665), + [sym_pointer_type] = STATE(1665), + [sym_never_type] = STATE(1665), + [sym_abstract_type] = STATE(1665), + [sym_dynamic_type] = STATE(1665), + [sym_macro_invocation] = STATE(1665), + [sym_scoped_identifier] = STATE(3285), + [sym_scoped_type_identifier] = STATE(1536), [sym_line_comment] = STATE(892), [sym_block_comment] = STATE(892), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_u8] = ACTIONS(3088), - [anon_sym_i8] = ACTIONS(3088), - [anon_sym_u16] = ACTIONS(3088), - [anon_sym_i16] = ACTIONS(3088), - [anon_sym_u32] = ACTIONS(3088), - [anon_sym_i32] = ACTIONS(3088), - [anon_sym_u64] = ACTIONS(3088), - [anon_sym_i64] = ACTIONS(3088), - [anon_sym_u128] = ACTIONS(3088), - [anon_sym_i128] = ACTIONS(3088), - [anon_sym_isize] = ACTIONS(3088), - [anon_sym_usize] = ACTIONS(3088), - [anon_sym_f32] = ACTIONS(3088), - [anon_sym_f64] = ACTIONS(3088), - [anon_sym_bool] = ACTIONS(3088), - [anon_sym_str] = ACTIONS(3088), - [anon_sym_char] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3094), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_u8] = ACTIONS(3142), + [anon_sym_i8] = ACTIONS(3142), + [anon_sym_u16] = ACTIONS(3142), + [anon_sym_i16] = ACTIONS(3142), + [anon_sym_u32] = ACTIONS(3142), + [anon_sym_i32] = ACTIONS(3142), + [anon_sym_u64] = ACTIONS(3142), + [anon_sym_i64] = ACTIONS(3142), + [anon_sym_u128] = ACTIONS(3142), + [anon_sym_i128] = ACTIONS(3142), + [anon_sym_isize] = ACTIONS(3142), + [anon_sym_usize] = ACTIONS(3142), + [anon_sym_f32] = ACTIONS(3142), + [anon_sym_f64] = ACTIONS(3142), + [anon_sym_bool] = ACTIONS(3142), + [anon_sym_str] = ACTIONS(3142), + [anon_sym_char] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3096), - [anon_sym_fn] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3100), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3104), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3108), - [sym_super] = ACTIONS(3108), - [sym_crate] = ACTIONS(3108), - [sym_metavariable] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3154), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3158), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3162), + [sym_super] = ACTIONS(3162), + [sym_crate] = ACTIONS(3162), + [sym_metavariable] = ACTIONS(3164), }, [893] = { - [sym_function_modifiers] = STATE(3354), - [sym_removed_trait_bound] = STATE(1426), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1122), - [sym_bracketed_type] = STATE(3531), - [sym_lifetime] = STATE(3337), - [sym_array_type] = STATE(1426), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1426), - [sym_tuple_type] = STATE(1426), - [sym_unit_type] = STATE(1426), - [sym_generic_type] = STATE(1051), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1426), - [sym_reference_type] = STATE(1426), - [sym_pointer_type] = STATE(1426), - [sym_never_type] = STATE(1426), - [sym_abstract_type] = STATE(1426), - [sym_dynamic_type] = STATE(1426), - [sym_macro_invocation] = STATE(1426), - [sym_scoped_identifier] = STATE(3212), - [sym_scoped_type_identifier] = STATE(1019), + [sym_function_modifiers] = STATE(3363), + [sym_removed_trait_bound] = STATE(1469), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1232), + [sym_bracketed_type] = STATE(3542), + [sym_lifetime] = STATE(3339), + [sym_array_type] = STATE(1469), + [sym_for_lifetimes] = STATE(1611), + [sym_function_type] = STATE(1469), + [sym_tuple_type] = STATE(1469), + [sym_unit_type] = STATE(1469), + [sym_generic_type] = STATE(1094), + [sym_generic_type_with_turbofish] = STATE(3533), + [sym_bounded_type] = STATE(1469), + [sym_reference_type] = STATE(1469), + [sym_pointer_type] = STATE(1469), + [sym_never_type] = STATE(1469), + [sym_abstract_type] = STATE(1469), + [sym_dynamic_type] = STATE(1469), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(3219), + [sym_scoped_type_identifier] = STATE(1032), [sym_line_comment] = STATE(893), [sym_block_comment] = STATE(893), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_u8] = ACTIONS(3088), - [anon_sym_i8] = ACTIONS(3088), - [anon_sym_u16] = ACTIONS(3088), - [anon_sym_i16] = ACTIONS(3088), - [anon_sym_u32] = ACTIONS(3088), - [anon_sym_i32] = ACTIONS(3088), - [anon_sym_u64] = ACTIONS(3088), - [anon_sym_i64] = ACTIONS(3088), - [anon_sym_u128] = ACTIONS(3088), - [anon_sym_i128] = ACTIONS(3088), - [anon_sym_isize] = ACTIONS(3088), - [anon_sym_usize] = ACTIONS(3088), - [anon_sym_f32] = ACTIONS(3088), - [anon_sym_f64] = ACTIONS(3088), - [anon_sym_bool] = ACTIONS(3088), - [anon_sym_str] = ACTIONS(3088), - [anon_sym_char] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3094), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3104), + [anon_sym_u8] = ACTIONS(3106), + [anon_sym_i8] = ACTIONS(3106), + [anon_sym_u16] = ACTIONS(3106), + [anon_sym_i16] = ACTIONS(3106), + [anon_sym_u32] = ACTIONS(3106), + [anon_sym_i32] = ACTIONS(3106), + [anon_sym_u64] = ACTIONS(3106), + [anon_sym_i64] = ACTIONS(3106), + [anon_sym_u128] = ACTIONS(3106), + [anon_sym_i128] = ACTIONS(3106), + [anon_sym_isize] = ACTIONS(3106), + [anon_sym_usize] = ACTIONS(3106), + [anon_sym_f32] = ACTIONS(3106), + [anon_sym_f64] = ACTIONS(3106), + [anon_sym_bool] = ACTIONS(3106), + [anon_sym_str] = ACTIONS(3106), + [anon_sym_char] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3112), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3096), - [anon_sym_fn] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3100), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3104), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3108), - [sym_super] = ACTIONS(3108), - [sym_crate] = ACTIONS(3108), - [sym_metavariable] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3114), + [anon_sym_fn] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3122), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_crate] = ACTIONS(3126), + [sym_metavariable] = ACTIONS(3128), }, [894] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2735), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2569), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(894), [sym_block_comment] = STATE(894), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [895] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2617), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2589), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(895), [sym_block_comment] = STATE(895), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [896] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2657), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2891), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(896), [sym_block_comment] = STATE(896), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [897] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2558), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3363), + [sym_removed_trait_bound] = STATE(1469), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1165), + [sym_bracketed_type] = STATE(3542), + [sym_lifetime] = STATE(3339), + [sym_array_type] = STATE(1469), + [sym_for_lifetimes] = STATE(1611), + [sym_function_type] = STATE(1469), + [sym_tuple_type] = STATE(1469), + [sym_unit_type] = STATE(1469), + [sym_generic_type] = STATE(1094), + [sym_generic_type_with_turbofish] = STATE(3533), + [sym_bounded_type] = STATE(1469), + [sym_reference_type] = STATE(1469), + [sym_pointer_type] = STATE(1469), + [sym_never_type] = STATE(1469), + [sym_abstract_type] = STATE(1469), + [sym_dynamic_type] = STATE(1469), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(3219), + [sym_scoped_type_identifier] = STATE(1032), [sym_line_comment] = STATE(897), [sym_block_comment] = STATE(897), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3104), + [anon_sym_u8] = ACTIONS(3106), + [anon_sym_i8] = ACTIONS(3106), + [anon_sym_u16] = ACTIONS(3106), + [anon_sym_i16] = ACTIONS(3106), + [anon_sym_u32] = ACTIONS(3106), + [anon_sym_i32] = ACTIONS(3106), + [anon_sym_u64] = ACTIONS(3106), + [anon_sym_i64] = ACTIONS(3106), + [anon_sym_u128] = ACTIONS(3106), + [anon_sym_i128] = ACTIONS(3106), + [anon_sym_isize] = ACTIONS(3106), + [anon_sym_usize] = ACTIONS(3106), + [anon_sym_f32] = ACTIONS(3106), + [anon_sym_f64] = ACTIONS(3106), + [anon_sym_bool] = ACTIONS(3106), + [anon_sym_str] = ACTIONS(3106), + [anon_sym_char] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3112), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3114), + [anon_sym_fn] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3122), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_crate] = ACTIONS(3126), + [sym_metavariable] = ACTIONS(3128), }, [898] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2813), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1994), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(898), [sym_block_comment] = STATE(898), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3220), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [899] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1982), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(1983), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2340), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(899), [sym_block_comment] = STATE(899), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(2982), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [900] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(3297), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2968), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(900), [sym_block_comment] = STATE(900), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [901] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2225), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1994), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(901), [sym_block_comment] = STATE(901), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [902] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1982), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1985), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(902), [sym_block_comment] = STATE(902), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [903] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2717), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1980), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(903), [sym_block_comment] = STATE(903), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [904] = { - [sym_function_modifiers] = STATE(3354), - [sym_removed_trait_bound] = STATE(1426), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1126), - [sym_bracketed_type] = STATE(3531), - [sym_lifetime] = STATE(3337), - [sym_array_type] = STATE(1426), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1426), - [sym_tuple_type] = STATE(1426), - [sym_unit_type] = STATE(1426), - [sym_generic_type] = STATE(1051), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1426), - [sym_reference_type] = STATE(1426), - [sym_pointer_type] = STATE(1426), - [sym_never_type] = STATE(1426), - [sym_abstract_type] = STATE(1426), - [sym_dynamic_type] = STATE(1426), - [sym_macro_invocation] = STATE(1426), - [sym_scoped_identifier] = STATE(3212), - [sym_scoped_type_identifier] = STATE(1019), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2324), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(904), [sym_block_comment] = STATE(904), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_u8] = ACTIONS(3088), - [anon_sym_i8] = ACTIONS(3088), - [anon_sym_u16] = ACTIONS(3088), - [anon_sym_i16] = ACTIONS(3088), - [anon_sym_u32] = ACTIONS(3088), - [anon_sym_i32] = ACTIONS(3088), - [anon_sym_u64] = ACTIONS(3088), - [anon_sym_i64] = ACTIONS(3088), - [anon_sym_u128] = ACTIONS(3088), - [anon_sym_i128] = ACTIONS(3088), - [anon_sym_isize] = ACTIONS(3088), - [anon_sym_usize] = ACTIONS(3088), - [anon_sym_f32] = ACTIONS(3088), - [anon_sym_f64] = ACTIONS(3088), - [anon_sym_bool] = ACTIONS(3088), - [anon_sym_str] = ACTIONS(3088), - [anon_sym_char] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3094), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3096), - [anon_sym_fn] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3100), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3104), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3108), - [sym_super] = ACTIONS(3108), - [sym_crate] = ACTIONS(3108), - [sym_metavariable] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [905] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3363), + [sym_removed_trait_bound] = STATE(1469), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1287), + [sym_bracketed_type] = STATE(3542), + [sym_lifetime] = STATE(3339), + [sym_array_type] = STATE(1469), + [sym_for_lifetimes] = STATE(1611), + [sym_function_type] = STATE(1469), + [sym_tuple_type] = STATE(1469), + [sym_unit_type] = STATE(1469), + [sym_generic_type] = STATE(1094), + [sym_generic_type_with_turbofish] = STATE(3533), + [sym_bounded_type] = STATE(1469), + [sym_reference_type] = STATE(1469), + [sym_pointer_type] = STATE(1469), + [sym_never_type] = STATE(1469), + [sym_abstract_type] = STATE(1469), + [sym_dynamic_type] = STATE(1469), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(3219), + [sym_scoped_type_identifier] = STATE(1032), [sym_line_comment] = STATE(905), [sym_block_comment] = STATE(905), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3104), + [anon_sym_u8] = ACTIONS(3106), + [anon_sym_i8] = ACTIONS(3106), + [anon_sym_u16] = ACTIONS(3106), + [anon_sym_i16] = ACTIONS(3106), + [anon_sym_u32] = ACTIONS(3106), + [anon_sym_i32] = ACTIONS(3106), + [anon_sym_u64] = ACTIONS(3106), + [anon_sym_i64] = ACTIONS(3106), + [anon_sym_u128] = ACTIONS(3106), + [anon_sym_i128] = ACTIONS(3106), + [anon_sym_isize] = ACTIONS(3106), + [anon_sym_usize] = ACTIONS(3106), + [anon_sym_f32] = ACTIONS(3106), + [anon_sym_f64] = ACTIONS(3106), + [anon_sym_bool] = ACTIONS(3106), + [anon_sym_str] = ACTIONS(3106), + [anon_sym_char] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3112), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3114), + [anon_sym_fn] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3122), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_crate] = ACTIONS(3126), + [sym_metavariable] = ACTIONS(3128), }, [906] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(3015), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2240), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(906), [sym_block_comment] = STATE(906), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [907] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2500), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2325), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(907), [sym_block_comment] = STATE(907), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [908] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2313), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2984), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(908), [sym_block_comment] = STATE(908), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [909] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2315), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2350), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(909), [sym_block_comment] = STATE(909), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [910] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2324), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(3026), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(910), [sym_block_comment] = STATE(910), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [911] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2341), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(3021), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(911), [sym_block_comment] = STATE(911), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [912] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2730), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2335), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(912), [sym_block_comment] = STATE(912), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [913] = { - [sym_attribute_item] = STATE(1007), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2395), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(913), [sym_block_comment] = STATE(913), - [aux_sym_enum_variant_list_repeat1] = STATE(913), - [sym_identifier] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(755), - [anon_sym_LBRACK] = ACTIONS(755), - [anon_sym_RBRACK] = ACTIONS(755), - [anon_sym_LBRACE] = ACTIONS(755), - [anon_sym_STAR] = ACTIONS(755), - [anon_sym_u8] = ACTIONS(3208), - [anon_sym_i8] = ACTIONS(3208), - [anon_sym_u16] = ACTIONS(3208), - [anon_sym_i16] = ACTIONS(3208), - [anon_sym_u32] = ACTIONS(3208), - [anon_sym_i32] = ACTIONS(3208), - [anon_sym_u64] = ACTIONS(3208), - [anon_sym_i64] = ACTIONS(3208), - [anon_sym_u128] = ACTIONS(3208), - [anon_sym_i128] = ACTIONS(3208), - [anon_sym_isize] = ACTIONS(3208), - [anon_sym_usize] = ACTIONS(3208), - [anon_sym_f32] = ACTIONS(3208), - [anon_sym_f64] = ACTIONS(3208), - [anon_sym_bool] = ACTIONS(3208), - [anon_sym_str] = ACTIONS(3208), - [anon_sym_char] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(755), - [anon_sym_BANG] = ACTIONS(755), - [anon_sym_AMP] = ACTIONS(755), - [anon_sym_PIPE] = ACTIONS(755), - [anon_sym_LT] = ACTIONS(755), - [anon_sym_DOT_DOT] = ACTIONS(755), - [anon_sym_COMMA] = ACTIONS(755), - [anon_sym_COLON_COLON] = ACTIONS(755), - [anon_sym_POUND] = ACTIONS(781), - [anon_sym_SQUOTE] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3208), - [anon_sym_break] = ACTIONS(3208), - [anon_sym_const] = ACTIONS(3208), - [anon_sym_continue] = ACTIONS(3208), - [anon_sym_default] = ACTIONS(3208), - [anon_sym_for] = ACTIONS(3208), - [anon_sym_gen] = ACTIONS(3208), - [anon_sym_if] = ACTIONS(3208), - [anon_sym_loop] = ACTIONS(3208), - [anon_sym_match] = ACTIONS(3208), - [anon_sym_return] = ACTIONS(3208), - [anon_sym_static] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3208), - [anon_sym_unsafe] = ACTIONS(3208), - [anon_sym_while] = ACTIONS(3208), - [anon_sym_yield] = ACTIONS(3208), - [anon_sym_move] = ACTIONS(3208), - [anon_sym_try] = ACTIONS(3208), - [sym_integer_literal] = ACTIONS(755), - [aux_sym_string_literal_token1] = ACTIONS(755), - [sym_char_literal] = ACTIONS(755), - [anon_sym_true] = ACTIONS(3208), - [anon_sym_false] = ACTIONS(3208), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3208), - [sym_super] = ACTIONS(3208), - [sym_crate] = ACTIONS(3208), - [sym_metavariable] = ACTIONS(755), - [sym__raw_string_literal_start] = ACTIONS(755), - [sym_float_literal] = ACTIONS(755), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [914] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2708), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2234), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(914), [sym_block_comment] = STATE(914), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [915] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2565), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2397), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(915), [sym_block_comment] = STATE(915), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [916] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1986), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2527), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(916), [sym_block_comment] = STATE(916), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [917] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2186), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1996), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(917), [sym_block_comment] = STATE(917), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [918] = { - [sym_function_modifiers] = STATE(3354), - [sym_removed_trait_bound] = STATE(1426), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1174), - [sym_bracketed_type] = STATE(3531), - [sym_lifetime] = STATE(3337), - [sym_array_type] = STATE(1426), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1426), - [sym_tuple_type] = STATE(1426), - [sym_unit_type] = STATE(1426), - [sym_generic_type] = STATE(1051), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1426), - [sym_reference_type] = STATE(1426), - [sym_pointer_type] = STATE(1426), - [sym_never_type] = STATE(1426), - [sym_abstract_type] = STATE(1426), - [sym_dynamic_type] = STATE(1426), - [sym_macro_invocation] = STATE(1426), - [sym_scoped_identifier] = STATE(3212), - [sym_scoped_type_identifier] = STATE(1019), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2339), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(918), [sym_block_comment] = STATE(918), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_u8] = ACTIONS(3088), - [anon_sym_i8] = ACTIONS(3088), - [anon_sym_u16] = ACTIONS(3088), - [anon_sym_i16] = ACTIONS(3088), - [anon_sym_u32] = ACTIONS(3088), - [anon_sym_i32] = ACTIONS(3088), - [anon_sym_u64] = ACTIONS(3088), - [anon_sym_i64] = ACTIONS(3088), - [anon_sym_u128] = ACTIONS(3088), - [anon_sym_i128] = ACTIONS(3088), - [anon_sym_isize] = ACTIONS(3088), - [anon_sym_usize] = ACTIONS(3088), - [anon_sym_f32] = ACTIONS(3088), - [anon_sym_f64] = ACTIONS(3088), - [anon_sym_bool] = ACTIONS(3088), - [anon_sym_str] = ACTIONS(3088), - [anon_sym_char] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3094), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3096), - [anon_sym_fn] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3100), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3104), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3108), - [sym_super] = ACTIONS(3108), - [sym_crate] = ACTIONS(3108), - [sym_metavariable] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [919] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1981), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3363), + [sym_removed_trait_bound] = STATE(1469), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1449), + [sym_bracketed_type] = STATE(3542), + [sym_lifetime] = STATE(3339), + [sym_array_type] = STATE(1469), + [sym_for_lifetimes] = STATE(1611), + [sym_function_type] = STATE(1469), + [sym_tuple_type] = STATE(1469), + [sym_unit_type] = STATE(1469), + [sym_generic_type] = STATE(1094), + [sym_generic_type_with_turbofish] = STATE(3533), + [sym_bounded_type] = STATE(1469), + [sym_reference_type] = STATE(1469), + [sym_pointer_type] = STATE(1469), + [sym_never_type] = STATE(1469), + [sym_abstract_type] = STATE(1469), + [sym_dynamic_type] = STATE(1469), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(3219), + [sym_scoped_type_identifier] = STATE(1032), [sym_line_comment] = STATE(919), [sym_block_comment] = STATE(919), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3104), + [anon_sym_u8] = ACTIONS(3106), + [anon_sym_i8] = ACTIONS(3106), + [anon_sym_u16] = ACTIONS(3106), + [anon_sym_i16] = ACTIONS(3106), + [anon_sym_u32] = ACTIONS(3106), + [anon_sym_i32] = ACTIONS(3106), + [anon_sym_u64] = ACTIONS(3106), + [anon_sym_i64] = ACTIONS(3106), + [anon_sym_u128] = ACTIONS(3106), + [anon_sym_i128] = ACTIONS(3106), + [anon_sym_isize] = ACTIONS(3106), + [anon_sym_usize] = ACTIONS(3106), + [anon_sym_f32] = ACTIONS(3106), + [anon_sym_f64] = ACTIONS(3106), + [anon_sym_bool] = ACTIONS(3106), + [anon_sym_str] = ACTIONS(3106), + [anon_sym_char] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3112), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3114), + [anon_sym_fn] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3122), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_crate] = ACTIONS(3126), + [sym_metavariable] = ACTIONS(3128), }, [920] = { - [sym_function_modifiers] = STATE(3328), - [sym_removed_trait_bound] = STATE(1645), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1700), - [sym_bracketed_type] = STATE(3546), - [sym_lifetime] = STATE(3363), - [sym_array_type] = STATE(1645), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1645), - [sym_tuple_type] = STATE(1645), - [sym_unit_type] = STATE(1645), - [sym_generic_type] = STATE(1626), - [sym_generic_type_with_turbofish] = STATE(3538), - [sym_bounded_type] = STATE(1645), - [sym_reference_type] = STATE(1645), - [sym_pointer_type] = STATE(1645), - [sym_never_type] = STATE(1645), - [sym_abstract_type] = STATE(1645), - [sym_dynamic_type] = STATE(1645), - [sym_macro_invocation] = STATE(1645), - [sym_scoped_identifier] = STATE(3277), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1997), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(920), [sym_block_comment] = STATE(920), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3120), - [anon_sym_QMARK] = ACTIONS(3122), - [anon_sym_u8] = ACTIONS(3124), - [anon_sym_i8] = ACTIONS(3124), - [anon_sym_u16] = ACTIONS(3124), - [anon_sym_i16] = ACTIONS(3124), - [anon_sym_u32] = ACTIONS(3124), - [anon_sym_i32] = ACTIONS(3124), - [anon_sym_u64] = ACTIONS(3124), - [anon_sym_i64] = ACTIONS(3124), - [anon_sym_u128] = ACTIONS(3124), - [anon_sym_i128] = ACTIONS(3124), - [anon_sym_isize] = ACTIONS(3124), - [anon_sym_usize] = ACTIONS(3124), - [anon_sym_f32] = ACTIONS(3124), - [anon_sym_f64] = ACTIONS(3124), - [anon_sym_bool] = ACTIONS(3124), - [anon_sym_str] = ACTIONS(3124), - [anon_sym_char] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3130), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_fn] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3136), - [anon_sym_union] = ACTIONS(3138), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3140), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_crate] = ACTIONS(3144), - [sym_metavariable] = ACTIONS(3146), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [921] = { - [sym_function_modifiers] = STATE(3328), - [sym_removed_trait_bound] = STATE(1645), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1701), - [sym_bracketed_type] = STATE(3546), - [sym_lifetime] = STATE(3363), - [sym_array_type] = STATE(1645), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1645), - [sym_tuple_type] = STATE(1645), - [sym_unit_type] = STATE(1645), - [sym_generic_type] = STATE(1626), - [sym_generic_type_with_turbofish] = STATE(3538), - [sym_bounded_type] = STATE(1645), - [sym_reference_type] = STATE(1645), - [sym_pointer_type] = STATE(1645), - [sym_never_type] = STATE(1645), - [sym_abstract_type] = STATE(1645), - [sym_dynamic_type] = STATE(1645), - [sym_macro_invocation] = STATE(1645), - [sym_scoped_identifier] = STATE(3277), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2455), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(921), [sym_block_comment] = STATE(921), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3120), - [anon_sym_QMARK] = ACTIONS(3122), - [anon_sym_u8] = ACTIONS(3124), - [anon_sym_i8] = ACTIONS(3124), - [anon_sym_u16] = ACTIONS(3124), - [anon_sym_i16] = ACTIONS(3124), - [anon_sym_u32] = ACTIONS(3124), - [anon_sym_i32] = ACTIONS(3124), - [anon_sym_u64] = ACTIONS(3124), - [anon_sym_i64] = ACTIONS(3124), - [anon_sym_u128] = ACTIONS(3124), - [anon_sym_i128] = ACTIONS(3124), - [anon_sym_isize] = ACTIONS(3124), - [anon_sym_usize] = ACTIONS(3124), - [anon_sym_f32] = ACTIONS(3124), - [anon_sym_f64] = ACTIONS(3124), - [anon_sym_bool] = ACTIONS(3124), - [anon_sym_str] = ACTIONS(3124), - [anon_sym_char] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3130), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_fn] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3136), - [anon_sym_union] = ACTIONS(3138), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3140), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_crate] = ACTIONS(3144), - [sym_metavariable] = ACTIONS(3146), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [922] = { - [sym_function_modifiers] = STATE(3354), - [sym_removed_trait_bound] = STATE(1426), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1176), - [sym_bracketed_type] = STATE(3531), - [sym_lifetime] = STATE(3337), - [sym_array_type] = STATE(1426), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1426), - [sym_tuple_type] = STATE(1426), - [sym_unit_type] = STATE(1426), - [sym_generic_type] = STATE(1051), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1426), - [sym_reference_type] = STATE(1426), - [sym_pointer_type] = STATE(1426), - [sym_never_type] = STATE(1426), - [sym_abstract_type] = STATE(1426), - [sym_dynamic_type] = STATE(1426), - [sym_macro_invocation] = STATE(1426), - [sym_scoped_identifier] = STATE(3212), - [sym_scoped_type_identifier] = STATE(1019), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2764), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(922), [sym_block_comment] = STATE(922), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_u8] = ACTIONS(3088), - [anon_sym_i8] = ACTIONS(3088), - [anon_sym_u16] = ACTIONS(3088), - [anon_sym_i16] = ACTIONS(3088), - [anon_sym_u32] = ACTIONS(3088), - [anon_sym_i32] = ACTIONS(3088), - [anon_sym_u64] = ACTIONS(3088), - [anon_sym_i64] = ACTIONS(3088), - [anon_sym_u128] = ACTIONS(3088), - [anon_sym_i128] = ACTIONS(3088), - [anon_sym_isize] = ACTIONS(3088), - [anon_sym_usize] = ACTIONS(3088), - [anon_sym_f32] = ACTIONS(3088), - [anon_sym_f64] = ACTIONS(3088), - [anon_sym_bool] = ACTIONS(3088), - [anon_sym_str] = ACTIONS(3088), - [anon_sym_char] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3094), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3096), - [anon_sym_fn] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3100), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3104), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3108), - [sym_super] = ACTIONS(3108), - [sym_crate] = ACTIONS(3108), - [sym_metavariable] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [923] = { - [sym_function_modifiers] = STATE(3328), - [sym_removed_trait_bound] = STATE(1645), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1829), - [sym_bracketed_type] = STATE(3546), - [sym_lifetime] = STATE(3363), - [sym_array_type] = STATE(1645), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1645), - [sym_tuple_type] = STATE(1645), - [sym_unit_type] = STATE(1645), - [sym_generic_type] = STATE(1626), - [sym_generic_type_with_turbofish] = STATE(3538), - [sym_bounded_type] = STATE(1645), - [sym_reference_type] = STATE(1645), - [sym_pointer_type] = STATE(1645), - [sym_never_type] = STATE(1645), - [sym_abstract_type] = STATE(1645), - [sym_dynamic_type] = STATE(1645), - [sym_macro_invocation] = STATE(1645), - [sym_scoped_identifier] = STATE(3277), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(3159), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(923), [sym_block_comment] = STATE(923), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3120), - [anon_sym_QMARK] = ACTIONS(3122), - [anon_sym_u8] = ACTIONS(3124), - [anon_sym_i8] = ACTIONS(3124), - [anon_sym_u16] = ACTIONS(3124), - [anon_sym_i16] = ACTIONS(3124), - [anon_sym_u32] = ACTIONS(3124), - [anon_sym_i32] = ACTIONS(3124), - [anon_sym_u64] = ACTIONS(3124), - [anon_sym_i64] = ACTIONS(3124), - [anon_sym_u128] = ACTIONS(3124), - [anon_sym_i128] = ACTIONS(3124), - [anon_sym_isize] = ACTIONS(3124), - [anon_sym_usize] = ACTIONS(3124), - [anon_sym_f32] = ACTIONS(3124), - [anon_sym_f64] = ACTIONS(3124), - [anon_sym_bool] = ACTIONS(3124), - [anon_sym_str] = ACTIONS(3124), - [anon_sym_char] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3130), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_fn] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3136), - [anon_sym_union] = ACTIONS(3138), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3140), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_crate] = ACTIONS(3144), - [sym_metavariable] = ACTIONS(3146), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [924] = { - [sym_function_modifiers] = STATE(3354), - [sym_removed_trait_bound] = STATE(1426), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1422), - [sym_bracketed_type] = STATE(3531), - [sym_lifetime] = STATE(3337), - [sym_array_type] = STATE(1426), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1426), - [sym_tuple_type] = STATE(1426), - [sym_unit_type] = STATE(1426), - [sym_generic_type] = STATE(1051), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1426), - [sym_reference_type] = STATE(1426), - [sym_pointer_type] = STATE(1426), - [sym_never_type] = STATE(1426), - [sym_abstract_type] = STATE(1426), - [sym_dynamic_type] = STATE(1426), - [sym_macro_invocation] = STATE(1426), - [sym_scoped_identifier] = STATE(3212), - [sym_scoped_type_identifier] = STATE(1019), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2921), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(924), [sym_block_comment] = STATE(924), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_u8] = ACTIONS(3088), - [anon_sym_i8] = ACTIONS(3088), - [anon_sym_u16] = ACTIONS(3088), - [anon_sym_i16] = ACTIONS(3088), - [anon_sym_u32] = ACTIONS(3088), - [anon_sym_i32] = ACTIONS(3088), - [anon_sym_u64] = ACTIONS(3088), - [anon_sym_i64] = ACTIONS(3088), - [anon_sym_u128] = ACTIONS(3088), - [anon_sym_i128] = ACTIONS(3088), - [anon_sym_isize] = ACTIONS(3088), - [anon_sym_usize] = ACTIONS(3088), - [anon_sym_f32] = ACTIONS(3088), - [anon_sym_f64] = ACTIONS(3088), - [anon_sym_bool] = ACTIONS(3088), - [anon_sym_str] = ACTIONS(3088), - [anon_sym_char] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3094), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3096), - [anon_sym_fn] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3100), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3104), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3108), - [sym_super] = ACTIONS(3108), - [sym_crate] = ACTIONS(3108), - [sym_metavariable] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [925] = { - [sym_function_modifiers] = STATE(3354), - [sym_removed_trait_bound] = STATE(1426), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1412), - [sym_bracketed_type] = STATE(3531), - [sym_lifetime] = STATE(3337), - [sym_array_type] = STATE(1426), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1426), - [sym_tuple_type] = STATE(1426), - [sym_unit_type] = STATE(1426), - [sym_generic_type] = STATE(1051), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1426), - [sym_reference_type] = STATE(1426), - [sym_pointer_type] = STATE(1426), - [sym_never_type] = STATE(1426), - [sym_abstract_type] = STATE(1426), - [sym_dynamic_type] = STATE(1426), - [sym_macro_invocation] = STATE(1426), - [sym_scoped_identifier] = STATE(3212), - [sym_scoped_type_identifier] = STATE(1019), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2810), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(925), [sym_block_comment] = STATE(925), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_u8] = ACTIONS(3088), - [anon_sym_i8] = ACTIONS(3088), - [anon_sym_u16] = ACTIONS(3088), - [anon_sym_i16] = ACTIONS(3088), - [anon_sym_u32] = ACTIONS(3088), - [anon_sym_i32] = ACTIONS(3088), - [anon_sym_u64] = ACTIONS(3088), - [anon_sym_i64] = ACTIONS(3088), - [anon_sym_u128] = ACTIONS(3088), - [anon_sym_i128] = ACTIONS(3088), - [anon_sym_isize] = ACTIONS(3088), - [anon_sym_usize] = ACTIONS(3088), - [anon_sym_f32] = ACTIONS(3088), - [anon_sym_f64] = ACTIONS(3088), - [anon_sym_bool] = ACTIONS(3088), - [anon_sym_str] = ACTIONS(3088), - [anon_sym_char] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3094), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3096), - [anon_sym_fn] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3100), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3104), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3108), - [sym_super] = ACTIONS(3108), - [sym_crate] = ACTIONS(3108), - [sym_metavariable] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [926] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2537), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2529), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(926), [sym_block_comment] = STATE(926), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [927] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2768), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1998), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(2010), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(927), [sym_block_comment] = STATE(927), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(3002), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [928] = { - [sym_function_modifiers] = STATE(3354), - [sym_removed_trait_bound] = STATE(1426), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1179), - [sym_bracketed_type] = STATE(3531), - [sym_lifetime] = STATE(3337), - [sym_array_type] = STATE(1426), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1426), - [sym_tuple_type] = STATE(1426), - [sym_unit_type] = STATE(1426), - [sym_generic_type] = STATE(1051), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1426), - [sym_reference_type] = STATE(1426), - [sym_pointer_type] = STATE(1426), - [sym_never_type] = STATE(1426), - [sym_abstract_type] = STATE(1426), - [sym_dynamic_type] = STATE(1426), - [sym_macro_invocation] = STATE(1426), - [sym_scoped_identifier] = STATE(3212), - [sym_scoped_type_identifier] = STATE(1019), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2939), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(928), [sym_block_comment] = STATE(928), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_u8] = ACTIONS(3088), - [anon_sym_i8] = ACTIONS(3088), - [anon_sym_u16] = ACTIONS(3088), - [anon_sym_i16] = ACTIONS(3088), - [anon_sym_u32] = ACTIONS(3088), - [anon_sym_i32] = ACTIONS(3088), - [anon_sym_u64] = ACTIONS(3088), - [anon_sym_i64] = ACTIONS(3088), - [anon_sym_u128] = ACTIONS(3088), - [anon_sym_i128] = ACTIONS(3088), - [anon_sym_isize] = ACTIONS(3088), - [anon_sym_usize] = ACTIONS(3088), - [anon_sym_f32] = ACTIONS(3088), - [anon_sym_f64] = ACTIONS(3088), - [anon_sym_bool] = ACTIONS(3088), - [anon_sym_str] = ACTIONS(3088), - [anon_sym_char] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3094), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3096), - [anon_sym_fn] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3100), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3104), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3108), - [sym_super] = ACTIONS(3108), - [sym_crate] = ACTIONS(3108), - [sym_metavariable] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [929] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2369), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(2377), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(2176), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2411), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(929), [sym_block_comment] = STATE(929), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [930] = { - [sym_function_modifiers] = STATE(3354), - [sym_removed_trait_bound] = STATE(1426), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1244), - [sym_bracketed_type] = STATE(3531), - [sym_lifetime] = STATE(3337), - [sym_array_type] = STATE(1426), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1426), - [sym_tuple_type] = STATE(1426), - [sym_unit_type] = STATE(1426), - [sym_generic_type] = STATE(1051), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1426), - [sym_reference_type] = STATE(1426), - [sym_pointer_type] = STATE(1426), - [sym_never_type] = STATE(1426), - [sym_abstract_type] = STATE(1426), - [sym_dynamic_type] = STATE(1426), - [sym_macro_invocation] = STATE(1426), - [sym_scoped_identifier] = STATE(3212), - [sym_scoped_type_identifier] = STATE(1019), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(3282), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(930), [sym_block_comment] = STATE(930), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_u8] = ACTIONS(3088), - [anon_sym_i8] = ACTIONS(3088), - [anon_sym_u16] = ACTIONS(3088), - [anon_sym_i16] = ACTIONS(3088), - [anon_sym_u32] = ACTIONS(3088), - [anon_sym_i32] = ACTIONS(3088), - [anon_sym_u64] = ACTIONS(3088), - [anon_sym_i64] = ACTIONS(3088), - [anon_sym_u128] = ACTIONS(3088), - [anon_sym_i128] = ACTIONS(3088), - [anon_sym_isize] = ACTIONS(3088), - [anon_sym_usize] = ACTIONS(3088), - [anon_sym_f32] = ACTIONS(3088), - [anon_sym_f64] = ACTIONS(3088), - [anon_sym_bool] = ACTIONS(3088), - [anon_sym_str] = ACTIONS(3088), - [anon_sym_char] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3094), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3096), - [anon_sym_fn] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3100), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3104), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3108), - [sym_super] = ACTIONS(3108), - [sym_crate] = ACTIONS(3108), - [sym_metavariable] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [931] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2221), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2352), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(931), [sym_block_comment] = STATE(931), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [932] = { - [sym_function_modifiers] = STATE(3328), - [sym_removed_trait_bound] = STATE(1645), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1832), - [sym_bracketed_type] = STATE(3546), - [sym_lifetime] = STATE(3363), - [sym_array_type] = STATE(1645), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1645), - [sym_tuple_type] = STATE(1645), - [sym_unit_type] = STATE(1645), - [sym_generic_type] = STATE(1626), - [sym_generic_type_with_turbofish] = STATE(3538), - [sym_bounded_type] = STATE(1645), - [sym_reference_type] = STATE(1645), - [sym_pointer_type] = STATE(1645), - [sym_never_type] = STATE(1645), - [sym_abstract_type] = STATE(1645), - [sym_dynamic_type] = STATE(1645), - [sym_macro_invocation] = STATE(1645), - [sym_scoped_identifier] = STATE(3277), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2353), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(932), [sym_block_comment] = STATE(932), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3120), - [anon_sym_QMARK] = ACTIONS(3122), - [anon_sym_u8] = ACTIONS(3124), - [anon_sym_i8] = ACTIONS(3124), - [anon_sym_u16] = ACTIONS(3124), - [anon_sym_i16] = ACTIONS(3124), - [anon_sym_u32] = ACTIONS(3124), - [anon_sym_i32] = ACTIONS(3124), - [anon_sym_u64] = ACTIONS(3124), - [anon_sym_i64] = ACTIONS(3124), - [anon_sym_u128] = ACTIONS(3124), - [anon_sym_i128] = ACTIONS(3124), - [anon_sym_isize] = ACTIONS(3124), - [anon_sym_usize] = ACTIONS(3124), - [anon_sym_f32] = ACTIONS(3124), - [anon_sym_f64] = ACTIONS(3124), - [anon_sym_bool] = ACTIONS(3124), - [anon_sym_str] = ACTIONS(3124), - [anon_sym_char] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3130), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_fn] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3136), - [anon_sym_union] = ACTIONS(3138), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3140), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_crate] = ACTIONS(3144), - [sym_metavariable] = ACTIONS(3146), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [933] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2432), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2005), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(933), [sym_block_comment] = STATE(933), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [934] = { - [sym_function_modifiers] = STATE(3354), - [sym_removed_trait_bound] = STATE(1426), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1181), - [sym_bracketed_type] = STATE(3531), - [sym_lifetime] = STATE(3337), - [sym_array_type] = STATE(1426), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1426), - [sym_tuple_type] = STATE(1426), - [sym_unit_type] = STATE(1426), - [sym_generic_type] = STATE(1051), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1426), - [sym_reference_type] = STATE(1426), - [sym_pointer_type] = STATE(1426), - [sym_never_type] = STATE(1426), - [sym_abstract_type] = STATE(1426), - [sym_dynamic_type] = STATE(1426), - [sym_macro_invocation] = STATE(1426), - [sym_scoped_identifier] = STATE(3212), - [sym_scoped_type_identifier] = STATE(1019), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2006), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(934), [sym_block_comment] = STATE(934), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_u8] = ACTIONS(3088), - [anon_sym_i8] = ACTIONS(3088), - [anon_sym_u16] = ACTIONS(3088), - [anon_sym_i16] = ACTIONS(3088), - [anon_sym_u32] = ACTIONS(3088), - [anon_sym_i32] = ACTIONS(3088), - [anon_sym_u64] = ACTIONS(3088), - [anon_sym_i64] = ACTIONS(3088), - [anon_sym_u128] = ACTIONS(3088), - [anon_sym_i128] = ACTIONS(3088), - [anon_sym_isize] = ACTIONS(3088), - [anon_sym_usize] = ACTIONS(3088), - [anon_sym_f32] = ACTIONS(3088), - [anon_sym_f64] = ACTIONS(3088), - [anon_sym_bool] = ACTIONS(3088), - [anon_sym_str] = ACTIONS(3088), - [anon_sym_char] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3094), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3096), - [anon_sym_fn] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3100), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3104), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3108), - [sym_super] = ACTIONS(3108), - [sym_crate] = ACTIONS(3108), - [sym_metavariable] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [935] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1993), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2902), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(935), [sym_block_comment] = STATE(935), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [936] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2856), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2924), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(936), [sym_block_comment] = STATE(936), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [937] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2866), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(3020), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(937), [sym_block_comment] = STATE(937), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [938] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1994), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(3183), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(938), [sym_block_comment] = STATE(938), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [939] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2350), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2330), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(2398), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(2188), [sym_line_comment] = STATE(939), [sym_block_comment] = STATE(939), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [940] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2362), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2337), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(940), [sym_block_comment] = STATE(940), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [941] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3363), + [sym_removed_trait_bound] = STATE(1469), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1106), + [sym_bracketed_type] = STATE(3542), + [sym_lifetime] = STATE(3339), + [sym_array_type] = STATE(1469), + [sym_for_lifetimes] = STATE(1611), + [sym_function_type] = STATE(1469), + [sym_tuple_type] = STATE(1469), + [sym_unit_type] = STATE(1469), + [sym_generic_type] = STATE(1094), + [sym_generic_type_with_turbofish] = STATE(3533), + [sym_bounded_type] = STATE(1469), + [sym_reference_type] = STATE(1469), + [sym_pointer_type] = STATE(1469), + [sym_never_type] = STATE(1469), + [sym_abstract_type] = STATE(1469), + [sym_dynamic_type] = STATE(1469), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(3219), + [sym_scoped_type_identifier] = STATE(1032), [sym_line_comment] = STATE(941), [sym_block_comment] = STATE(941), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3104), + [anon_sym_u8] = ACTIONS(3106), + [anon_sym_i8] = ACTIONS(3106), + [anon_sym_u16] = ACTIONS(3106), + [anon_sym_i16] = ACTIONS(3106), + [anon_sym_u32] = ACTIONS(3106), + [anon_sym_i32] = ACTIONS(3106), + [anon_sym_u64] = ACTIONS(3106), + [anon_sym_i64] = ACTIONS(3106), + [anon_sym_u128] = ACTIONS(3106), + [anon_sym_i128] = ACTIONS(3106), + [anon_sym_isize] = ACTIONS(3106), + [anon_sym_usize] = ACTIONS(3106), + [anon_sym_f32] = ACTIONS(3106), + [anon_sym_f64] = ACTIONS(3106), + [anon_sym_bool] = ACTIONS(3106), + [anon_sym_str] = ACTIONS(3106), + [anon_sym_char] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3112), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3114), + [anon_sym_fn] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3122), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_crate] = ACTIONS(3126), + [sym_metavariable] = ACTIONS(3128), }, [942] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(3021), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2409), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(942), [sym_block_comment] = STATE(942), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [943] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2899), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2691), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(943), [sym_block_comment] = STATE(943), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [944] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2442), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2215), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(944), [sym_block_comment] = STATE(944), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [945] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2527), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2772), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(945), [sym_block_comment] = STATE(945), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [946] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2366), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(2383), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(2178), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2346), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(946), [sym_block_comment] = STATE(946), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(3216), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [947] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(3311), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2347), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(947), [sym_block_comment] = STATE(947), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [948] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(3312), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2593), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(948), [sym_block_comment] = STATE(948), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [949] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2228), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2785), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(949), [sym_block_comment] = STATE(949), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [950] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2352), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2460), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(950), [sym_block_comment] = STATE(950), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [951] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2358), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2614), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(951), [sym_block_comment] = STATE(951), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [952] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2376), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2348), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(2401), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(2142), [sym_line_comment] = STATE(952), [sym_block_comment] = STATE(952), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [953] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2379), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3363), + [sym_removed_trait_bound] = STATE(1469), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1107), + [sym_bracketed_type] = STATE(3542), + [sym_lifetime] = STATE(3339), + [sym_array_type] = STATE(1469), + [sym_for_lifetimes] = STATE(1611), + [sym_function_type] = STATE(1469), + [sym_tuple_type] = STATE(1469), + [sym_unit_type] = STATE(1469), + [sym_generic_type] = STATE(1094), + [sym_generic_type_with_turbofish] = STATE(3533), + [sym_bounded_type] = STATE(1469), + [sym_reference_type] = STATE(1469), + [sym_pointer_type] = STATE(1469), + [sym_never_type] = STATE(1469), + [sym_abstract_type] = STATE(1469), + [sym_dynamic_type] = STATE(1469), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(3219), + [sym_scoped_type_identifier] = STATE(1032), [sym_line_comment] = STATE(953), [sym_block_comment] = STATE(953), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3104), + [anon_sym_u8] = ACTIONS(3106), + [anon_sym_i8] = ACTIONS(3106), + [anon_sym_u16] = ACTIONS(3106), + [anon_sym_i16] = ACTIONS(3106), + [anon_sym_u32] = ACTIONS(3106), + [anon_sym_i32] = ACTIONS(3106), + [anon_sym_u64] = ACTIONS(3106), + [anon_sym_i64] = ACTIONS(3106), + [anon_sym_u128] = ACTIONS(3106), + [anon_sym_i128] = ACTIONS(3106), + [anon_sym_isize] = ACTIONS(3106), + [anon_sym_usize] = ACTIONS(3106), + [anon_sym_f32] = ACTIONS(3106), + [anon_sym_f64] = ACTIONS(3106), + [anon_sym_bool] = ACTIONS(3106), + [anon_sym_str] = ACTIONS(3106), + [anon_sym_char] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3112), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3114), + [anon_sym_fn] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3122), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_crate] = ACTIONS(3126), + [sym_metavariable] = ACTIONS(3128), }, [954] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2547), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(3031), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(954), [sym_block_comment] = STATE(954), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [955] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2842), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2002), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(955), [sym_block_comment] = STATE(955), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [956] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2985), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2979), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(956), [sym_block_comment] = STATE(956), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [957] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2449), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2245), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(957), [sym_block_comment] = STATE(957), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [958] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2550), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2304), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(958), [sym_block_comment] = STATE(958), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [959] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(3003), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2402), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(959), [sym_block_comment] = STATE(959), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [960] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2553), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2357), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(960), [sym_block_comment] = STATE(960), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [961] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2693), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2358), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(961), [sym_block_comment] = STATE(961), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [962] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2208), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2704), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(962), [sym_block_comment] = STATE(962), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [963] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2349), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2613), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(963), [sym_block_comment] = STATE(963), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [964] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2357), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2824), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(964), [sym_block_comment] = STATE(964), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [965] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2415), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2507), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(965), [sym_block_comment] = STATE(965), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [966] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2750), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2713), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(966), [sym_block_comment] = STATE(966), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [967] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1982), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(1983), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2832), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(967), [sym_block_comment] = STATE(967), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [968] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2317), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2721), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(968), [sym_block_comment] = STATE(968), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [969] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2340), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2219), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(969), [sym_block_comment] = STATE(969), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [970] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2367), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2362), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(970), [sym_block_comment] = STATE(970), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [971] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2378), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2363), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(971), [sym_block_comment] = STATE(971), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [972] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2237), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3502), + [sym_removed_trait_bound] = STATE(1665), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1684), + [sym_bracketed_type] = STATE(3557), + [sym_lifetime] = STATE(3404), + [sym_array_type] = STATE(1665), + [sym_for_lifetimes] = STATE(1584), + [sym_function_type] = STATE(1665), + [sym_tuple_type] = STATE(1665), + [sym_unit_type] = STATE(1665), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3549), + [sym_bounded_type] = STATE(1665), + [sym_reference_type] = STATE(1665), + [sym_pointer_type] = STATE(1665), + [sym_never_type] = STATE(1665), + [sym_abstract_type] = STATE(1665), + [sym_dynamic_type] = STATE(1665), + [sym_macro_invocation] = STATE(1665), + [sym_scoped_identifier] = STATE(3285), + [sym_scoped_type_identifier] = STATE(1536), [sym_line_comment] = STATE(972), [sym_block_comment] = STATE(972), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_u8] = ACTIONS(3142), + [anon_sym_i8] = ACTIONS(3142), + [anon_sym_u16] = ACTIONS(3142), + [anon_sym_i16] = ACTIONS(3142), + [anon_sym_u32] = ACTIONS(3142), + [anon_sym_i32] = ACTIONS(3142), + [anon_sym_u64] = ACTIONS(3142), + [anon_sym_i64] = ACTIONS(3142), + [anon_sym_u128] = ACTIONS(3142), + [anon_sym_i128] = ACTIONS(3142), + [anon_sym_isize] = ACTIONS(3142), + [anon_sym_usize] = ACTIONS(3142), + [anon_sym_f32] = ACTIONS(3142), + [anon_sym_f64] = ACTIONS(3142), + [anon_sym_bool] = ACTIONS(3142), + [anon_sym_str] = ACTIONS(3142), + [anon_sym_char] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3154), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3158), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3162), + [sym_super] = ACTIONS(3162), + [sym_crate] = ACTIONS(3162), + [sym_metavariable] = ACTIONS(3164), }, [973] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2570), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2857), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(973), [sym_block_comment] = STATE(973), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [974] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1997), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2236), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(974), [sym_block_comment] = STATE(974), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [975] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1998), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2364), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(975), [sym_block_comment] = STATE(975), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [976] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2000), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2365), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(976), [sym_block_comment] = STATE(976), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [977] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2303), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2366), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(977), [sym_block_comment] = STATE(977), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [978] = { - [sym_function_modifiers] = STATE(3328), - [sym_removed_trait_bound] = STATE(1645), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1707), - [sym_bracketed_type] = STATE(3546), - [sym_lifetime] = STATE(3363), - [sym_array_type] = STATE(1645), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1645), - [sym_tuple_type] = STATE(1645), - [sym_unit_type] = STATE(1645), - [sym_generic_type] = STATE(1626), - [sym_generic_type_with_turbofish] = STATE(3538), - [sym_bounded_type] = STATE(1645), - [sym_reference_type] = STATE(1645), - [sym_pointer_type] = STATE(1645), - [sym_never_type] = STATE(1645), - [sym_abstract_type] = STATE(1645), - [sym_dynamic_type] = STATE(1645), - [sym_macro_invocation] = STATE(1645), - [sym_scoped_identifier] = STATE(3277), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2367), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(978), [sym_block_comment] = STATE(978), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3120), - [anon_sym_QMARK] = ACTIONS(3122), - [anon_sym_u8] = ACTIONS(3124), - [anon_sym_i8] = ACTIONS(3124), - [anon_sym_u16] = ACTIONS(3124), - [anon_sym_i16] = ACTIONS(3124), - [anon_sym_u32] = ACTIONS(3124), - [anon_sym_i32] = ACTIONS(3124), - [anon_sym_u64] = ACTIONS(3124), - [anon_sym_i64] = ACTIONS(3124), - [anon_sym_u128] = ACTIONS(3124), - [anon_sym_i128] = ACTIONS(3124), - [anon_sym_isize] = ACTIONS(3124), - [anon_sym_usize] = ACTIONS(3124), - [anon_sym_f32] = ACTIONS(3124), - [anon_sym_f64] = ACTIONS(3124), - [anon_sym_bool] = ACTIONS(3124), - [anon_sym_str] = ACTIONS(3124), - [anon_sym_char] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3130), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_fn] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3136), - [anon_sym_union] = ACTIONS(3138), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3140), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_crate] = ACTIONS(3144), - [sym_metavariable] = ACTIONS(3146), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [979] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2194), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2221), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(979), [sym_block_comment] = STATE(979), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [980] = { - [sym_function_modifiers] = STATE(3328), - [sym_removed_trait_bound] = STATE(1645), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1644), - [sym_bracketed_type] = STATE(3546), - [sym_lifetime] = STATE(3363), - [sym_array_type] = STATE(1645), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1645), - [sym_tuple_type] = STATE(1645), - [sym_unit_type] = STATE(1645), - [sym_generic_type] = STATE(1626), - [sym_generic_type_with_turbofish] = STATE(3538), - [sym_bounded_type] = STATE(1645), - [sym_reference_type] = STATE(1645), - [sym_pointer_type] = STATE(1645), - [sym_never_type] = STATE(1645), - [sym_abstract_type] = STATE(1645), - [sym_dynamic_type] = STATE(1645), - [sym_macro_invocation] = STATE(1645), - [sym_scoped_identifier] = STATE(3277), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2522), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(980), [sym_block_comment] = STATE(980), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3120), - [anon_sym_QMARK] = ACTIONS(3122), - [anon_sym_u8] = ACTIONS(3124), - [anon_sym_i8] = ACTIONS(3124), - [anon_sym_u16] = ACTIONS(3124), - [anon_sym_i16] = ACTIONS(3124), - [anon_sym_u32] = ACTIONS(3124), - [anon_sym_i32] = ACTIONS(3124), - [anon_sym_u64] = ACTIONS(3124), - [anon_sym_i64] = ACTIONS(3124), - [anon_sym_u128] = ACTIONS(3124), - [anon_sym_i128] = ACTIONS(3124), - [anon_sym_isize] = ACTIONS(3124), - [anon_sym_usize] = ACTIONS(3124), - [anon_sym_f32] = ACTIONS(3124), - [anon_sym_f64] = ACTIONS(3124), - [anon_sym_bool] = ACTIONS(3124), - [anon_sym_str] = ACTIONS(3124), - [anon_sym_char] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3130), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_fn] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3136), - [anon_sym_union] = ACTIONS(3138), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3140), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_crate] = ACTIONS(3144), - [sym_metavariable] = ACTIONS(3146), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [981] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2774), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1998), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(981), [sym_block_comment] = STATE(981), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [982] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2196), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2368), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(982), [sym_block_comment] = STATE(982), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [983] = { - [sym_function_modifiers] = STATE(3328), - [sym_removed_trait_bound] = STATE(1645), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1708), - [sym_bracketed_type] = STATE(3546), - [sym_lifetime] = STATE(3363), - [sym_array_type] = STATE(1645), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1645), - [sym_tuple_type] = STATE(1645), - [sym_unit_type] = STATE(1645), - [sym_generic_type] = STATE(1626), - [sym_generic_type_with_turbofish] = STATE(3538), - [sym_bounded_type] = STATE(1645), - [sym_reference_type] = STATE(1645), - [sym_pointer_type] = STATE(1645), - [sym_never_type] = STATE(1645), - [sym_abstract_type] = STATE(1645), - [sym_dynamic_type] = STATE(1645), - [sym_macro_invocation] = STATE(1645), - [sym_scoped_identifier] = STATE(3277), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2369), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(983), [sym_block_comment] = STATE(983), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3120), - [anon_sym_QMARK] = ACTIONS(3122), - [anon_sym_u8] = ACTIONS(3124), - [anon_sym_i8] = ACTIONS(3124), - [anon_sym_u16] = ACTIONS(3124), - [anon_sym_i16] = ACTIONS(3124), - [anon_sym_u32] = ACTIONS(3124), - [anon_sym_i32] = ACTIONS(3124), - [anon_sym_u64] = ACTIONS(3124), - [anon_sym_i64] = ACTIONS(3124), - [anon_sym_u128] = ACTIONS(3124), - [anon_sym_i128] = ACTIONS(3124), - [anon_sym_isize] = ACTIONS(3124), - [anon_sym_usize] = ACTIONS(3124), - [anon_sym_f32] = ACTIONS(3124), - [anon_sym_f64] = ACTIONS(3124), - [anon_sym_bool] = ACTIONS(3124), - [anon_sym_str] = ACTIONS(3124), - [anon_sym_char] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3130), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_fn] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3136), - [anon_sym_union] = ACTIONS(3138), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3140), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_crate] = ACTIONS(3144), - [sym_metavariable] = ACTIONS(3146), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [984] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2201), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2223), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(984), [sym_block_comment] = STATE(984), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [985] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2561), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2881), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(985), [sym_block_comment] = STATE(985), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [986] = { - [sym_function_modifiers] = STATE(3328), - [sym_removed_trait_bound] = STATE(1645), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1648), - [sym_bracketed_type] = STATE(3546), - [sym_lifetime] = STATE(3363), - [sym_array_type] = STATE(1645), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1645), - [sym_tuple_type] = STATE(1645), - [sym_unit_type] = STATE(1645), - [sym_generic_type] = STATE(1626), - [sym_generic_type_with_turbofish] = STATE(3538), - [sym_bounded_type] = STATE(1645), - [sym_reference_type] = STATE(1645), - [sym_pointer_type] = STATE(1645), - [sym_never_type] = STATE(1645), - [sym_abstract_type] = STATE(1645), - [sym_dynamic_type] = STATE(1645), - [sym_macro_invocation] = STATE(1645), - [sym_scoped_identifier] = STATE(3277), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2224), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(986), [sym_block_comment] = STATE(986), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3120), - [anon_sym_QMARK] = ACTIONS(3122), - [anon_sym_u8] = ACTIONS(3124), - [anon_sym_i8] = ACTIONS(3124), - [anon_sym_u16] = ACTIONS(3124), - [anon_sym_i16] = ACTIONS(3124), - [anon_sym_u32] = ACTIONS(3124), - [anon_sym_i32] = ACTIONS(3124), - [anon_sym_u64] = ACTIONS(3124), - [anon_sym_i64] = ACTIONS(3124), - [anon_sym_u128] = ACTIONS(3124), - [anon_sym_i128] = ACTIONS(3124), - [anon_sym_isize] = ACTIONS(3124), - [anon_sym_usize] = ACTIONS(3124), - [anon_sym_f32] = ACTIONS(3124), - [anon_sym_f64] = ACTIONS(3124), - [anon_sym_bool] = ACTIONS(3124), - [anon_sym_str] = ACTIONS(3124), - [anon_sym_char] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3130), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_fn] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3136), - [anon_sym_union] = ACTIONS(3138), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3140), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_crate] = ACTIONS(3144), - [sym_metavariable] = ACTIONS(3146), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [987] = { - [sym_function_modifiers] = STATE(3328), - [sym_removed_trait_bound] = STATE(1645), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1650), - [sym_bracketed_type] = STATE(3546), - [sym_lifetime] = STATE(3363), - [sym_array_type] = STATE(1645), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1645), - [sym_tuple_type] = STATE(1645), - [sym_unit_type] = STATE(1645), - [sym_generic_type] = STATE(1626), - [sym_generic_type_with_turbofish] = STATE(3538), - [sym_bounded_type] = STATE(1645), - [sym_reference_type] = STATE(1645), - [sym_pointer_type] = STATE(1645), - [sym_never_type] = STATE(1645), - [sym_abstract_type] = STATE(1645), - [sym_dynamic_type] = STATE(1645), - [sym_macro_invocation] = STATE(1645), - [sym_scoped_identifier] = STATE(3277), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3502), + [sym_removed_trait_bound] = STATE(1665), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1812), + [sym_bracketed_type] = STATE(3557), + [sym_lifetime] = STATE(3404), + [sym_array_type] = STATE(1665), + [sym_for_lifetimes] = STATE(1584), + [sym_function_type] = STATE(1665), + [sym_tuple_type] = STATE(1665), + [sym_unit_type] = STATE(1665), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3549), + [sym_bounded_type] = STATE(1665), + [sym_reference_type] = STATE(1665), + [sym_pointer_type] = STATE(1665), + [sym_never_type] = STATE(1665), + [sym_abstract_type] = STATE(1665), + [sym_dynamic_type] = STATE(1665), + [sym_macro_invocation] = STATE(1665), + [sym_scoped_identifier] = STATE(3285), + [sym_scoped_type_identifier] = STATE(1536), [sym_line_comment] = STATE(987), [sym_block_comment] = STATE(987), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3120), - [anon_sym_QMARK] = ACTIONS(3122), - [anon_sym_u8] = ACTIONS(3124), - [anon_sym_i8] = ACTIONS(3124), - [anon_sym_u16] = ACTIONS(3124), - [anon_sym_i16] = ACTIONS(3124), - [anon_sym_u32] = ACTIONS(3124), - [anon_sym_i32] = ACTIONS(3124), - [anon_sym_u64] = ACTIONS(3124), - [anon_sym_i64] = ACTIONS(3124), - [anon_sym_u128] = ACTIONS(3124), - [anon_sym_i128] = ACTIONS(3124), - [anon_sym_isize] = ACTIONS(3124), - [anon_sym_usize] = ACTIONS(3124), - [anon_sym_f32] = ACTIONS(3124), - [anon_sym_f64] = ACTIONS(3124), - [anon_sym_bool] = ACTIONS(3124), - [anon_sym_str] = ACTIONS(3124), - [anon_sym_char] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3130), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_u8] = ACTIONS(3142), + [anon_sym_i8] = ACTIONS(3142), + [anon_sym_u16] = ACTIONS(3142), + [anon_sym_i16] = ACTIONS(3142), + [anon_sym_u32] = ACTIONS(3142), + [anon_sym_i32] = ACTIONS(3142), + [anon_sym_u64] = ACTIONS(3142), + [anon_sym_i64] = ACTIONS(3142), + [anon_sym_u128] = ACTIONS(3142), + [anon_sym_i128] = ACTIONS(3142), + [anon_sym_isize] = ACTIONS(3142), + [anon_sym_usize] = ACTIONS(3142), + [anon_sym_f32] = ACTIONS(3142), + [anon_sym_f64] = ACTIONS(3142), + [anon_sym_bool] = ACTIONS(3142), + [anon_sym_str] = ACTIONS(3142), + [anon_sym_char] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_fn] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3136), - [anon_sym_union] = ACTIONS(3138), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3140), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_crate] = ACTIONS(3144), - [sym_metavariable] = ACTIONS(3146), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3154), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3158), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3162), + [sym_super] = ACTIONS(3162), + [sym_crate] = ACTIONS(3162), + [sym_metavariable] = ACTIONS(3164), }, [988] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1979), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2225), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(988), [sym_block_comment] = STATE(988), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [989] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2809), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2218), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(989), [sym_block_comment] = STATE(989), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [990] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2236), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3363), + [sym_removed_trait_bound] = STATE(1469), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1113), + [sym_bracketed_type] = STATE(3542), + [sym_lifetime] = STATE(3339), + [sym_array_type] = STATE(1469), + [sym_for_lifetimes] = STATE(1611), + [sym_function_type] = STATE(1469), + [sym_tuple_type] = STATE(1469), + [sym_unit_type] = STATE(1469), + [sym_generic_type] = STATE(1094), + [sym_generic_type_with_turbofish] = STATE(3533), + [sym_bounded_type] = STATE(1469), + [sym_reference_type] = STATE(1469), + [sym_pointer_type] = STATE(1469), + [sym_never_type] = STATE(1469), + [sym_abstract_type] = STATE(1469), + [sym_dynamic_type] = STATE(1469), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(3219), + [sym_scoped_type_identifier] = STATE(1032), [sym_line_comment] = STATE(990), [sym_block_comment] = STATE(990), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3104), + [anon_sym_u8] = ACTIONS(3106), + [anon_sym_i8] = ACTIONS(3106), + [anon_sym_u16] = ACTIONS(3106), + [anon_sym_i16] = ACTIONS(3106), + [anon_sym_u32] = ACTIONS(3106), + [anon_sym_i32] = ACTIONS(3106), + [anon_sym_u64] = ACTIONS(3106), + [anon_sym_i64] = ACTIONS(3106), + [anon_sym_u128] = ACTIONS(3106), + [anon_sym_i128] = ACTIONS(3106), + [anon_sym_isize] = ACTIONS(3106), + [anon_sym_usize] = ACTIONS(3106), + [anon_sym_f32] = ACTIONS(3106), + [anon_sym_f64] = ACTIONS(3106), + [anon_sym_bool] = ACTIONS(3106), + [anon_sym_str] = ACTIONS(3106), + [anon_sym_char] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3112), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3114), + [anon_sym_fn] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3122), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_crate] = ACTIONS(3126), + [sym_metavariable] = ACTIONS(3128), }, [991] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2879), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(3035), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(991), [sym_block_comment] = STATE(991), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [992] = { - [sym_function_modifiers] = STATE(3328), - [sym_removed_trait_bound] = STATE(1645), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1656), - [sym_bracketed_type] = STATE(3546), - [sym_lifetime] = STATE(3363), - [sym_array_type] = STATE(1645), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1645), - [sym_tuple_type] = STATE(1645), - [sym_unit_type] = STATE(1645), - [sym_generic_type] = STATE(1626), - [sym_generic_type_with_turbofish] = STATE(3538), - [sym_bounded_type] = STATE(1645), - [sym_reference_type] = STATE(1645), - [sym_pointer_type] = STATE(1645), - [sym_never_type] = STATE(1645), - [sym_abstract_type] = STATE(1645), - [sym_dynamic_type] = STATE(1645), - [sym_macro_invocation] = STATE(1645), - [sym_scoped_identifier] = STATE(3277), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3363), + [sym_removed_trait_bound] = STATE(1469), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1111), + [sym_bracketed_type] = STATE(3542), + [sym_lifetime] = STATE(3339), + [sym_array_type] = STATE(1469), + [sym_for_lifetimes] = STATE(1611), + [sym_function_type] = STATE(1469), + [sym_tuple_type] = STATE(1469), + [sym_unit_type] = STATE(1469), + [sym_generic_type] = STATE(1094), + [sym_generic_type_with_turbofish] = STATE(3533), + [sym_bounded_type] = STATE(1469), + [sym_reference_type] = STATE(1469), + [sym_pointer_type] = STATE(1469), + [sym_never_type] = STATE(1469), + [sym_abstract_type] = STATE(1469), + [sym_dynamic_type] = STATE(1469), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(3219), + [sym_scoped_type_identifier] = STATE(1032), [sym_line_comment] = STATE(992), [sym_block_comment] = STATE(992), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3120), - [anon_sym_QMARK] = ACTIONS(3122), - [anon_sym_u8] = ACTIONS(3124), - [anon_sym_i8] = ACTIONS(3124), - [anon_sym_u16] = ACTIONS(3124), - [anon_sym_i16] = ACTIONS(3124), - [anon_sym_u32] = ACTIONS(3124), - [anon_sym_i32] = ACTIONS(3124), - [anon_sym_u64] = ACTIONS(3124), - [anon_sym_i64] = ACTIONS(3124), - [anon_sym_u128] = ACTIONS(3124), - [anon_sym_i128] = ACTIONS(3124), - [anon_sym_isize] = ACTIONS(3124), - [anon_sym_usize] = ACTIONS(3124), - [anon_sym_f32] = ACTIONS(3124), - [anon_sym_f64] = ACTIONS(3124), - [anon_sym_bool] = ACTIONS(3124), - [anon_sym_str] = ACTIONS(3124), - [anon_sym_char] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3130), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3104), + [anon_sym_u8] = ACTIONS(3106), + [anon_sym_i8] = ACTIONS(3106), + [anon_sym_u16] = ACTIONS(3106), + [anon_sym_i16] = ACTIONS(3106), + [anon_sym_u32] = ACTIONS(3106), + [anon_sym_i32] = ACTIONS(3106), + [anon_sym_u64] = ACTIONS(3106), + [anon_sym_i64] = ACTIONS(3106), + [anon_sym_u128] = ACTIONS(3106), + [anon_sym_i128] = ACTIONS(3106), + [anon_sym_isize] = ACTIONS(3106), + [anon_sym_usize] = ACTIONS(3106), + [anon_sym_f32] = ACTIONS(3106), + [anon_sym_f64] = ACTIONS(3106), + [anon_sym_bool] = ACTIONS(3106), + [anon_sym_str] = ACTIONS(3106), + [anon_sym_char] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3112), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_fn] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3136), - [anon_sym_union] = ACTIONS(3138), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3140), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_crate] = ACTIONS(3144), - [sym_metavariable] = ACTIONS(3146), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3114), + [anon_sym_fn] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3122), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_crate] = ACTIONS(3126), + [sym_metavariable] = ACTIONS(3128), }, [993] = { - [sym_function_modifiers] = STATE(3328), - [sym_removed_trait_bound] = STATE(1645), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1657), - [sym_bracketed_type] = STATE(3546), - [sym_lifetime] = STATE(3363), - [sym_array_type] = STATE(1645), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1645), - [sym_tuple_type] = STATE(1645), - [sym_unit_type] = STATE(1645), - [sym_generic_type] = STATE(1626), - [sym_generic_type_with_turbofish] = STATE(3538), - [sym_bounded_type] = STATE(1645), - [sym_reference_type] = STATE(1645), - [sym_pointer_type] = STATE(1645), - [sym_never_type] = STATE(1645), - [sym_abstract_type] = STATE(1645), - [sym_dynamic_type] = STATE(1645), - [sym_macro_invocation] = STATE(1645), - [sym_scoped_identifier] = STATE(3277), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2904), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(993), [sym_block_comment] = STATE(993), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3120), - [anon_sym_QMARK] = ACTIONS(3122), - [anon_sym_u8] = ACTIONS(3124), - [anon_sym_i8] = ACTIONS(3124), - [anon_sym_u16] = ACTIONS(3124), - [anon_sym_i16] = ACTIONS(3124), - [anon_sym_u32] = ACTIONS(3124), - [anon_sym_i32] = ACTIONS(3124), - [anon_sym_u64] = ACTIONS(3124), - [anon_sym_i64] = ACTIONS(3124), - [anon_sym_u128] = ACTIONS(3124), - [anon_sym_i128] = ACTIONS(3124), - [anon_sym_isize] = ACTIONS(3124), - [anon_sym_usize] = ACTIONS(3124), - [anon_sym_f32] = ACTIONS(3124), - [anon_sym_f64] = ACTIONS(3124), - [anon_sym_bool] = ACTIONS(3124), - [anon_sym_str] = ACTIONS(3124), - [anon_sym_char] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3130), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_fn] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3136), - [anon_sym_union] = ACTIONS(3138), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3140), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_crate] = ACTIONS(3144), - [sym_metavariable] = ACTIONS(3146), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [994] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1986), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_attribute_item] = STATE(1011), [sym_line_comment] = STATE(994), [sym_block_comment] = STATE(994), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), - [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3218), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [aux_sym_enum_variant_list_repeat1] = STATE(994), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(755), + [anon_sym_RBRACK] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_STAR] = ACTIONS(755), + [anon_sym_u8] = ACTIONS(3230), + [anon_sym_i8] = ACTIONS(3230), + [anon_sym_u16] = ACTIONS(3230), + [anon_sym_i16] = ACTIONS(3230), + [anon_sym_u32] = ACTIONS(3230), + [anon_sym_i32] = ACTIONS(3230), + [anon_sym_u64] = ACTIONS(3230), + [anon_sym_i64] = ACTIONS(3230), + [anon_sym_u128] = ACTIONS(3230), + [anon_sym_i128] = ACTIONS(3230), + [anon_sym_isize] = ACTIONS(3230), + [anon_sym_usize] = ACTIONS(3230), + [anon_sym_f32] = ACTIONS(3230), + [anon_sym_f64] = ACTIONS(3230), + [anon_sym_bool] = ACTIONS(3230), + [anon_sym_str] = ACTIONS(3230), + [anon_sym_char] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(755), + [anon_sym_BANG] = ACTIONS(755), + [anon_sym_AMP] = ACTIONS(755), + [anon_sym_PIPE] = ACTIONS(755), + [anon_sym_LT] = ACTIONS(755), + [anon_sym_DOT_DOT] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(781), + [anon_sym_SQUOTE] = ACTIONS(3230), + [anon_sym_async] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_gen] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_loop] = ACTIONS(3230), + [anon_sym_match] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_static] = ACTIONS(3230), + [anon_sym_union] = ACTIONS(3230), + [anon_sym_unsafe] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_move] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [sym_integer_literal] = ACTIONS(755), + [aux_sym_string_literal_token1] = ACTIONS(755), + [sym_char_literal] = ACTIONS(755), + [anon_sym_true] = ACTIONS(3230), + [anon_sym_false] = ACTIONS(3230), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3230), + [sym_super] = ACTIONS(3230), + [sym_crate] = ACTIONS(3230), + [sym_metavariable] = ACTIONS(755), + [sym__raw_string_literal_start] = ACTIONS(755), + [sym_float_literal] = ACTIONS(755), }, [995] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1999), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3502), + [sym_removed_trait_bound] = STATE(1665), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1685), + [sym_bracketed_type] = STATE(3557), + [sym_lifetime] = STATE(3404), + [sym_array_type] = STATE(1665), + [sym_for_lifetimes] = STATE(1584), + [sym_function_type] = STATE(1665), + [sym_tuple_type] = STATE(1665), + [sym_unit_type] = STATE(1665), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3549), + [sym_bounded_type] = STATE(1665), + [sym_reference_type] = STATE(1665), + [sym_pointer_type] = STATE(1665), + [sym_never_type] = STATE(1665), + [sym_abstract_type] = STATE(1665), + [sym_dynamic_type] = STATE(1665), + [sym_macro_invocation] = STATE(1665), + [sym_scoped_identifier] = STATE(3285), + [sym_scoped_type_identifier] = STATE(1536), [sym_line_comment] = STATE(995), [sym_block_comment] = STATE(995), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_u8] = ACTIONS(3142), + [anon_sym_i8] = ACTIONS(3142), + [anon_sym_u16] = ACTIONS(3142), + [anon_sym_i16] = ACTIONS(3142), + [anon_sym_u32] = ACTIONS(3142), + [anon_sym_i32] = ACTIONS(3142), + [anon_sym_u64] = ACTIONS(3142), + [anon_sym_i64] = ACTIONS(3142), + [anon_sym_u128] = ACTIONS(3142), + [anon_sym_i128] = ACTIONS(3142), + [anon_sym_isize] = ACTIONS(3142), + [anon_sym_usize] = ACTIONS(3142), + [anon_sym_f32] = ACTIONS(3142), + [anon_sym_f64] = ACTIONS(3142), + [anon_sym_bool] = ACTIONS(3142), + [anon_sym_str] = ACTIONS(3142), + [anon_sym_char] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3154), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3158), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3162), + [sym_super] = ACTIONS(3162), + [sym_crate] = ACTIONS(3162), + [sym_metavariable] = ACTIONS(3164), }, [996] = { - [sym_function_modifiers] = STATE(3328), - [sym_removed_trait_bound] = STATE(1645), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1659), - [sym_bracketed_type] = STATE(3546), - [sym_lifetime] = STATE(3363), - [sym_array_type] = STATE(1645), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1645), - [sym_tuple_type] = STATE(1645), - [sym_unit_type] = STATE(1645), - [sym_generic_type] = STATE(1626), - [sym_generic_type_with_turbofish] = STATE(3538), - [sym_bounded_type] = STATE(1645), - [sym_reference_type] = STATE(1645), - [sym_pointer_type] = STATE(1645), - [sym_never_type] = STATE(1645), - [sym_abstract_type] = STATE(1645), - [sym_dynamic_type] = STATE(1645), - [sym_macro_invocation] = STATE(1645), - [sym_scoped_identifier] = STATE(3277), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2328), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(2329), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(2147), [sym_line_comment] = STATE(996), [sym_block_comment] = STATE(996), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3120), - [anon_sym_QMARK] = ACTIONS(3122), - [anon_sym_u8] = ACTIONS(3124), - [anon_sym_i8] = ACTIONS(3124), - [anon_sym_u16] = ACTIONS(3124), - [anon_sym_i16] = ACTIONS(3124), - [anon_sym_u32] = ACTIONS(3124), - [anon_sym_i32] = ACTIONS(3124), - [anon_sym_u64] = ACTIONS(3124), - [anon_sym_i64] = ACTIONS(3124), - [anon_sym_u128] = ACTIONS(3124), - [anon_sym_i128] = ACTIONS(3124), - [anon_sym_isize] = ACTIONS(3124), - [anon_sym_usize] = ACTIONS(3124), - [anon_sym_f32] = ACTIONS(3124), - [anon_sym_f64] = ACTIONS(3124), - [anon_sym_bool] = ACTIONS(3124), - [anon_sym_str] = ACTIONS(3124), - [anon_sym_char] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3130), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_fn] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3136), - [anon_sym_union] = ACTIONS(3138), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3140), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_crate] = ACTIONS(3144), - [sym_metavariable] = ACTIONS(3146), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [997] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2874), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3502), + [sym_removed_trait_bound] = STATE(1665), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1712), + [sym_bracketed_type] = STATE(3557), + [sym_lifetime] = STATE(3404), + [sym_array_type] = STATE(1665), + [sym_for_lifetimes] = STATE(1584), + [sym_function_type] = STATE(1665), + [sym_tuple_type] = STATE(1665), + [sym_unit_type] = STATE(1665), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3549), + [sym_bounded_type] = STATE(1665), + [sym_reference_type] = STATE(1665), + [sym_pointer_type] = STATE(1665), + [sym_never_type] = STATE(1665), + [sym_abstract_type] = STATE(1665), + [sym_dynamic_type] = STATE(1665), + [sym_macro_invocation] = STATE(1665), + [sym_scoped_identifier] = STATE(3285), + [sym_scoped_type_identifier] = STATE(1536), [sym_line_comment] = STATE(997), [sym_block_comment] = STATE(997), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_u8] = ACTIONS(3142), + [anon_sym_i8] = ACTIONS(3142), + [anon_sym_u16] = ACTIONS(3142), + [anon_sym_i16] = ACTIONS(3142), + [anon_sym_u32] = ACTIONS(3142), + [anon_sym_i32] = ACTIONS(3142), + [anon_sym_u64] = ACTIONS(3142), + [anon_sym_i64] = ACTIONS(3142), + [anon_sym_u128] = ACTIONS(3142), + [anon_sym_i128] = ACTIONS(3142), + [anon_sym_isize] = ACTIONS(3142), + [anon_sym_usize] = ACTIONS(3142), + [anon_sym_f32] = ACTIONS(3142), + [anon_sym_f64] = ACTIONS(3142), + [anon_sym_bool] = ACTIONS(3142), + [anon_sym_str] = ACTIONS(3142), + [anon_sym_char] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3154), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3158), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3162), + [sym_super] = ACTIONS(3162), + [sym_crate] = ACTIONS(3162), + [sym_metavariable] = ACTIONS(3164), }, [998] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1992), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3502), + [sym_removed_trait_bound] = STATE(1665), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1818), + [sym_bracketed_type] = STATE(3557), + [sym_lifetime] = STATE(3404), + [sym_array_type] = STATE(1665), + [sym_for_lifetimes] = STATE(1584), + [sym_function_type] = STATE(1665), + [sym_tuple_type] = STATE(1665), + [sym_unit_type] = STATE(1665), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3549), + [sym_bounded_type] = STATE(1665), + [sym_reference_type] = STATE(1665), + [sym_pointer_type] = STATE(1665), + [sym_never_type] = STATE(1665), + [sym_abstract_type] = STATE(1665), + [sym_dynamic_type] = STATE(1665), + [sym_macro_invocation] = STATE(1665), + [sym_scoped_identifier] = STATE(3285), + [sym_scoped_type_identifier] = STATE(1536), [sym_line_comment] = STATE(998), [sym_block_comment] = STATE(998), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_u8] = ACTIONS(3142), + [anon_sym_i8] = ACTIONS(3142), + [anon_sym_u16] = ACTIONS(3142), + [anon_sym_i16] = ACTIONS(3142), + [anon_sym_u32] = ACTIONS(3142), + [anon_sym_i32] = ACTIONS(3142), + [anon_sym_u64] = ACTIONS(3142), + [anon_sym_i64] = ACTIONS(3142), + [anon_sym_u128] = ACTIONS(3142), + [anon_sym_i128] = ACTIONS(3142), + [anon_sym_isize] = ACTIONS(3142), + [anon_sym_usize] = ACTIONS(3142), + [anon_sym_f32] = ACTIONS(3142), + [anon_sym_f64] = ACTIONS(3142), + [anon_sym_bool] = ACTIONS(3142), + [anon_sym_str] = ACTIONS(3142), + [anon_sym_char] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3154), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3158), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3162), + [sym_super] = ACTIONS(3162), + [sym_crate] = ACTIONS(3162), + [sym_metavariable] = ACTIONS(3164), }, [999] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(3208), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2652), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(999), [sym_block_comment] = STATE(999), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [1000] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2305), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(2300), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(2171), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2591), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(1000), [sym_block_comment] = STATE(1000), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3220), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [1001] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(3268), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2784), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(1001), [sym_block_comment] = STATE(1001), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [1002] = { - [sym_function_modifiers] = STATE(3354), - [sym_removed_trait_bound] = STATE(1426), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1419), - [sym_bracketed_type] = STATE(3531), - [sym_lifetime] = STATE(3337), - [sym_array_type] = STATE(1426), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1426), - [sym_tuple_type] = STATE(1426), - [sym_unit_type] = STATE(1426), - [sym_generic_type] = STATE(1051), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1426), - [sym_reference_type] = STATE(1426), - [sym_pointer_type] = STATE(1426), - [sym_never_type] = STATE(1426), - [sym_abstract_type] = STATE(1426), - [sym_dynamic_type] = STATE(1426), - [sym_macro_invocation] = STATE(1426), - [sym_scoped_identifier] = STATE(3212), - [sym_scoped_type_identifier] = STATE(1019), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(3250), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(1002), [sym_block_comment] = STATE(1002), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_u8] = ACTIONS(3088), - [anon_sym_i8] = ACTIONS(3088), - [anon_sym_u16] = ACTIONS(3088), - [anon_sym_i16] = ACTIONS(3088), - [anon_sym_u32] = ACTIONS(3088), - [anon_sym_i32] = ACTIONS(3088), - [anon_sym_u64] = ACTIONS(3088), - [anon_sym_i64] = ACTIONS(3088), - [anon_sym_u128] = ACTIONS(3088), - [anon_sym_i128] = ACTIONS(3088), - [anon_sym_isize] = ACTIONS(3088), - [anon_sym_usize] = ACTIONS(3088), - [anon_sym_f32] = ACTIONS(3088), - [anon_sym_f64] = ACTIONS(3088), - [anon_sym_bool] = ACTIONS(3088), - [anon_sym_str] = ACTIONS(3088), - [anon_sym_char] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3094), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3096), - [anon_sym_fn] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3100), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3104), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3108), - [sym_super] = ACTIONS(3108), - [sym_crate] = ACTIONS(3108), - [sym_metavariable] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [1003] = { - [sym_function_modifiers] = STATE(3328), - [sym_removed_trait_bound] = STATE(1645), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1661), - [sym_bracketed_type] = STATE(3546), - [sym_lifetime] = STATE(3363), - [sym_array_type] = STATE(1645), - [sym_for_lifetimes] = STATE(1638), - [sym_function_type] = STATE(1645), - [sym_tuple_type] = STATE(1645), - [sym_unit_type] = STATE(1645), - [sym_generic_type] = STATE(1626), - [sym_generic_type_with_turbofish] = STATE(3538), - [sym_bounded_type] = STATE(1645), - [sym_reference_type] = STATE(1645), - [sym_pointer_type] = STATE(1645), - [sym_never_type] = STATE(1645), - [sym_abstract_type] = STATE(1645), - [sym_dynamic_type] = STATE(1645), - [sym_macro_invocation] = STATE(1645), - [sym_scoped_identifier] = STATE(3277), - [sym_scoped_type_identifier] = STATE(1526), + [sym_function_modifiers] = STATE(3502), + [sym_removed_trait_bound] = STATE(1665), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1820), + [sym_bracketed_type] = STATE(3557), + [sym_lifetime] = STATE(3404), + [sym_array_type] = STATE(1665), + [sym_for_lifetimes] = STATE(1584), + [sym_function_type] = STATE(1665), + [sym_tuple_type] = STATE(1665), + [sym_unit_type] = STATE(1665), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3549), + [sym_bounded_type] = STATE(1665), + [sym_reference_type] = STATE(1665), + [sym_pointer_type] = STATE(1665), + [sym_never_type] = STATE(1665), + [sym_abstract_type] = STATE(1665), + [sym_dynamic_type] = STATE(1665), + [sym_macro_invocation] = STATE(1665), + [sym_scoped_identifier] = STATE(3285), + [sym_scoped_type_identifier] = STATE(1536), [sym_line_comment] = STATE(1003), [sym_block_comment] = STATE(1003), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3116), - [anon_sym_STAR] = ACTIONS(3120), - [anon_sym_QMARK] = ACTIONS(3122), - [anon_sym_u8] = ACTIONS(3124), - [anon_sym_i8] = ACTIONS(3124), - [anon_sym_u16] = ACTIONS(3124), - [anon_sym_i16] = ACTIONS(3124), - [anon_sym_u32] = ACTIONS(3124), - [anon_sym_i32] = ACTIONS(3124), - [anon_sym_u64] = ACTIONS(3124), - [anon_sym_i64] = ACTIONS(3124), - [anon_sym_u128] = ACTIONS(3124), - [anon_sym_i128] = ACTIONS(3124), - [anon_sym_isize] = ACTIONS(3124), - [anon_sym_usize] = ACTIONS(3124), - [anon_sym_f32] = ACTIONS(3124), - [anon_sym_f64] = ACTIONS(3124), - [anon_sym_bool] = ACTIONS(3124), - [anon_sym_str] = ACTIONS(3124), - [anon_sym_char] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3130), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_u8] = ACTIONS(3142), + [anon_sym_i8] = ACTIONS(3142), + [anon_sym_u16] = ACTIONS(3142), + [anon_sym_i16] = ACTIONS(3142), + [anon_sym_u32] = ACTIONS(3142), + [anon_sym_i32] = ACTIONS(3142), + [anon_sym_u64] = ACTIONS(3142), + [anon_sym_i64] = ACTIONS(3142), + [anon_sym_u128] = ACTIONS(3142), + [anon_sym_i128] = ACTIONS(3142), + [anon_sym_isize] = ACTIONS(3142), + [anon_sym_usize] = ACTIONS(3142), + [anon_sym_f32] = ACTIONS(3142), + [anon_sym_f64] = ACTIONS(3142), + [anon_sym_bool] = ACTIONS(3142), + [anon_sym_str] = ACTIONS(3142), + [anon_sym_char] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_fn] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3136), - [anon_sym_union] = ACTIONS(3138), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3140), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_crate] = ACTIONS(3144), - [sym_metavariable] = ACTIONS(3146), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3154), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3158), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3162), + [sym_super] = ACTIONS(3162), + [sym_crate] = ACTIONS(3162), + [sym_metavariable] = ACTIONS(3164), }, [1004] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2219), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(1963), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1928), + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(3264), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(1004), [sym_block_comment] = STATE(1004), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [1005] = { - [sym_function_modifiers] = STATE(3354), - [sym_removed_trait_bound] = STATE(1426), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1243), - [sym_bracketed_type] = STATE(3531), - [sym_lifetime] = STATE(3337), - [sym_array_type] = STATE(1426), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1426), - [sym_tuple_type] = STATE(1426), - [sym_unit_type] = STATE(1426), - [sym_generic_type] = STATE(1051), - [sym_generic_type_with_turbofish] = STATE(3521), - [sym_bounded_type] = STATE(1426), - [sym_reference_type] = STATE(1426), - [sym_pointer_type] = STATE(1426), - [sym_never_type] = STATE(1426), - [sym_abstract_type] = STATE(1426), - [sym_dynamic_type] = STATE(1426), - [sym_macro_invocation] = STATE(1426), - [sym_scoped_identifier] = STATE(3212), - [sym_scoped_type_identifier] = STATE(1019), + [sym_function_modifiers] = STATE(3502), + [sym_removed_trait_bound] = STATE(1665), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1678), + [sym_bracketed_type] = STATE(3557), + [sym_lifetime] = STATE(3404), + [sym_array_type] = STATE(1665), + [sym_for_lifetimes] = STATE(1584), + [sym_function_type] = STATE(1665), + [sym_tuple_type] = STATE(1665), + [sym_unit_type] = STATE(1665), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3549), + [sym_bounded_type] = STATE(1665), + [sym_reference_type] = STATE(1665), + [sym_pointer_type] = STATE(1665), + [sym_never_type] = STATE(1665), + [sym_abstract_type] = STATE(1665), + [sym_dynamic_type] = STATE(1665), + [sym_macro_invocation] = STATE(1665), + [sym_scoped_identifier] = STATE(3285), + [sym_scoped_type_identifier] = STATE(1536), [sym_line_comment] = STATE(1005), [sym_block_comment] = STATE(1005), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3076), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_STAR] = ACTIONS(3084), - [anon_sym_QMARK] = ACTIONS(3086), - [anon_sym_u8] = ACTIONS(3088), - [anon_sym_i8] = ACTIONS(3088), - [anon_sym_u16] = ACTIONS(3088), - [anon_sym_i16] = ACTIONS(3088), - [anon_sym_u32] = ACTIONS(3088), - [anon_sym_i32] = ACTIONS(3088), - [anon_sym_u64] = ACTIONS(3088), - [anon_sym_i64] = ACTIONS(3088), - [anon_sym_u128] = ACTIONS(3088), - [anon_sym_i128] = ACTIONS(3088), - [anon_sym_isize] = ACTIONS(3088), - [anon_sym_usize] = ACTIONS(3088), - [anon_sym_f32] = ACTIONS(3088), - [anon_sym_f64] = ACTIONS(3088), - [anon_sym_bool] = ACTIONS(3088), - [anon_sym_str] = ACTIONS(3088), - [anon_sym_char] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3090), - [anon_sym_AMP] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3094), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_u8] = ACTIONS(3142), + [anon_sym_i8] = ACTIONS(3142), + [anon_sym_u16] = ACTIONS(3142), + [anon_sym_i16] = ACTIONS(3142), + [anon_sym_u32] = ACTIONS(3142), + [anon_sym_i32] = ACTIONS(3142), + [anon_sym_u64] = ACTIONS(3142), + [anon_sym_i64] = ACTIONS(3142), + [anon_sym_u128] = ACTIONS(3142), + [anon_sym_i128] = ACTIONS(3142), + [anon_sym_isize] = ACTIONS(3142), + [anon_sym_usize] = ACTIONS(3142), + [anon_sym_f32] = ACTIONS(3142), + [anon_sym_f64] = ACTIONS(3142), + [anon_sym_bool] = ACTIONS(3142), + [anon_sym_str] = ACTIONS(3142), + [anon_sym_char] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(3096), - [anon_sym_fn] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(3100), - [anon_sym_union] = ACTIONS(3102), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(3104), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3108), - [sym_super] = ACTIONS(3108), - [sym_crate] = ACTIONS(3108), - [sym_metavariable] = ACTIONS(3110), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3154), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3158), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3162), + [sym_super] = ACTIONS(3162), + [sym_crate] = ACTIONS(3162), + [sym_metavariable] = ACTIONS(3164), }, [1006] = { - [sym_function_modifiers] = STATE(3428), - [sym_removed_trait_bound] = STATE(1985), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2314), - [sym_bracketed_type] = STATE(3348), - [sym_lifetime] = STATE(3455), - [sym_array_type] = STATE(1985), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1985), - [sym_tuple_type] = STATE(1985), - [sym_unit_type] = STATE(1985), - [sym_generic_type] = STATE(2316), - [sym_generic_type_with_turbofish] = STATE(3477), - [sym_bounded_type] = STATE(1985), - [sym_reference_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_never_type] = STATE(1985), - [sym_abstract_type] = STATE(1985), - [sym_dynamic_type] = STATE(1985), - [sym_macro_invocation] = STATE(1985), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(2158), + [sym_function_modifiers] = STATE(3502), + [sym_removed_trait_bound] = STATE(1665), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1679), + [sym_bracketed_type] = STATE(3557), + [sym_lifetime] = STATE(3404), + [sym_array_type] = STATE(1665), + [sym_for_lifetimes] = STATE(1584), + [sym_function_type] = STATE(1665), + [sym_tuple_type] = STATE(1665), + [sym_unit_type] = STATE(1665), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3549), + [sym_bounded_type] = STATE(1665), + [sym_reference_type] = STATE(1665), + [sym_pointer_type] = STATE(1665), + [sym_never_type] = STATE(1665), + [sym_abstract_type] = STATE(1665), + [sym_dynamic_type] = STATE(1665), + [sym_macro_invocation] = STATE(1665), + [sym_scoped_identifier] = STATE(3285), + [sym_scoped_type_identifier] = STATE(1536), [sym_line_comment] = STATE(1006), [sym_block_comment] = STATE(1006), - [aux_sym_function_modifiers_repeat1] = STATE(2222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(1585), - [anon_sym_LBRACK] = ACTIONS(1587), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1371), - [anon_sym_u8] = ACTIONS(1591), - [anon_sym_i8] = ACTIONS(1591), - [anon_sym_u16] = ACTIONS(1591), - [anon_sym_i16] = ACTIONS(1591), - [anon_sym_u32] = ACTIONS(1591), - [anon_sym_i32] = ACTIONS(1591), - [anon_sym_u64] = ACTIONS(1591), - [anon_sym_i64] = ACTIONS(1591), - [anon_sym_u128] = ACTIONS(1591), - [anon_sym_i128] = ACTIONS(1591), - [anon_sym_isize] = ACTIONS(1591), - [anon_sym_usize] = ACTIONS(1591), - [anon_sym_f32] = ACTIONS(1591), - [anon_sym_f64] = ACTIONS(1591), - [anon_sym_bool] = ACTIONS(1591), - [anon_sym_str] = ACTIONS(1591), - [anon_sym_char] = ACTIONS(1591), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_AMP] = ACTIONS(1593), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1597), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_u8] = ACTIONS(3142), + [anon_sym_i8] = ACTIONS(3142), + [anon_sym_u16] = ACTIONS(3142), + [anon_sym_i16] = ACTIONS(3142), + [anon_sym_u32] = ACTIONS(3142), + [anon_sym_i32] = ACTIONS(3142), + [anon_sym_u64] = ACTIONS(3142), + [anon_sym_i64] = ACTIONS(3142), + [anon_sym_u128] = ACTIONS(3142), + [anon_sym_i128] = ACTIONS(3142), + [anon_sym_isize] = ACTIONS(3142), + [anon_sym_usize] = ACTIONS(3142), + [anon_sym_f32] = ACTIONS(3142), + [anon_sym_f64] = ACTIONS(3142), + [anon_sym_bool] = ACTIONS(3142), + [anon_sym_str] = ACTIONS(3142), + [anon_sym_char] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3148), [anon_sym_SQUOTE] = ACTIONS(2994), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1601), - [anon_sym_fn] = ACTIONS(1403), - [anon_sym_for] = ACTIONS(1405), - [anon_sym_impl] = ACTIONS(1407), - [anon_sym_union] = ACTIONS(1603), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1411), - [anon_sym_dyn] = ACTIONS(1415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1607), - [sym_super] = ACTIONS(1607), - [sym_crate] = ACTIONS(1607), - [sym_metavariable] = ACTIONS(1609), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3154), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3158), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3162), + [sym_super] = ACTIONS(3162), + [sym_crate] = ACTIONS(3162), + [sym_metavariable] = ACTIONS(3164), }, [1007] = { + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(2685), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(3484), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(1007), [sym_block_comment] = STATE(1007), - [sym_identifier] = ACTIONS(3228), - [anon_sym_LPAREN] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3230), - [anon_sym_RBRACK] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(3230), - [anon_sym_STAR] = ACTIONS(3230), - [anon_sym_u8] = ACTIONS(3228), - [anon_sym_i8] = ACTIONS(3228), - [anon_sym_u16] = ACTIONS(3228), - [anon_sym_i16] = ACTIONS(3228), - [anon_sym_u32] = ACTIONS(3228), - [anon_sym_i32] = ACTIONS(3228), - [anon_sym_u64] = ACTIONS(3228), - [anon_sym_i64] = ACTIONS(3228), - [anon_sym_u128] = ACTIONS(3228), - [anon_sym_i128] = ACTIONS(3228), - [anon_sym_isize] = ACTIONS(3228), - [anon_sym_usize] = ACTIONS(3228), - [anon_sym_f32] = ACTIONS(3228), - [anon_sym_f64] = ACTIONS(3228), - [anon_sym_bool] = ACTIONS(3228), - [anon_sym_str] = ACTIONS(3228), - [anon_sym_char] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_AMP] = ACTIONS(3230), - [anon_sym_PIPE] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_DOT_DOT] = ACTIONS(3230), - [anon_sym_COMMA] = ACTIONS(3230), - [anon_sym_COLON_COLON] = ACTIONS(3230), - [anon_sym_POUND] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_async] = ACTIONS(3228), - [anon_sym_break] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_continue] = ACTIONS(3228), - [anon_sym_default] = ACTIONS(3228), - [anon_sym_for] = ACTIONS(3228), - [anon_sym_gen] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3228), - [anon_sym_loop] = ACTIONS(3228), - [anon_sym_match] = ACTIONS(3228), - [anon_sym_return] = ACTIONS(3228), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_union] = ACTIONS(3228), - [anon_sym_unsafe] = ACTIONS(3228), - [anon_sym_while] = ACTIONS(3228), - [anon_sym_yield] = ACTIONS(3228), - [anon_sym_move] = ACTIONS(3228), - [anon_sym_try] = ACTIONS(3228), - [sym_integer_literal] = ACTIONS(3230), - [aux_sym_string_literal_token1] = ACTIONS(3230), - [sym_char_literal] = ACTIONS(3230), - [anon_sym_true] = ACTIONS(3228), - [anon_sym_false] = ACTIONS(3228), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3228), - [sym_super] = ACTIONS(3228), - [sym_crate] = ACTIONS(3228), - [sym_metavariable] = ACTIONS(3230), - [sym__raw_string_literal_start] = ACTIONS(3230), - [sym_float_literal] = ACTIONS(3230), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [1008] = { + [sym_function_modifiers] = STATE(3412), + [sym_removed_trait_bound] = STATE(2008), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1998), + [sym_bracketed_type] = STATE(3358), + [sym_lifetime] = STATE(2010), + [sym_array_type] = STATE(2008), + [sym_for_lifetimes] = STATE(1590), + [sym_function_type] = STATE(2008), + [sym_tuple_type] = STATE(2008), + [sym_unit_type] = STATE(2008), + [sym_generic_type] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3390), + [sym_bounded_type] = STATE(2008), + [sym_reference_type] = STATE(2008), + [sym_pointer_type] = STATE(2008), + [sym_never_type] = STATE(2008), + [sym_abstract_type] = STATE(2008), + [sym_dynamic_type] = STATE(2008), + [sym_macro_invocation] = STATE(2008), + [sym_scoped_identifier] = STATE(3160), + [sym_scoped_type_identifier] = STATE(1927), [sym_line_comment] = STATE(1008), [sym_block_comment] = STATE(1008), - [sym_identifier] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1577), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_STAR] = ACTIONS(1577), - [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_DASH] = ACTIONS(1575), - [anon_sym_BANG] = ACTIONS(1577), - [anon_sym_AMP] = ACTIONS(1577), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym__] = ACTIONS(1575), - [anon_sym_DOT_DOT] = ACTIONS(1577), - [anon_sym_COLON_COLON] = ACTIONS(1577), - [anon_sym_DASH_GT] = ACTIONS(1577), - [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_for] = ACTIONS(1575), - [anon_sym_gen] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_loop] = ACTIONS(1575), - [anon_sym_match] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_static] = ACTIONS(1575), - [anon_sym_union] = ACTIONS(1575), - [anon_sym_unsafe] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_yield] = ACTIONS(1575), - [anon_sym_move] = ACTIONS(1575), - [anon_sym_try] = ACTIONS(1575), - [sym_integer_literal] = ACTIONS(1577), - [aux_sym_string_literal_token1] = ACTIONS(1577), - [sym_char_literal] = ACTIONS(1577), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1575), - [sym_super] = ACTIONS(1575), - [sym_crate] = ACTIONS(1575), - [sym_metavariable] = ACTIONS(1577), - [sym__raw_string_literal_start] = ACTIONS(1577), - [sym_float_literal] = ACTIONS(1577), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(2986), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), + [anon_sym_STAR] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1379), + [anon_sym_u8] = ACTIONS(1599), + [anon_sym_i8] = ACTIONS(1599), + [anon_sym_u16] = ACTIONS(1599), + [anon_sym_i16] = ACTIONS(1599), + [anon_sym_u32] = ACTIONS(1599), + [anon_sym_i32] = ACTIONS(1599), + [anon_sym_u64] = ACTIONS(1599), + [anon_sym_i64] = ACTIONS(1599), + [anon_sym_u128] = ACTIONS(1599), + [anon_sym_i128] = ACTIONS(1599), + [anon_sym_isize] = ACTIONS(1599), + [anon_sym_usize] = ACTIONS(1599), + [anon_sym_f32] = ACTIONS(1599), + [anon_sym_f64] = ACTIONS(1599), + [anon_sym_bool] = ACTIONS(1599), + [anon_sym_str] = ACTIONS(1599), + [anon_sym_char] = ACTIONS(1599), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1601), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1605), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1609), + [anon_sym_fn] = ACTIONS(1411), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(1415), + [anon_sym_union] = ACTIONS(1611), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(1423), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1615), + [sym_super] = ACTIONS(1615), + [sym_crate] = ACTIONS(1615), + [sym_metavariable] = ACTIONS(1617), }, [1009] = { + [sym_function_modifiers] = STATE(3363), + [sym_removed_trait_bound] = STATE(1469), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1159), + [sym_bracketed_type] = STATE(3542), + [sym_lifetime] = STATE(3339), + [sym_array_type] = STATE(1469), + [sym_for_lifetimes] = STATE(1611), + [sym_function_type] = STATE(1469), + [sym_tuple_type] = STATE(1469), + [sym_unit_type] = STATE(1469), + [sym_generic_type] = STATE(1094), + [sym_generic_type_with_turbofish] = STATE(3533), + [sym_bounded_type] = STATE(1469), + [sym_reference_type] = STATE(1469), + [sym_pointer_type] = STATE(1469), + [sym_never_type] = STATE(1469), + [sym_abstract_type] = STATE(1469), + [sym_dynamic_type] = STATE(1469), + [sym_macro_invocation] = STATE(1469), + [sym_scoped_identifier] = STATE(3219), + [sym_scoped_type_identifier] = STATE(1032), [sym_line_comment] = STATE(1009), [sym_block_comment] = STATE(1009), - [sym_identifier] = ACTIONS(3232), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_STAR] = ACTIONS(3234), - [anon_sym_u8] = ACTIONS(3232), - [anon_sym_i8] = ACTIONS(3232), - [anon_sym_u16] = ACTIONS(3232), - [anon_sym_i16] = ACTIONS(3232), - [anon_sym_u32] = ACTIONS(3232), - [anon_sym_i32] = ACTIONS(3232), - [anon_sym_u64] = ACTIONS(3232), - [anon_sym_i64] = ACTIONS(3232), - [anon_sym_u128] = ACTIONS(3232), - [anon_sym_i128] = ACTIONS(3232), - [anon_sym_isize] = ACTIONS(3232), - [anon_sym_usize] = ACTIONS(3232), - [anon_sym_f32] = ACTIONS(3232), - [anon_sym_f64] = ACTIONS(3232), - [anon_sym_bool] = ACTIONS(3232), - [anon_sym_str] = ACTIONS(3232), - [anon_sym_char] = ACTIONS(3232), - [anon_sym_DASH] = ACTIONS(3232), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_AMP] = ACTIONS(3234), - [anon_sym_PIPE] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3234), - [anon_sym__] = ACTIONS(3232), - [anon_sym_DOT_DOT] = ACTIONS(3234), - [anon_sym_COLON_COLON] = ACTIONS(3234), - [anon_sym_DASH_GT] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3232), - [anon_sym_async] = ACTIONS(3232), - [anon_sym_break] = ACTIONS(3232), - [anon_sym_const] = ACTIONS(3232), - [anon_sym_continue] = ACTIONS(3232), - [anon_sym_default] = ACTIONS(3232), - [anon_sym_for] = ACTIONS(3232), - [anon_sym_gen] = ACTIONS(3232), - [anon_sym_if] = ACTIONS(3232), - [anon_sym_loop] = ACTIONS(3232), - [anon_sym_match] = ACTIONS(3232), - [anon_sym_return] = ACTIONS(3232), - [anon_sym_static] = ACTIONS(3232), - [anon_sym_union] = ACTIONS(3232), - [anon_sym_unsafe] = ACTIONS(3232), - [anon_sym_while] = ACTIONS(3232), - [anon_sym_yield] = ACTIONS(3232), - [anon_sym_move] = ACTIONS(3232), - [anon_sym_try] = ACTIONS(3232), - [sym_integer_literal] = ACTIONS(3234), - [aux_sym_string_literal_token1] = ACTIONS(3234), - [sym_char_literal] = ACTIONS(3234), - [anon_sym_true] = ACTIONS(3232), - [anon_sym_false] = ACTIONS(3232), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_crate] = ACTIONS(3232), - [sym_metavariable] = ACTIONS(3234), - [sym__raw_string_literal_start] = ACTIONS(3234), - [sym_float_literal] = ACTIONS(3234), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_QMARK] = ACTIONS(3104), + [anon_sym_u8] = ACTIONS(3106), + [anon_sym_i8] = ACTIONS(3106), + [anon_sym_u16] = ACTIONS(3106), + [anon_sym_i16] = ACTIONS(3106), + [anon_sym_u32] = ACTIONS(3106), + [anon_sym_i32] = ACTIONS(3106), + [anon_sym_u64] = ACTIONS(3106), + [anon_sym_i64] = ACTIONS(3106), + [anon_sym_u128] = ACTIONS(3106), + [anon_sym_i128] = ACTIONS(3106), + [anon_sym_isize] = ACTIONS(3106), + [anon_sym_usize] = ACTIONS(3106), + [anon_sym_f32] = ACTIONS(3106), + [anon_sym_f64] = ACTIONS(3106), + [anon_sym_bool] = ACTIONS(3106), + [anon_sym_str] = ACTIONS(3106), + [anon_sym_char] = ACTIONS(3106), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3112), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3114), + [anon_sym_fn] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3120), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3122), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_crate] = ACTIONS(3126), + [sym_metavariable] = ACTIONS(3128), + }, + [1010] = { + [sym_function_modifiers] = STATE(3502), + [sym_removed_trait_bound] = STATE(1665), + [sym_extern_modifier] = STATE(2306), + [sym__type] = STATE(1789), + [sym_bracketed_type] = STATE(3557), + [sym_lifetime] = STATE(3404), + [sym_array_type] = STATE(1665), + [sym_for_lifetimes] = STATE(1584), + [sym_function_type] = STATE(1665), + [sym_tuple_type] = STATE(1665), + [sym_unit_type] = STATE(1665), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3549), + [sym_bounded_type] = STATE(1665), + [sym_reference_type] = STATE(1665), + [sym_pointer_type] = STATE(1665), + [sym_never_type] = STATE(1665), + [sym_abstract_type] = STATE(1665), + [sym_dynamic_type] = STATE(1665), + [sym_macro_invocation] = STATE(1665), + [sym_scoped_identifier] = STATE(3285), + [sym_scoped_type_identifier] = STATE(1536), + [sym_line_comment] = STATE(1010), + [sym_block_comment] = STATE(1010), + [aux_sym_function_modifiers_repeat1] = STATE(2233), + [sym_identifier] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3138), + [anon_sym_QMARK] = ACTIONS(3140), + [anon_sym_u8] = ACTIONS(3142), + [anon_sym_i8] = ACTIONS(3142), + [anon_sym_u16] = ACTIONS(3142), + [anon_sym_i16] = ACTIONS(3142), + [anon_sym_u32] = ACTIONS(3142), + [anon_sym_i32] = ACTIONS(3142), + [anon_sym_u64] = ACTIONS(3142), + [anon_sym_i64] = ACTIONS(3142), + [anon_sym_u128] = ACTIONS(3142), + [anon_sym_i128] = ACTIONS(3142), + [anon_sym_isize] = ACTIONS(3142), + [anon_sym_usize] = ACTIONS(3142), + [anon_sym_f32] = ACTIONS(3142), + [anon_sym_f64] = ACTIONS(3142), + [anon_sym_bool] = ACTIONS(3142), + [anon_sym_str] = ACTIONS(3142), + [anon_sym_char] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_fn] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(1413), + [anon_sym_impl] = ACTIONS(3154), + [anon_sym_union] = ACTIONS(3156), + [anon_sym_unsafe] = ACTIONS(1405), + [anon_sym_extern] = ACTIONS(1419), + [anon_sym_dyn] = ACTIONS(3158), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3162), + [sym_super] = ACTIONS(3162), + [sym_crate] = ACTIONS(3162), + [sym_metavariable] = ACTIONS(3164), + }, + [1011] = { + [sym_line_comment] = STATE(1011), + [sym_block_comment] = STATE(1011), + [sym_identifier] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_RBRACK] = ACTIONS(3238), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_u8] = ACTIONS(3236), + [anon_sym_i8] = ACTIONS(3236), + [anon_sym_u16] = ACTIONS(3236), + [anon_sym_i16] = ACTIONS(3236), + [anon_sym_u32] = ACTIONS(3236), + [anon_sym_i32] = ACTIONS(3236), + [anon_sym_u64] = ACTIONS(3236), + [anon_sym_i64] = ACTIONS(3236), + [anon_sym_u128] = ACTIONS(3236), + [anon_sym_i128] = ACTIONS(3236), + [anon_sym_isize] = ACTIONS(3236), + [anon_sym_usize] = ACTIONS(3236), + [anon_sym_f32] = ACTIONS(3236), + [anon_sym_f64] = ACTIONS(3236), + [anon_sym_bool] = ACTIONS(3236), + [anon_sym_str] = ACTIONS(3236), + [anon_sym_char] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym_PIPE] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3238), + [anon_sym_DOT_DOT] = ACTIONS(3238), + [anon_sym_COMMA] = ACTIONS(3238), + [anon_sym_COLON_COLON] = ACTIONS(3238), + [anon_sym_POUND] = ACTIONS(3238), + [anon_sym_SQUOTE] = ACTIONS(3236), + [anon_sym_async] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_const] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_default] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(3236), + [anon_sym_gen] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_loop] = ACTIONS(3236), + [anon_sym_match] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_static] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3236), + [anon_sym_unsafe] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_yield] = ACTIONS(3236), + [anon_sym_move] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [sym_integer_literal] = ACTIONS(3238), + [aux_sym_string_literal_token1] = ACTIONS(3238), + [sym_char_literal] = ACTIONS(3238), + [anon_sym_true] = ACTIONS(3236), + [anon_sym_false] = ACTIONS(3236), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_crate] = ACTIONS(3236), + [sym_metavariable] = ACTIONS(3238), + [sym__raw_string_literal_start] = ACTIONS(3238), + [sym_float_literal] = ACTIONS(3238), + }, + [1012] = { + [sym_line_comment] = STATE(1012), + [sym_block_comment] = STATE(1012), + [sym_identifier] = ACTIONS(3240), + [anon_sym_LPAREN] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3242), + [anon_sym_STAR] = ACTIONS(3242), + [anon_sym_u8] = ACTIONS(3240), + [anon_sym_i8] = ACTIONS(3240), + [anon_sym_u16] = ACTIONS(3240), + [anon_sym_i16] = ACTIONS(3240), + [anon_sym_u32] = ACTIONS(3240), + [anon_sym_i32] = ACTIONS(3240), + [anon_sym_u64] = ACTIONS(3240), + [anon_sym_i64] = ACTIONS(3240), + [anon_sym_u128] = ACTIONS(3240), + [anon_sym_i128] = ACTIONS(3240), + [anon_sym_isize] = ACTIONS(3240), + [anon_sym_usize] = ACTIONS(3240), + [anon_sym_f32] = ACTIONS(3240), + [anon_sym_f64] = ACTIONS(3240), + [anon_sym_bool] = ACTIONS(3240), + [anon_sym_str] = ACTIONS(3240), + [anon_sym_char] = ACTIONS(3240), + [anon_sym_DASH] = ACTIONS(3240), + [anon_sym_BANG] = ACTIONS(3242), + [anon_sym_AMP] = ACTIONS(3242), + [anon_sym_PIPE] = ACTIONS(3242), + [anon_sym_LT] = ACTIONS(3242), + [anon_sym__] = ACTIONS(3240), + [anon_sym_DOT_DOT] = ACTIONS(3242), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_DASH_GT] = ACTIONS(3242), + [anon_sym_SQUOTE] = ACTIONS(3240), + [anon_sym_async] = ACTIONS(3240), + [anon_sym_break] = ACTIONS(3240), + [anon_sym_const] = ACTIONS(3240), + [anon_sym_continue] = ACTIONS(3240), + [anon_sym_default] = ACTIONS(3240), + [anon_sym_for] = ACTIONS(3240), + [anon_sym_gen] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3240), + [anon_sym_loop] = ACTIONS(3240), + [anon_sym_match] = ACTIONS(3240), + [anon_sym_return] = ACTIONS(3240), + [anon_sym_static] = ACTIONS(3240), + [anon_sym_union] = ACTIONS(3240), + [anon_sym_unsafe] = ACTIONS(3240), + [anon_sym_while] = ACTIONS(3240), + [anon_sym_yield] = ACTIONS(3240), + [anon_sym_move] = ACTIONS(3240), + [anon_sym_try] = ACTIONS(3240), + [sym_integer_literal] = ACTIONS(3242), + [aux_sym_string_literal_token1] = ACTIONS(3242), + [sym_char_literal] = ACTIONS(3242), + [anon_sym_true] = ACTIONS(3240), + [anon_sym_false] = ACTIONS(3240), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3240), + [sym_super] = ACTIONS(3240), + [sym_crate] = ACTIONS(3240), + [sym_metavariable] = ACTIONS(3242), + [sym__raw_string_literal_start] = ACTIONS(3242), + [sym_float_literal] = ACTIONS(3242), + }, + [1013] = { + [sym_line_comment] = STATE(1013), + [sym_block_comment] = STATE(1013), + [sym_identifier] = ACTIONS(1583), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_LBRACK] = ACTIONS(1585), + [anon_sym_LBRACE] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1585), + [anon_sym_u8] = ACTIONS(1583), + [anon_sym_i8] = ACTIONS(1583), + [anon_sym_u16] = ACTIONS(1583), + [anon_sym_i16] = ACTIONS(1583), + [anon_sym_u32] = ACTIONS(1583), + [anon_sym_i32] = ACTIONS(1583), + [anon_sym_u64] = ACTIONS(1583), + [anon_sym_i64] = ACTIONS(1583), + [anon_sym_u128] = ACTIONS(1583), + [anon_sym_i128] = ACTIONS(1583), + [anon_sym_isize] = ACTIONS(1583), + [anon_sym_usize] = ACTIONS(1583), + [anon_sym_f32] = ACTIONS(1583), + [anon_sym_f64] = ACTIONS(1583), + [anon_sym_bool] = ACTIONS(1583), + [anon_sym_str] = ACTIONS(1583), + [anon_sym_char] = ACTIONS(1583), + [anon_sym_DASH] = ACTIONS(1583), + [anon_sym_BANG] = ACTIONS(1585), + [anon_sym_AMP] = ACTIONS(1585), + [anon_sym_PIPE] = ACTIONS(1585), + [anon_sym_LT] = ACTIONS(1585), + [anon_sym__] = ACTIONS(1583), + [anon_sym_DOT_DOT] = ACTIONS(1585), + [anon_sym_COLON_COLON] = ACTIONS(1585), + [anon_sym_DASH_GT] = ACTIONS(1585), + [anon_sym_SQUOTE] = ACTIONS(1583), + [anon_sym_async] = ACTIONS(1583), + [anon_sym_break] = ACTIONS(1583), + [anon_sym_const] = ACTIONS(1583), + [anon_sym_continue] = ACTIONS(1583), + [anon_sym_default] = ACTIONS(1583), + [anon_sym_for] = ACTIONS(1583), + [anon_sym_gen] = ACTIONS(1583), + [anon_sym_if] = ACTIONS(1583), + [anon_sym_loop] = ACTIONS(1583), + [anon_sym_match] = ACTIONS(1583), + [anon_sym_return] = ACTIONS(1583), + [anon_sym_static] = ACTIONS(1583), + [anon_sym_union] = ACTIONS(1583), + [anon_sym_unsafe] = ACTIONS(1583), + [anon_sym_while] = ACTIONS(1583), + [anon_sym_yield] = ACTIONS(1583), + [anon_sym_move] = ACTIONS(1583), + [anon_sym_try] = ACTIONS(1583), + [sym_integer_literal] = ACTIONS(1585), + [aux_sym_string_literal_token1] = ACTIONS(1585), + [sym_char_literal] = ACTIONS(1585), + [anon_sym_true] = ACTIONS(1583), + [anon_sym_false] = ACTIONS(1583), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1583), + [sym_super] = ACTIONS(1583), + [sym_crate] = ACTIONS(1583), + [sym_metavariable] = ACTIONS(1585), + [sym__raw_string_literal_start] = ACTIONS(1585), + [sym_float_literal] = ACTIONS(1585), }, }; @@ -109897,10 +110387,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1010), 2, + STATE(1014), 2, sym_line_comment, sym_block_comment, - ACTIONS(1085), 18, + ACTIONS(1093), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -109919,7 +110409,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3236), 42, + ACTIONS(3244), 42, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109967,10 +110457,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1011), 2, + STATE(1015), 2, sym_line_comment, sym_block_comment, - ACTIONS(2143), 17, + ACTIONS(2039), 17, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -109988,7 +110478,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2145), 38, + ACTIONS(2041), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110032,10 +110522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1012), 2, + STATE(1016), 2, sym_line_comment, sym_block_comment, - ACTIONS(3240), 20, + ACTIONS(3248), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110056,7 +110546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3238), 34, + ACTIONS(3246), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110098,50 +110588,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1375), 1, + ACTIONS(1383), 1, anon_sym_DASH, - ACTIONS(1421), 1, + ACTIONS(1429), 1, aux_sym_string_literal_token1, - ACTIONS(1431), 1, + ACTIONS(1439), 1, sym__raw_string_literal_start, - ACTIONS(2898), 1, + ACTIONS(2757), 1, anon_sym_COLON_COLON, - ACTIONS(3242), 1, + ACTIONS(3250), 1, sym_identifier, - ACTIONS(3252), 1, + ACTIONS(3260), 1, sym_metavariable, - STATE(2067), 1, + STATE(2049), 1, sym_scoped_identifier, - STATE(2123), 1, + STATE(2118), 1, sym__literal_pattern, - STATE(3340), 1, + STATE(3350), 1, sym_bracketed_type, - STATE(3366), 1, + STATE(3375), 1, sym_generic_type_with_turbofish, - ACTIONS(1423), 2, + ACTIONS(1431), 2, anon_sym_true, anon_sym_false, - STATE(1013), 2, + STATE(1017), 2, sym_line_comment, sym_block_comment, - ACTIONS(1419), 3, + ACTIONS(1427), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3246), 3, + ACTIONS(3254), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3250), 3, + ACTIONS(3258), 3, sym_self, sym_super, sym_crate, - STATE(2016), 4, + STATE(2031), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3244), 7, + ACTIONS(3252), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -110149,7 +110639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3248), 19, + ACTIONS(3256), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110176,50 +110666,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1375), 1, + ACTIONS(1383), 1, anon_sym_DASH, - ACTIONS(1421), 1, + ACTIONS(1429), 1, aux_sym_string_literal_token1, - ACTIONS(1431), 1, + ACTIONS(1439), 1, sym__raw_string_literal_start, - ACTIONS(2898), 1, + ACTIONS(2757), 1, anon_sym_COLON_COLON, - ACTIONS(3254), 1, + ACTIONS(3262), 1, sym_identifier, - ACTIONS(3264), 1, + ACTIONS(3272), 1, sym_metavariable, - STATE(2046), 1, + STATE(2070), 1, sym_scoped_identifier, - STATE(2112), 1, + STATE(2140), 1, sym__literal_pattern, - STATE(3340), 1, + STATE(3350), 1, sym_bracketed_type, - STATE(3366), 1, + STATE(3375), 1, sym_generic_type_with_turbofish, - ACTIONS(1423), 2, + ACTIONS(1431), 2, anon_sym_true, anon_sym_false, - STATE(1014), 2, + STATE(1018), 2, sym_line_comment, sym_block_comment, - ACTIONS(1419), 3, + ACTIONS(1427), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3258), 3, + ACTIONS(3266), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3262), 3, + ACTIONS(3270), 3, sym_self, sym_super, sym_crate, - STATE(2016), 4, + STATE(2031), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3256), 7, + ACTIONS(3264), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -110227,7 +110717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3260), 19, + ACTIONS(3268), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110252,276 +110742,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3268), 1, - anon_sym_LPAREN, - ACTIONS(3272), 1, - anon_sym_BANG, - ACTIONS(3274), 1, - anon_sym_COLON_COLON, - ACTIONS(3276), 1, - anon_sym_LT2, - STATE(1054), 1, - sym_type_arguments, - STATE(1061), 1, - sym_parameters, - STATE(1015), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3270), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3266), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [489] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3268), 1, - anon_sym_LPAREN, ACTIONS(3276), 1, - anon_sym_LT2, - ACTIONS(3282), 1, - anon_sym_COLON_COLON, - STATE(1054), 1, - sym_type_arguments, - STATE(1061), 1, - sym_parameters, - STATE(1016), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3280), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3278), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [563] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3268), 1, anon_sym_LPAREN, - ACTIONS(3276), 1, - anon_sym_LT2, + ACTIONS(3280), 1, + anon_sym_BANG, ACTIONS(3282), 1, anon_sym_COLON_COLON, - STATE(1054), 1, - sym_type_arguments, - STATE(1061), 1, - sym_parameters, - STATE(1017), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3286), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3284), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [637] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3268), 1, - anon_sym_LPAREN, - ACTIONS(3276), 1, + ACTIONS(3284), 1, anon_sym_LT2, - ACTIONS(3282), 1, - anon_sym_COLON_COLON, - STATE(1054), 1, - sym_type_arguments, - STATE(1061), 1, + STATE(1060), 1, sym_parameters, - STATE(1018), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3290), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3288), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [711] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3268), 1, - anon_sym_LPAREN, - ACTIONS(3276), 1, - anon_sym_LT2, - STATE(1055), 1, + STATE(1072), 1, sym_type_arguments, - STATE(1062), 1, - sym_parameters, STATE(1019), 2, sym_line_comment, sym_block_comment, - ACTIONS(3294), 17, + ACTIONS(3278), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110539,7 +110775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3292), 27, + ACTIONS(3274), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -110555,147 +110791,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [782] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1020), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1257), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1259), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [845] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1021), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1047), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1045), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [908] = 7, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [489] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3300), 1, - anon_sym_BANG, - ACTIONS(3302), 1, + ACTIONS(3276), 1, + anon_sym_LPAREN, + ACTIONS(3284), 1, + anon_sym_LT2, + ACTIONS(3290), 1, anon_sym_COLON_COLON, - STATE(1022), 2, + STATE(1060), 1, + sym_parameters, + STATE(1072), 1, + sym_type_arguments, + STATE(1020), 2, sym_line_comment, sym_block_comment, - ACTIONS(3298), 17, + ACTIONS(3288), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110713,9 +110839,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3296), 29, + ACTIONS(3286), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -110742,24 +110867,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [975] = 9, + [563] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3268), 1, - anon_sym_LPAREN, ACTIONS(3276), 1, + anon_sym_LPAREN, + ACTIONS(3284), 1, anon_sym_LT2, - STATE(1055), 1, - sym_type_arguments, - STATE(1062), 1, + ACTIONS(3290), 1, + anon_sym_COLON_COLON, + STATE(1060), 1, sym_parameters, - STATE(1023), 2, + STATE(1072), 1, + sym_type_arguments, + STATE(1021), 2, sym_line_comment, sym_block_comment, - ACTIONS(3306), 17, + ACTIONS(3294), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110777,7 +110903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3304), 27, + ACTIONS(3292), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -110805,77 +110931,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1046] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1024), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1341), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1343), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1109] = 7, + [637] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3312), 1, - anon_sym_BANG, - ACTIONS(3314), 1, + ACTIONS(3276), 1, + anon_sym_LPAREN, + ACTIONS(3284), 1, + anon_sym_LT2, + ACTIONS(3290), 1, anon_sym_COLON_COLON, - STATE(1025), 2, + STATE(1060), 1, + sym_parameters, + STATE(1072), 1, + sym_type_arguments, + STATE(1022), 2, sym_line_comment, sym_block_comment, - ACTIONS(3310), 17, + ACTIONS(3298), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110893,9 +110967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3308), 29, + ACTIONS(3296), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -110922,16 +110995,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [1176] = 5, + [711] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1026), 2, + STATE(1023), 2, sym_line_comment, sym_block_comment, - ACTIONS(1253), 9, + ACTIONS(1365), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -110941,7 +111013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1255), 39, + ACTIONS(1367), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110981,15 +111053,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1239] = 5, + [774] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1027), 2, + STATE(1024), 2, sym_line_comment, sym_block_comment, - ACTIONS(1245), 9, + ACTIONS(1253), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -110999,7 +111071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1247), 39, + ACTIONS(1255), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111039,19 +111111,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1302] = 7, + [837] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3320), 1, + ACTIONS(3304), 1, anon_sym_BANG, - ACTIONS(3322), 1, + ACTIONS(3306), 1, anon_sym_COLON_COLON, - STATE(1028), 2, + STATE(1025), 2, sym_line_comment, sym_block_comment, - ACTIONS(3318), 17, + ACTIONS(3302), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111069,7 +111141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3316), 29, + ACTIONS(3300), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111099,81 +111171,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [1369] = 5, + [904] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1029), 2, + ACTIONS(3312), 1, + anon_sym_BANG, + ACTIONS(3314), 1, + anon_sym_COLON_COLON, + STATE(1026), 2, sym_line_comment, sym_block_comment, - ACTIONS(1035), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(3310), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1033), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1432] = 9, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3308), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_LT2, + [971] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3268), 1, - anon_sym_LPAREN, ACTIONS(3276), 1, + anon_sym_LPAREN, + ACTIONS(3284), 1, anon_sym_LT2, - STATE(1055), 1, + STATE(1053), 1, sym_type_arguments, - STATE(1062), 1, + STATE(1061), 1, sym_parameters, - STATE(1030), 2, + STATE(1027), 2, sym_line_comment, sym_block_comment, - ACTIONS(3326), 17, + ACTIONS(3318), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111191,7 +111265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3324), 27, + ACTIONS(3316), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -111219,23 +111293,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1503] = 9, + [1042] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3268), 1, - anon_sym_LPAREN, ACTIONS(3276), 1, + anon_sym_LPAREN, + ACTIONS(3284), 1, anon_sym_LT2, - STATE(1055), 1, + STATE(1053), 1, sym_type_arguments, - STATE(1062), 1, + STATE(1061), 1, sym_parameters, - STATE(1031), 2, + STATE(1028), 2, sym_line_comment, sym_block_comment, - ACTIONS(3330), 17, + ACTIONS(3322), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111253,7 +111327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3328), 27, + ACTIONS(3320), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -111281,15 +111355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1574] = 5, + [1113] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1032), 2, + STATE(1029), 2, sym_line_comment, sym_block_comment, - ACTIONS(1317), 9, + ACTIONS(1261), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -111299,7 +111373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1319), 39, + ACTIONS(1263), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111339,19 +111413,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1637] = 7, + [1176] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3336), 1, + ACTIONS(3328), 1, anon_sym_BANG, - ACTIONS(3338), 1, + ACTIONS(3330), 1, anon_sym_COLON_COLON, - STATE(1033), 2, + STATE(1030), 2, sym_line_comment, sym_block_comment, - ACTIONS(3334), 17, + ACTIONS(3326), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111369,7 +111443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3332), 29, + ACTIONS(3324), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111399,15 +111473,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [1704] = 5, + [1243] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1034), 2, + STATE(1031), 2, sym_line_comment, sym_block_comment, - ACTIONS(1249), 9, + ACTIONS(1293), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -111417,7 +111491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1251), 39, + ACTIONS(1295), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111457,83 +111531,87 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1767] = 5, + [1306] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1035), 2, + ACTIONS(3276), 1, + anon_sym_LPAREN, + ACTIONS(3284), 1, + anon_sym_LT2, + STATE(1053), 1, + sym_type_arguments, + STATE(1061), 1, + sym_parameters, + STATE(1032), 2, sym_line_comment, sym_block_comment, - ACTIONS(1261), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(3334), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1263), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1830] = 5, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3332), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [1377] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1036), 2, + STATE(1033), 2, sym_line_comment, sym_block_comment, - ACTIONS(1803), 9, + ACTIONS(1043), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1805), 38, + ACTIONS(1041), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111556,6 +111634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -111572,84 +111651,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1892] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3344), 1, - anon_sym_POUND, - STATE(1486), 2, - sym_attribute_item, - sym_inner_attribute_item, - STATE(1037), 3, - sym_line_comment, - sym_block_comment, - aux_sym_match_arm_repeat1, - ACTIONS(3342), 14, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3340), 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__, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1958] = 5, + [1440] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1038), 2, + STATE(1034), 2, sym_line_comment, sym_block_comment, - ACTIONS(2223), 9, + ACTIONS(1269), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2225), 38, + ACTIONS(1271), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111672,6 +111692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -111688,32 +111709,37 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2020] = 5, + [1503] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1039), 2, + ACTIONS(3340), 1, + anon_sym_BANG, + ACTIONS(3342), 1, + anon_sym_COLON_COLON, + STATE(1035), 2, sym_line_comment, sym_block_comment, - ACTIONS(3320), 16, + ACTIONS(3338), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3322), 31, + ACTIONS(3336), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111732,36 +111758,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2082] = 9, + anon_sym_LT2, + [1570] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3272), 1, - anon_sym_BANG, - ACTIONS(3347), 1, - anon_sym_LBRACE, - ACTIONS(3349), 1, - anon_sym_COLON_COLON, - STATE(1172), 1, - sym_field_initializer_list, - STATE(1040), 2, + ACTIONS(3276), 1, + anon_sym_LPAREN, + ACTIONS(3284), 1, + anon_sym_LT2, + STATE(1053), 1, + sym_type_arguments, + STATE(1061), 1, + sym_parameters, + STATE(1036), 2, sym_line_comment, sym_block_comment, - ACTIONS(1289), 15, + ACTIONS(3346), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111772,17 +111796,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1291), 28, + ACTIONS(3344), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -111795,36 +111821,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2152] = 5, + [1641] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1041), 2, + STATE(1037), 2, sym_line_comment, sym_block_comment, - ACTIONS(1959), 9, + ACTIONS(1257), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1961), 38, + ACTIONS(1259), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1704] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1038), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1047), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1045), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1767] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1039), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1265), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1267), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111847,6 +111988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_enum, anon_sym_fn, + anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -111863,15 +112005,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2214] = 5, + [1830] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1042), 2, + STATE(1040), 2, sym_line_comment, sym_block_comment, - ACTIONS(2543), 9, + ACTIONS(2367), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -111881,7 +112023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2545), 38, + ACTIONS(2369), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111920,22 +112062,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2276] = 5, + [1892] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1043), 2, + ACTIONS(3280), 1, + anon_sym_BANG, + ACTIONS(3348), 1, + anon_sym_LBRACE, + ACTIONS(3350), 1, + anon_sym_COLON_COLON, + STATE(1403), 1, + sym_field_initializer_list, + STATE(1041), 2, sym_line_comment, sym_block_comment, - ACTIONS(3336), 16, + ACTIONS(1325), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -111945,13 +112094,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3338), 31, + ACTIONS(1327), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -111973,76 +112121,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2338] = 5, + [1962] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1044), 2, + ACTIONS(3356), 1, + anon_sym_POUND, + STATE(1485), 2, + sym_attribute_item, + sym_inner_attribute_item, + STATE(1042), 3, sym_line_comment, sym_block_comment, - ACTIONS(3300), 16, - anon_sym_PLUS, - anon_sym_STAR, + aux_sym_match_arm_repeat1, + ACTIONS(3354), 14, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3302), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2400] = 5, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3352), 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__, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2028] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1045), 2, + STATE(1043), 2, sym_line_comment, sym_block_comment, - ACTIONS(3312), 16, + ACTIONS(3340), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112059,7 +112207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3314), 31, + ACTIONS(3342), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112091,15 +112239,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2462] = 5, + [2090] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1046), 2, + STATE(1044), 2, sym_line_comment, sym_block_comment, - ACTIONS(2255), 9, + ACTIONS(2147), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112109,7 +112257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2257), 38, + ACTIONS(2149), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112148,26 +112296,26 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2524] = 8, + [2152] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3355), 1, + ACTIONS(3363), 1, anon_sym_BANG, - ACTIONS(3357), 1, + ACTIONS(3365), 1, anon_sym_COLON_COLON, - STATE(1047), 2, + STATE(1045), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 6, + ACTIONS(3367), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - ACTIONS(3353), 16, + ACTIONS(3361), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112184,65 +112332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DOT_DOT, anon_sym_as, - ACTIONS(3351), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [2592] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(1465), 1, - sym_label, - STATE(1048), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3363), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3361), 29, + ACTIONS(3359), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -112263,206 +112356,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [2657] = 6, + [2220] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3367), 1, - anon_sym_COLON_COLON, - STATE(1049), 2, + STATE(1046), 2, sym_line_comment, sym_block_comment, - ACTIONS(3294), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3292), 30, + ACTIONS(1795), 9, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2720] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3369), 1, - anon_sym_COLON_COLON, - STATE(1050), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3294), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3292), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2783] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3371), 1, anon_sym_COLON_COLON, - STATE(1051), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3294), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3292), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2846] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3373), 1, anon_sym_POUND, - STATE(1479), 1, - sym_attribute_item, - STATE(1052), 3, - sym_line_comment, - sym_block_comment, - aux_sym_enum_variant_list_repeat1, - ACTIONS(755), 11, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_integer_literal, sym_metavariable, - ACTIONS(3208), 32, + ACTIONS(1797), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112483,33 +112395,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [2911] = 5, + [2282] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1053), 2, + STATE(1047), 2, sym_line_comment, sym_block_comment, - ACTIONS(3378), 15, + ACTIONS(3304), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -112519,7 +112438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3376), 31, + ACTIONS(3306), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112551,77 +112470,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2972] = 5, + [2344] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1054), 2, + STATE(1048), 2, sym_line_comment, sym_block_comment, - ACTIONS(3382), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3380), 31, + ACTIONS(2615), 9, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_EQ, + anon_sym_LT, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3033] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2617), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2406] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1055), 2, + STATE(1049), 2, sym_line_comment, sym_block_comment, - ACTIONS(3386), 15, + ACTIONS(3312), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -112631,7 +112552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3384), 31, + ACTIONS(3314), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112663,96 +112584,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3094] = 24, - ACTIONS(29), 1, - anon_sym_LT, + [2468] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1587), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - sym_identifier, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, - anon_sym_STAR, - ACTIONS(3398), 1, - anon_sym_AMP, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3402), 1, - anon_sym_SQUOTE, - ACTIONS(3406), 1, - anon_sym_for, - ACTIONS(3410), 1, - sym_metavariable, - STATE(2542), 1, - sym_where_predicate, - STATE(2556), 1, - sym_scoped_type_identifier, - STATE(2964), 1, - sym_generic_type, - STATE(3356), 1, - sym_generic_type_with_turbofish, - STATE(3399), 1, - sym_scoped_identifier, - STATE(3486), 1, - sym_bracketed_type, - ACTIONS(3390), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(3404), 2, - anon_sym_default, - anon_sym_union, - STATE(1056), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - STATE(3086), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3396), 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, - [3193] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1057), 2, + STATE(1050), 2, sym_line_comment, sym_block_comment, - ACTIONS(3238), 15, + ACTIONS(3328), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -112762,7 +112609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3240), 31, + ACTIONS(3330), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112770,7 +112617,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112791,20 +112637,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3254] = 6, + [2530] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3416), 1, - anon_sym_DASH_GT, - STATE(1058), 2, + STATE(1051), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(1939), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1941), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2592] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3369), 1, + anon_sym_else, + STATE(1123), 1, + sym_else_clause, + STATE(1052), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1249), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112820,7 +112726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 30, + ACTIONS(1247), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112850,18 +112756,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [3317] = 6, + [2657] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3371), 1, - anon_sym_COLON_COLON, - STATE(1059), 2, + STATE(1053), 2, sym_line_comment, sym_block_comment, - ACTIONS(3306), 15, + ACTIONS(3373), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112877,7 +112780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3304), 30, + ACTIONS(3371), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112905,20 +112808,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3380] = 6, + [2718] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3371), 1, - anon_sym_COLON_COLON, - STATE(1060), 2, + STATE(1054), 2, sym_line_comment, sym_block_comment, - ACTIONS(3330), 15, + ACTIONS(1567), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112934,7 +112836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3328), 30, + ACTIONS(1569), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112942,6 +112844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112965,17 +112868,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3443] = 6, + [2779] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3422), 1, - anon_sym_DASH_GT, - STATE(1061), 2, + STATE(1055), 2, sym_line_comment, sym_block_comment, - ACTIONS(3420), 15, + ACTIONS(3246), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112991,7 +112892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3418), 30, + ACTIONS(3248), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112999,6 +112900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -113022,17 +112924,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3506] = 6, + [2840] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3428), 1, + ACTIONS(3379), 1, anon_sym_DASH_GT, - STATE(1062), 2, + STATE(1056), 2, sym_line_comment, sym_block_comment, - ACTIONS(3426), 15, + ACTIONS(3377), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113048,7 +112950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3424), 30, + ACTIONS(3375), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113079,19 +112981,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3569] = 7, + [2903] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3430), 1, - anon_sym_else, - STATE(1137), 1, - sym_else_clause, - STATE(1063), 2, + ACTIONS(3381), 1, + anon_sym_COLON_COLON, + STATE(1057), 2, sym_line_comment, sym_block_comment, - ACTIONS(1241), 15, + ACTIONS(3318), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113107,7 +113007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1239), 29, + ACTIONS(3316), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113137,15 +113037,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - [3634] = 5, + anon_sym_else, + [2966] = 27, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1064), 2, + ACTIONS(1379), 1, + anon_sym_QMARK, + ACTIONS(1411), 1, + anon_sym_fn, + ACTIONS(1413), 1, + anon_sym_for, + ACTIONS(1419), 1, + anon_sym_extern, + ACTIONS(3383), 1, + sym_identifier, + ACTIONS(3385), 1, + anon_sym_LPAREN, + ACTIONS(3389), 1, + anon_sym_COLON_COLON, + ACTIONS(3391), 1, + anon_sym_default, + ACTIONS(3393), 1, + anon_sym_union, + ACTIONS(3397), 1, + sym_metavariable, + STATE(1590), 1, + sym_for_lifetimes, + STATE(1932), 1, + sym_scoped_type_identifier, + STATE(1960), 1, + sym_generic_type, + STATE(2233), 1, + aux_sym_function_modifiers_repeat1, + STATE(2306), 1, + sym_extern_modifier, + STATE(3365), 1, + sym_generic_type_with_turbofish, + STATE(3412), 1, + sym_function_modifiers, + STATE(3467), 1, + sym_scoped_identifier, + STATE(3498), 1, + sym_bracketed_type, + STATE(1058), 2, sym_line_comment, sym_block_comment, - ACTIONS(3298), 17, + ACTIONS(1405), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3395), 3, + sym_self, + sym_super, + sym_crate, + STATE(1993), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3387), 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, + [3071] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3381), 1, + anon_sym_COLON_COLON, + STATE(1059), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3346), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113156,14 +113137,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3296), 29, + ACTIONS(3344), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113182,26 +113161,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [3695] = 5, + [3134] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1065), 2, + ACTIONS(3403), 1, + anon_sym_DASH_GT, + STATE(1060), 2, sym_line_comment, sym_block_comment, - ACTIONS(3434), 15, + ACTIONS(3401), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113217,7 +113199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3432), 31, + ACTIONS(3399), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113245,21 +113227,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3756] = 6, + [3197] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3440), 1, + ACTIONS(3409), 1, anon_sym_DASH_GT, - STATE(1066), 2, + STATE(1061), 2, sym_line_comment, sym_block_comment, - ACTIONS(3438), 15, + ACTIONS(3407), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113275,7 +113256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3436), 30, + ACTIONS(3405), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113306,17 +113287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3819] = 6, + [3260] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3446), 1, - anon_sym_DASH_GT, - STATE(1067), 2, + STATE(1062), 2, sym_line_comment, sym_block_comment, - ACTIONS(3444), 15, + ACTIONS(3310), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113327,12 +113306,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3442), 30, + ACTIONS(3308), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113351,29 +113332,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3882] = 6, + anon_sym_LT2, + [3321] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_COLON_COLON, - STATE(1068), 2, + STATE(1063), 2, sym_line_comment, sym_block_comment, - ACTIONS(1289), 15, + ACTIONS(3413), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113389,7 +113367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1291), 30, + ACTIONS(3411), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113417,18 +113395,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3945] = 5, + [3382] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1069), 2, + ACTIONS(3419), 1, + anon_sym_DASH_GT, + STATE(1064), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 15, + ACTIONS(3417), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113444,7 +113425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3450), 31, + ACTIONS(3415), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113472,19 +113453,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4006] = 5, + [3445] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1070), 2, + ACTIONS(3425), 1, + anon_sym_DASH_GT, + STATE(1065), 2, sym_line_comment, sym_block_comment, - ACTIONS(3456), 15, + ACTIONS(3423), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113500,7 +113482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3454), 31, + ACTIONS(3421), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113528,21 +113510,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4067] = 6, + [3508] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3371), 1, - anon_sym_COLON_COLON, - STATE(1071), 2, + ACTIONS(3431), 1, + anon_sym_DASH_GT, + STATE(1066), 2, sym_line_comment, sym_block_comment, - ACTIONS(3326), 15, + ACTIONS(3429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113558,7 +113539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3324), 30, + ACTIONS(3427), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113589,17 +113570,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4130] = 6, + [3571] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3462), 1, - anon_sym_DASH_GT, - STATE(1072), 2, + ACTIONS(3433), 1, + anon_sym_COLON_COLON, + STATE(1067), 2, sym_line_comment, sym_block_comment, - ACTIONS(3460), 15, + ACTIONS(1325), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113615,7 +113596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3458), 30, + ACTIONS(1327), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113646,15 +113627,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4193] = 5, + [3634] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1073), 2, + STATE(1068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3466), 15, + ACTIONS(3437), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113670,7 +113651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3464), 31, + ACTIONS(3435), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113702,15 +113683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4254] = 5, + [3695] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1074), 2, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(1161), 1, + sym_label, + STATE(1069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3470), 15, + ACTIONS(3441), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113726,7 +113711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3468), 31, + ACTIONS(3439), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113754,19 +113739,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4315] = 5, + [3760] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1075), 2, + STATE(1070), 2, sym_line_comment, sym_block_comment, - ACTIONS(3474), 15, + ACTIONS(3447), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113782,7 +113765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3472), 31, + ACTIONS(3445), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113810,19 +113793,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4376] = 5, + [3821] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1076), 2, + ACTIONS(3381), 1, + anon_sym_COLON_COLON, + STATE(1071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3478), 15, + ACTIONS(3322), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113838,7 +113823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3476), 31, + ACTIONS(3320), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113866,19 +113851,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4437] = 5, + [3884] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1077), 2, + STATE(1072), 2, sym_line_comment, sym_block_comment, - ACTIONS(3482), 15, + ACTIONS(3451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113894,7 +113878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3480), 31, + ACTIONS(3449), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113926,15 +113910,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4498] = 5, + [3945] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1078), 2, + STATE(1073), 2, sym_line_comment, sym_block_comment, - ACTIONS(3486), 15, + ACTIONS(3455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113950,7 +113934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3484), 31, + ACTIONS(3453), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113978,28 +113962,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4559] = 6, + [4006] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3488), 1, - anon_sym_LBRACE, - STATE(1079), 2, + STATE(1074), 2, sym_line_comment, sym_block_comment, - ACTIONS(3300), 16, + ACTIONS(3459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -114009,12 +113990,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3302), 29, + ACTIONS(3457), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -114036,27 +114018,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_DASH_GT, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4622] = 6, + [4067] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3490), 1, - anon_sym_LBRACE, - STATE(1080), 2, + STATE(1075), 2, sym_line_comment, sym_block_comment, - ACTIONS(3320), 16, + ACTIONS(3463), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -114066,12 +114046,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3322), 29, + ACTIONS(3461), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -114094,17 +114075,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4685] = 5, + [4128] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1081), 2, + STATE(1076), 2, sym_line_comment, sym_block_comment, - ACTIONS(3494), 15, + ACTIONS(3467), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -114120,7 +114102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3492), 31, + ACTIONS(3465), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114148,19 +114130,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4746] = 5, + [4189] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1082), 2, + STATE(1077), 2, sym_line_comment, sym_block_comment, - ACTIONS(3498), 15, + ACTIONS(3471), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -114176,7 +114158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3496), 31, + ACTIONS(3469), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114208,19 +114190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4807] = 7, + [4250] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3502), 1, - anon_sym_LPAREN, - STATE(1327), 1, - sym_arguments, - STATE(1083), 2, + STATE(1078), 2, sym_line_comment, sym_block_comment, - ACTIONS(3504), 15, + ACTIONS(3475), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -114236,8 +114214,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3500), 29, + ACTIONS(3473), 31, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -114263,67 +114242,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4872] = 24, + [4311] = 24, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1587), 1, + ACTIONS(1595), 1, anon_sym_LBRACK, - ACTIONS(3388), 1, - sym_identifier, - ACTIONS(3392), 1, + ACTIONS(3385), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3389), 1, + anon_sym_COLON_COLON, + ACTIONS(3397), 1, + sym_metavariable, + ACTIONS(3477), 1, + sym_identifier, + ACTIONS(3481), 1, anon_sym_STAR, - ACTIONS(3398), 1, + ACTIONS(3485), 1, anon_sym_AMP, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3402), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(3406), 1, + ACTIONS(3489), 1, anon_sym_for, - ACTIONS(3410), 1, - sym_metavariable, - STATE(2542), 1, - sym_where_predicate, - STATE(2556), 1, + STATE(2540), 1, sym_scoped_type_identifier, - STATE(2964), 1, + STATE(2709), 1, + sym_where_predicate, + STATE(3041), 1, sym_generic_type, - STATE(3356), 1, + STATE(3365), 1, sym_generic_type_with_turbofish, - STATE(3399), 1, + STATE(3467), 1, sym_scoped_identifier, - STATE(3486), 1, + STATE(3498), 1, sym_bracketed_type, - ACTIONS(3404), 2, + ACTIONS(3393), 2, anon_sym_default, anon_sym_union, - ACTIONS(3506), 2, + ACTIONS(3479), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(1084), 2, + STATE(1079), 2, sym_line_comment, sym_block_comment, - ACTIONS(3408), 3, + ACTIONS(3395), 3, sym_self, sym_super, sym_crate, - STATE(3086), 6, + STATE(3092), 6, sym_higher_ranked_trait_bound, sym_lifetime, sym_array_type, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3396), 17, + ACTIONS(3483), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114341,67 +114321,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4971] = 27, + [4410] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3493), 1, + anon_sym_LPAREN, + STATE(1409), 1, + sym_arguments, + STATE(1080), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3495), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3491), 29, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [4475] = 27, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1411), 1, + ACTIONS(1419), 1, anon_sym_extern, - ACTIONS(3086), 1, + ACTIONS(3104), 1, anon_sym_QMARK, - ACTIONS(3098), 1, + ACTIONS(3116), 1, anon_sym_fn, - ACTIONS(3508), 1, + ACTIONS(3497), 1, sym_identifier, - ACTIONS(3510), 1, + ACTIONS(3499), 1, anon_sym_LPAREN, - ACTIONS(3514), 1, + ACTIONS(3503), 1, anon_sym_COLON_COLON, - ACTIONS(3516), 1, + ACTIONS(3505), 1, anon_sym_default, - ACTIONS(3518), 1, + ACTIONS(3507), 1, anon_sym_for, - ACTIONS(3520), 1, + ACTIONS(3509), 1, anon_sym_union, - ACTIONS(3524), 1, + ACTIONS(3513), 1, sym_metavariable, - STATE(1023), 1, + STATE(1027), 1, sym_scoped_type_identifier, - STATE(1059), 1, + STATE(1057), 1, sym_generic_type, - STATE(1630), 1, + STATE(1611), 1, sym_for_lifetimes, - STATE(2222), 1, + STATE(2233), 1, aux_sym_function_modifiers_repeat1, - STATE(2318), 1, + STATE(2306), 1, sym_extern_modifier, - STATE(3354), 1, + STATE(3363), 1, sym_function_modifiers, - STATE(3499), 1, + STATE(3512), 1, sym_scoped_identifier, - STATE(3533), 1, + STATE(3544), 1, sym_generic_type_with_turbofish, - STATE(3543), 1, + STATE(3554), 1, sym_bracketed_type, - STATE(1085), 2, + STATE(1081), 2, sym_line_comment, sym_block_comment, - ACTIONS(1397), 3, + ACTIONS(1405), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3522), 3, + ACTIONS(3511), 3, sym_self, sym_super, sym_crate, - STATE(1442), 3, + STATE(1157), 3, sym_removed_trait_bound, sym_function_type, sym_tuple_type, - ACTIONS(3512), 17, + ACTIONS(3501), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114419,67 +114457,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5076] = 27, + [4580] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3515), 1, + anon_sym_LBRACE, + STATE(1082), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3312), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3314), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_else, + [4643] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3517), 1, + anon_sym_LBRACE, + STATE(1083), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3328), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3330), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_else, + [4706] = 27, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1405), 1, + ACTIONS(1413), 1, anon_sym_for, - ACTIONS(1411), 1, + ACTIONS(1419), 1, anon_sym_extern, - ACTIONS(3086), 1, + ACTIONS(3104), 1, anon_sym_QMARK, - ACTIONS(3098), 1, + ACTIONS(3116), 1, anon_sym_fn, - ACTIONS(3510), 1, + ACTIONS(3499), 1, anon_sym_LPAREN, - ACTIONS(3514), 1, + ACTIONS(3503), 1, anon_sym_COLON_COLON, - ACTIONS(3516), 1, + ACTIONS(3505), 1, anon_sym_default, - ACTIONS(3520), 1, + ACTIONS(3509), 1, anon_sym_union, - ACTIONS(3524), 1, + ACTIONS(3513), 1, sym_metavariable, - ACTIONS(3526), 1, + ACTIONS(3519), 1, sym_identifier, - STATE(1030), 1, + STATE(1028), 1, sym_scoped_type_identifier, STATE(1071), 1, sym_generic_type, - STATE(1630), 1, + STATE(1611), 1, sym_for_lifetimes, - STATE(2222), 1, + STATE(2233), 1, aux_sym_function_modifiers_repeat1, - STATE(2318), 1, + STATE(2306), 1, sym_extern_modifier, - STATE(3354), 1, + STATE(3363), 1, sym_function_modifiers, - STATE(3499), 1, + STATE(3512), 1, sym_scoped_identifier, - STATE(3533), 1, + STATE(3544), 1, sym_generic_type_with_turbofish, - STATE(3543), 1, + STATE(3554), 1, sym_bracketed_type, - STATE(1086), 2, + STATE(1084), 2, sym_line_comment, sym_block_comment, - ACTIONS(1397), 3, + ACTIONS(1405), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3522), 3, + ACTIONS(3511), 3, sym_self, sym_super, sym_crate, - STATE(1177), 3, + STATE(1163), 3, sym_removed_trait_bound, sym_function_type, sym_tuple_type, - ACTIONS(3512), 17, + ACTIONS(3501), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114497,67 +114649,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5181] = 27, + [4811] = 24, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1371), 1, - anon_sym_QMARK, - ACTIONS(1403), 1, - anon_sym_fn, - ACTIONS(1405), 1, - anon_sym_for, - ACTIONS(1411), 1, - anon_sym_extern, - ACTIONS(3392), 1, + ACTIONS(1595), 1, + anon_sym_LBRACK, + ACTIONS(3385), 1, anon_sym_LPAREN, - ACTIONS(3400), 1, + ACTIONS(3389), 1, anon_sym_COLON_COLON, - ACTIONS(3404), 1, - anon_sym_union, - ACTIONS(3410), 1, + ACTIONS(3397), 1, sym_metavariable, - ACTIONS(3528), 1, + ACTIONS(3477), 1, sym_identifier, - ACTIONS(3532), 1, - anon_sym_default, - STATE(1603), 1, - sym_for_lifetimes, - STATE(1923), 1, + ACTIONS(3481), 1, + anon_sym_STAR, + ACTIONS(3485), 1, + anon_sym_AMP, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(3489), 1, + anon_sym_for, + STATE(2540), 1, sym_scoped_type_identifier, - STATE(1947), 1, + STATE(2709), 1, + sym_where_predicate, + STATE(3041), 1, sym_generic_type, - STATE(2222), 1, - aux_sym_function_modifiers_repeat1, - STATE(2318), 1, - sym_extern_modifier, - STATE(3356), 1, + STATE(3365), 1, sym_generic_type_with_turbofish, - STATE(3399), 1, + STATE(3467), 1, sym_scoped_identifier, - STATE(3428), 1, - sym_function_modifiers, - STATE(3486), 1, + STATE(3498), 1, sym_bracketed_type, - STATE(1087), 2, + ACTIONS(3393), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(3521), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(1085), 2, sym_line_comment, sym_block_comment, - ACTIONS(1397), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3408), 3, + ACTIONS(3395), 3, sym_self, sym_super, sym_crate, - STATE(1987), 3, - sym_removed_trait_bound, - sym_function_type, + STATE(3092), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, sym_tuple_type, - ACTIONS(3530), 17, + sym_reference_type, + sym_pointer_type, + ACTIONS(3483), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114575,102 +114724,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5286] = 27, - ACTIONS(29), 1, - anon_sym_LT, + [4910] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1371), 1, - anon_sym_QMARK, - ACTIONS(1403), 1, - anon_sym_fn, - ACTIONS(1411), 1, - anon_sym_extern, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3404), 1, - anon_sym_union, - ACTIONS(3410), 1, - sym_metavariable, - ACTIONS(3532), 1, - anon_sym_default, - ACTIONS(3534), 1, - sym_identifier, - ACTIONS(3536), 1, - anon_sym_for, - STATE(1603), 1, - sym_for_lifetimes, - STATE(1924), 1, - sym_scoped_type_identifier, - STATE(1949), 1, - sym_generic_type, - STATE(2222), 1, - aux_sym_function_modifiers_repeat1, - STATE(2318), 1, - sym_extern_modifier, - STATE(3356), 1, - sym_generic_type_with_turbofish, - STATE(3399), 1, - sym_scoped_identifier, - STATE(3428), 1, - sym_function_modifiers, - STATE(3486), 1, - sym_bracketed_type, - STATE(1088), 2, + STATE(1086), 2, sym_line_comment, sym_block_comment, - ACTIONS(1397), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - STATE(2003), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3530), 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, - [5391] = 6, + ACTIONS(3525), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3523), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [4971] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3538), 1, - anon_sym_LBRACE, - STATE(1089), 2, + STATE(1087), 2, sym_line_comment, sym_block_comment, - ACTIONS(3336), 16, + ACTIONS(3529), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -114680,12 +114804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3338), 29, + ACTIONS(3527), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -114708,69 +114833,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5454] = 27, + [5032] = 27, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1419), 1, + anon_sym_extern, + ACTIONS(3140), 1, + anon_sym_QMARK, + ACTIONS(3152), 1, + anon_sym_fn, + ACTIONS(3531), 1, + sym_identifier, + ACTIONS(3533), 1, + anon_sym_LPAREN, + ACTIONS(3537), 1, + anon_sym_COLON_COLON, + ACTIONS(3539), 1, + anon_sym_default, + ACTIONS(3541), 1, + anon_sym_for, + ACTIONS(3543), 1, + anon_sym_union, + ACTIONS(3547), 1, + sym_metavariable, + STATE(1542), 1, + sym_scoped_type_identifier, + STATE(1584), 1, + sym_for_lifetimes, + STATE(1609), 1, + sym_generic_type, + STATE(2233), 1, + aux_sym_function_modifiers_repeat1, + STATE(2306), 1, + sym_extern_modifier, + STATE(3502), 1, + sym_function_modifiers, + STATE(3535), 1, + sym_scoped_identifier, + STATE(3552), 1, + sym_generic_type_with_turbofish, + STATE(3558), 1, + sym_bracketed_type, + STATE(1088), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1405), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3545), 3, + sym_self, + sym_super, + sym_crate, + STATE(1729), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3535), 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, + [5137] = 27, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1411), 1, - anon_sym_extern, - ACTIONS(3122), 1, + ACTIONS(1379), 1, anon_sym_QMARK, - ACTIONS(3134), 1, + ACTIONS(1411), 1, anon_sym_fn, - ACTIONS(3540), 1, - sym_identifier, - ACTIONS(3542), 1, + ACTIONS(1419), 1, + anon_sym_extern, + ACTIONS(3385), 1, anon_sym_LPAREN, - ACTIONS(3546), 1, + ACTIONS(3389), 1, anon_sym_COLON_COLON, - ACTIONS(3548), 1, + ACTIONS(3391), 1, anon_sym_default, - ACTIONS(3550), 1, - anon_sym_for, - ACTIONS(3552), 1, + ACTIONS(3393), 1, anon_sym_union, - ACTIONS(3556), 1, + ACTIONS(3397), 1, sym_metavariable, - STATE(1538), 1, + ACTIONS(3549), 1, + sym_identifier, + ACTIONS(3551), 1, + anon_sym_for, + STATE(1590), 1, + sym_for_lifetimes, + STATE(1928), 1, sym_scoped_type_identifier, - STATE(1589), 1, + STATE(1972), 1, sym_generic_type, - STATE(1638), 1, - sym_for_lifetimes, - STATE(2222), 1, + STATE(2233), 1, aux_sym_function_modifiers_repeat1, - STATE(2318), 1, + STATE(2306), 1, sym_extern_modifier, - STATE(3328), 1, + STATE(3365), 1, + sym_generic_type_with_turbofish, + STATE(3412), 1, sym_function_modifiers, - STATE(3524), 1, + STATE(3467), 1, sym_scoped_identifier, - STATE(3541), 1, - sym_generic_type_with_turbofish, - STATE(3547), 1, + STATE(3498), 1, sym_bracketed_type, - STATE(1090), 2, + STATE(1089), 2, sym_line_comment, sym_block_comment, - ACTIONS(1397), 3, + ACTIONS(1405), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3554), 3, + ACTIONS(3395), 3, sym_self, sym_super, sym_crate, - STATE(1743), 3, + STATE(1983), 3, sym_removed_trait_bound, sym_function_type, sym_tuple_type, - ACTIONS(3544), 17, + ACTIONS(3387), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114788,67 +114992,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5559] = 27, + [5242] = 27, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1405), 1, + ACTIONS(1413), 1, anon_sym_for, - ACTIONS(1411), 1, + ACTIONS(1419), 1, anon_sym_extern, - ACTIONS(3122), 1, + ACTIONS(3140), 1, anon_sym_QMARK, - ACTIONS(3134), 1, + ACTIONS(3152), 1, anon_sym_fn, - ACTIONS(3542), 1, + ACTIONS(3533), 1, anon_sym_LPAREN, - ACTIONS(3546), 1, + ACTIONS(3537), 1, anon_sym_COLON_COLON, - ACTIONS(3548), 1, + ACTIONS(3539), 1, anon_sym_default, - ACTIONS(3552), 1, + ACTIONS(3543), 1, anon_sym_union, - ACTIONS(3556), 1, + ACTIONS(3547), 1, sym_metavariable, - ACTIONS(3558), 1, + ACTIONS(3553), 1, sym_identifier, - STATE(1529), 1, + STATE(1533), 1, sym_scoped_type_identifier, - STATE(1586), 1, - sym_generic_type, - STATE(1638), 1, + STATE(1584), 1, sym_for_lifetimes, - STATE(2222), 1, + STATE(1591), 1, + sym_generic_type, + STATE(2233), 1, aux_sym_function_modifiers_repeat1, - STATE(2318), 1, + STATE(2306), 1, sym_extern_modifier, - STATE(3328), 1, + STATE(3502), 1, sym_function_modifiers, - STATE(3524), 1, + STATE(3535), 1, sym_scoped_identifier, - STATE(3541), 1, + STATE(3552), 1, sym_generic_type_with_turbofish, - STATE(3547), 1, + STATE(3558), 1, sym_bracketed_type, - STATE(1091), 2, + STATE(1090), 2, sym_line_comment, sym_block_comment, - ACTIONS(1397), 3, + ACTIONS(1405), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3554), 3, + ACTIONS(3545), 3, sym_self, sym_super, sym_crate, - STATE(1646), 3, + STATE(1815), 3, sym_removed_trait_bound, sym_function_type, sym_tuple_type, - ACTIONS(3544), 17, + ACTIONS(3535), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114866,17 +115070,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5664] = 6, + [5347] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3560), 1, + ACTIONS(3555), 1, anon_sym_LBRACE, - STATE(1092), 2, + STATE(1091), 2, sym_line_comment, sym_block_comment, - ACTIONS(3312), 16, + ACTIONS(3304), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -114893,7 +115097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3314), 29, + ACTIONS(3306), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114923,15 +115127,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [5727] = 5, + [5410] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1093), 2, + ACTIONS(3557), 1, + anon_sym_COLON_COLON, + STATE(1092), 2, sym_line_comment, sym_block_comment, - ACTIONS(1551), 15, + ACTIONS(3334), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -114947,7 +115153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1553), 31, + ACTIONS(3332), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114955,7 +115161,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -114979,17 +115184,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5788] = 6, + [5473] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3566), 1, - anon_sym_DASH_GT, - STATE(1094), 2, + ACTIONS(3559), 1, + anon_sym_COLON_COLON, + STATE(1093), 2, sym_line_comment, sym_block_comment, - ACTIONS(3564), 15, + ACTIONS(3334), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115005,7 +115210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3562), 30, + ACTIONS(3332), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115036,15 +115241,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5851] = 5, + [5536] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1095), 2, + ACTIONS(3381), 1, + anon_sym_COLON_COLON, + STATE(1094), 2, sym_line_comment, sym_block_comment, - ACTIONS(3570), 15, + ACTIONS(3334), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115060,7 +115267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3568), 30, + ACTIONS(3332), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115091,21 +115298,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5911] = 5, + [5599] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1096), 2, + ACTIONS(3561), 1, + anon_sym_LBRACE, + STATE(1095), 2, sym_line_comment, sym_block_comment, - ACTIONS(1307), 15, + ACTIONS(3340), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -115115,13 +115325,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1305), 30, + ACTIONS(3342), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -115143,10 +115352,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [5971] = 5, + [5662] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3563), 1, + anon_sym_POUND, + STATE(1490), 1, + sym_attribute_item, + STATE(1096), 3, + sym_line_comment, + sym_block_comment, + aux_sym_enum_variant_list_repeat1, + ACTIONS(755), 11, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_integer_literal, + sym_metavariable, + ACTIONS(3230), 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, + [5727] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -115154,7 +115421,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1097), 2, sym_line_comment, sym_block_comment, - ACTIONS(1339), 15, + ACTIONS(3568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115170,7 +115437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1337), 30, + ACTIONS(3566), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115198,183 +115465,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [6031] = 5, + [5788] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3574), 1, + anon_sym_DASH_GT, STATE(1098), 2, sym_line_comment, sym_block_comment, - ACTIONS(2519), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2521), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6091] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1099), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2523), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2525), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6151] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1100), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2539), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2541), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6211] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1101), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1311), 15, + ACTIONS(3572), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115390,7 +115495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1309), 30, + ACTIONS(3570), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115421,125 +115526,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [6271] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1102), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2683), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2685), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6331] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1103), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2687), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2689), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6391] = 5, + [5851] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1104), 2, + STATE(1099), 2, sym_line_comment, sym_block_comment, - ACTIONS(2699), 7, + ACTIONS(1891), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115547,7 +115542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2701), 38, + ACTIONS(1893), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115586,15 +115581,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6451] = 5, + [5911] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1105), 2, + STATE(1100), 2, sym_line_comment, sym_block_comment, - ACTIONS(2707), 7, + ACTIONS(2683), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115602,7 +115597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2709), 38, + ACTIONS(2685), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115641,12 +115636,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6511] = 5, + [5971] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1106), 2, + STATE(1101), 2, sym_line_comment, sym_block_comment, ACTIONS(2731), 7, @@ -115696,180 +115691,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6571] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1107), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2195), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2197), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6631] = 5, + [6031] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1108), 2, + STATE(1102), 2, sym_line_comment, sym_block_comment, - ACTIONS(2239), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(1267), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2241), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6691] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1109), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2459), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1265), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2461), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6751] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [6091] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1110), 2, + STATE(1103), 2, sym_line_comment, sym_block_comment, - ACTIONS(1283), 15, + ACTIONS(3578), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115885,7 +115770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1281), 30, + ACTIONS(3576), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115916,15 +115801,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [6811] = 5, + [6151] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1111), 2, + STATE(1104), 2, sym_line_comment, sym_block_comment, - ACTIONS(1319), 15, + ACTIONS(3582), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115940,7 +115825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1317), 30, + ACTIONS(3580), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115971,290 +115856,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [6871] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1112), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2691), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2693), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6931] = 5, + [6211] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1113), 2, + STATE(1105), 2, sym_line_comment, sym_block_comment, - ACTIONS(2715), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3586), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2717), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6991] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1114), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2719), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3584), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2721), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [7051] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [6271] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1115), 2, + STATE(1106), 2, sym_line_comment, sym_block_comment, - ACTIONS(1907), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3590), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1909), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [7111] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1116), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1951), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3588), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - 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, - [7171] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [6331] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1117), 2, + STATE(1107), 2, sym_line_comment, sym_block_comment, - ACTIONS(1251), 15, + ACTIONS(3594), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116270,7 +115990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1249), 30, + ACTIONS(3592), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116301,15 +116021,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [7231] = 5, + [6391] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1118), 2, + STATE(1108), 2, sym_line_comment, sym_block_comment, - ACTIONS(1271), 15, + ACTIONS(3598), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116325,7 +116045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1269), 30, + ACTIONS(3596), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116356,15 +116076,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [7291] = 5, + [6451] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1119), 2, + STATE(1109), 2, sym_line_comment, sym_block_comment, - ACTIONS(3574), 15, + ACTIONS(3602), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116380,7 +116100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3572), 30, + ACTIONS(3600), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116411,15 +116131,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [7351] = 5, + [6511] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1120), 2, + STATE(1110), 2, sym_line_comment, sym_block_comment, - ACTIONS(3578), 15, + ACTIONS(3346), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116435,7 +116155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3576), 30, + ACTIONS(3344), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116466,15 +116186,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [7411] = 5, + [6571] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1121), 2, + STATE(1111), 2, sym_line_comment, sym_block_comment, - ACTIONS(3582), 15, + ACTIONS(3606), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116490,7 +116210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3580), 30, + ACTIONS(3604), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116521,15 +116241,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [7471] = 5, + [6631] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1122), 2, + STATE(1112), 2, sym_line_comment, sym_block_comment, - ACTIONS(3586), 15, + ACTIONS(3606), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116545,7 +116265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3584), 30, + ACTIONS(3604), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116576,180 +116296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [7531] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1123), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2415), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2417), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [7591] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1124), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3590), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3588), 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, - [7651] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1125), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2427), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2429), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [7711] = 5, + [6691] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1126), 2, + STATE(1113), 2, sym_line_comment, sym_block_comment, - ACTIONS(3594), 15, + ACTIONS(3610), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116765,7 +116320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3592), 30, + ACTIONS(3608), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116796,15 +116351,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [7771] = 5, + [6751] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1127), 2, + STATE(1114), 2, sym_line_comment, sym_block_comment, - ACTIONS(3594), 15, + ACTIONS(3614), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116820,7 +116375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3592), 30, + ACTIONS(3612), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116851,15 +116406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [7831] = 5, + [6811] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1128), 2, + STATE(1115), 2, sym_line_comment, sym_block_comment, - ACTIONS(969), 15, + ACTIONS(3618), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116875,7 +116430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(971), 30, + ACTIONS(3616), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116906,15 +116461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [7891] = 5, + [6871] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1129), 2, + STATE(1116), 2, sym_line_comment, sym_block_comment, - ACTIONS(3598), 15, + ACTIONS(3622), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -116930,7 +116485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3596), 30, + ACTIONS(3620), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116961,70 +116516,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [7951] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1130), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3602), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3600), 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, - [8011] = 5, + [6931] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1131), 2, + STATE(1117), 2, sym_line_comment, sym_block_comment, - ACTIONS(1045), 15, + ACTIONS(1041), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117040,7 +116540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1047), 30, + ACTIONS(1043), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117071,15 +116571,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [8071] = 5, + [6991] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1132), 2, + STATE(1118), 2, sym_line_comment, sym_block_comment, - ACTIONS(2155), 7, + ACTIONS(2107), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117087,7 +116587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2157), 38, + ACTIONS(2109), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117126,15 +116626,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8131] = 5, + [7051] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1133), 2, + STATE(1119), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 7, + ACTIONS(2111), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117142,7 +116642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2161), 38, + ACTIONS(2113), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117181,15 +116681,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8191] = 5, + [7111] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1134), 2, + STATE(1120), 2, sym_line_comment, sym_block_comment, - ACTIONS(2163), 7, + ACTIONS(2115), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117197,7 +116697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2165), 38, + ACTIONS(2117), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117236,15 +116736,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8251] = 5, + [7171] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, + STATE(1121), 2, sym_line_comment, sym_block_comment, - ACTIONS(2175), 7, + ACTIONS(2119), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117252,7 +116752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2177), 38, + ACTIONS(2121), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117291,15 +116791,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8311] = 5, + [7231] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1136), 2, + STATE(1122), 2, sym_line_comment, sym_block_comment, - ACTIONS(2183), 7, + ACTIONS(2123), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117307,7 +116807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2185), 38, + ACTIONS(2125), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117346,15 +116846,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8371] = 5, + [7291] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1137), 2, + STATE(1123), 2, sym_line_comment, sym_block_comment, - ACTIONS(1299), 15, + ACTIONS(1287), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117370,7 +116870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1297), 30, + ACTIONS(1285), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117401,15 +116901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [8431] = 5, + [7351] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1138), 2, + STATE(1124), 2, sym_line_comment, sym_block_comment, - ACTIONS(2187), 7, + ACTIONS(2127), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117417,7 +116917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2189), 38, + ACTIONS(2129), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117456,15 +116956,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8491] = 5, + [7411] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1125), 2, sym_line_comment, sym_block_comment, - ACTIONS(2191), 7, + ACTIONS(2131), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117472,7 +116972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2193), 38, + ACTIONS(2133), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117511,15 +117011,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8551] = 5, + [7471] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1126), 2, sym_line_comment, sym_block_comment, - ACTIONS(2211), 7, + ACTIONS(2135), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117527,7 +117027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2213), 38, + ACTIONS(2137), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117566,15 +117066,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8611] = 5, + [7531] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, + STATE(1127), 2, sym_line_comment, sym_block_comment, - ACTIONS(2215), 7, + ACTIONS(2139), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117582,7 +117082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2217), 38, + ACTIONS(2141), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117621,15 +117121,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8671] = 5, + [7591] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1142), 2, + STATE(1128), 2, sym_line_comment, sym_block_comment, - ACTIONS(2219), 7, + ACTIONS(2143), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117637,7 +117137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2221), 38, + ACTIONS(2145), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117676,15 +117176,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8731] = 5, + [7651] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1129), 2, sym_line_comment, sym_block_comment, - ACTIONS(1315), 15, + ACTIONS(1291), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -117700,7 +117200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1313), 30, + ACTIONS(1289), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117731,70 +117231,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [8791] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1144), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3606), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3604), 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, - [8851] = 5, + [7711] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1145), 2, + STATE(1130), 2, sym_line_comment, sym_block_comment, - ACTIONS(2227), 7, + ACTIONS(2151), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117802,7 +117247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2229), 38, + ACTIONS(2153), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117841,15 +117286,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8911] = 5, + [7771] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1146), 2, + STATE(1131), 2, sym_line_comment, sym_block_comment, - ACTIONS(2231), 7, + ACTIONS(2155), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117857,7 +117302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2233), 38, + ACTIONS(2157), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117896,15 +117341,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8971] = 5, + [7831] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1147), 2, + STATE(1132), 2, sym_line_comment, sym_block_comment, - ACTIONS(2235), 7, + ACTIONS(2159), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117912,7 +117357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2237), 38, + ACTIONS(2161), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117951,15 +117396,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9031] = 5, + [7891] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1148), 2, + STATE(1133), 2, sym_line_comment, sym_block_comment, - ACTIONS(2247), 7, + ACTIONS(2163), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117967,7 +117412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2249), 38, + ACTIONS(2165), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118006,15 +117451,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9091] = 5, + [7951] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1149), 2, + STATE(1134), 2, sym_line_comment, sym_block_comment, - ACTIONS(2251), 7, + ACTIONS(2167), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118022,7 +117467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2253), 38, + ACTIONS(2169), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118061,15 +117506,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9151] = 5, + [8011] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1150), 2, + STATE(1135), 2, sym_line_comment, sym_block_comment, - ACTIONS(2279), 7, + ACTIONS(2171), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118077,7 +117522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2281), 38, + ACTIONS(2173), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118116,15 +117561,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9211] = 5, + [8071] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1151), 2, + STATE(1136), 2, sym_line_comment, sym_block_comment, - ACTIONS(2283), 7, + ACTIONS(2175), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118132,7 +117577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2285), 38, + ACTIONS(2177), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118171,15 +117616,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9271] = 5, + [8131] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1152), 2, + STATE(1137), 2, sym_line_comment, sym_block_comment, - ACTIONS(2287), 7, + ACTIONS(2179), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118187,7 +117632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2289), 38, + ACTIONS(2181), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118226,15 +117671,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9331] = 5, + [8191] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1153), 2, + STATE(1138), 2, sym_line_comment, sym_block_comment, - ACTIONS(2291), 7, + ACTIONS(2183), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118242,7 +117687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2293), 38, + ACTIONS(2185), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118281,15 +117726,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9391] = 5, + [8251] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1154), 2, + STATE(1139), 2, sym_line_comment, sym_block_comment, - ACTIONS(2295), 7, + ACTIONS(2187), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118297,7 +117742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2297), 38, + ACTIONS(2189), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118336,15 +117781,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9451] = 5, + [8311] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1155), 2, + STATE(1140), 2, sym_line_comment, sym_block_comment, - ACTIONS(2299), 7, + ACTIONS(2191), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118352,7 +117797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2301), 38, + ACTIONS(2193), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118391,15 +117836,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9511] = 5, + [8371] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1156), 2, + STATE(1141), 2, sym_line_comment, sym_block_comment, - ACTIONS(2303), 7, + ACTIONS(2195), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118407,7 +117852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2305), 38, + ACTIONS(2197), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118446,15 +117891,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9571] = 5, + [8431] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1157), 2, + STATE(1142), 2, sym_line_comment, sym_block_comment, - ACTIONS(2307), 7, + ACTIONS(2199), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118462,7 +117907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2309), 38, + ACTIONS(2201), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118501,15 +117946,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9631] = 5, + [8491] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1158), 2, + STATE(1143), 2, sym_line_comment, sym_block_comment, - ACTIONS(2311), 7, + ACTIONS(2203), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118517,7 +117962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2313), 38, + ACTIONS(2205), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118556,15 +118001,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9691] = 5, + [8551] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1159), 2, + STATE(1144), 2, sym_line_comment, sym_block_comment, - ACTIONS(2315), 7, + ACTIONS(2207), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118572,7 +118017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2317), 38, + ACTIONS(2209), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118611,15 +118056,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9751] = 5, + [8611] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1160), 2, + STATE(1145), 2, sym_line_comment, sym_block_comment, - ACTIONS(2319), 7, + ACTIONS(2211), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118627,7 +118072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2321), 38, + ACTIONS(2213), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118666,15 +118111,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9811] = 5, + [8671] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1161), 2, + STATE(1146), 2, sym_line_comment, sym_block_comment, - ACTIONS(2323), 7, + ACTIONS(2215), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118682,7 +118127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2325), 38, + ACTIONS(2217), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118721,15 +118166,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9871] = 5, + [8731] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1162), 2, + STATE(1147), 2, sym_line_comment, sym_block_comment, - ACTIONS(2327), 7, + ACTIONS(2219), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118737,7 +118182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2329), 38, + ACTIONS(2221), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118776,15 +118221,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9931] = 5, + [8791] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1163), 2, + STATE(1148), 2, sym_line_comment, sym_block_comment, - ACTIONS(2331), 7, + ACTIONS(2223), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118792,7 +118237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2333), 38, + ACTIONS(2225), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118831,15 +118276,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9991] = 5, + [8851] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1164), 2, + STATE(1149), 2, sym_line_comment, sym_block_comment, - ACTIONS(2735), 7, + ACTIONS(2227), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118847,7 +118292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2737), 38, + ACTIONS(2229), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118886,15 +118331,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10051] = 5, + [8911] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1165), 2, + STATE(1150), 2, sym_line_comment, sym_block_comment, - ACTIONS(2339), 7, + ACTIONS(2231), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118902,7 +118347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2341), 38, + ACTIONS(2233), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118941,15 +118386,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10111] = 5, + [8971] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1166), 2, + STATE(1151), 2, sym_line_comment, sym_block_comment, - ACTIONS(2343), 7, + ACTIONS(2235), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118957,7 +118402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2345), 38, + ACTIONS(2237), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118996,15 +118441,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10171] = 5, + [9031] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1167), 2, + STATE(1152), 2, sym_line_comment, sym_block_comment, - ACTIONS(2347), 7, + ACTIONS(2239), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119012,7 +118457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2349), 38, + ACTIONS(2241), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119051,15 +118496,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10231] = 5, + [9091] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1168), 2, + STATE(1153), 2, sym_line_comment, sym_block_comment, - ACTIONS(2351), 7, + ACTIONS(2243), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119067,7 +118512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2353), 38, + ACTIONS(2245), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119106,15 +118551,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10291] = 5, + [9151] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1169), 2, + STATE(1154), 2, sym_line_comment, sym_block_comment, - ACTIONS(1351), 15, + ACTIONS(1315), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119130,7 +118575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1349), 30, + ACTIONS(1313), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119161,15 +118606,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [10351] = 5, + [9211] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1170), 2, + STATE(1155), 2, sym_line_comment, sym_block_comment, - ACTIONS(2359), 7, + ACTIONS(2259), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119177,7 +118622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2361), 38, + ACTIONS(2261), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119216,15 +118661,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10411] = 5, + [9271] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1171), 2, + STATE(1156), 2, sym_line_comment, sym_block_comment, - ACTIONS(2379), 7, + ACTIONS(2267), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119232,7 +118677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2381), 38, + ACTIONS(2269), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119271,15 +118716,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10471] = 5, + [9331] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1172), 2, + STATE(1157), 2, sym_line_comment, sym_block_comment, - ACTIONS(3610), 15, + ACTIONS(3318), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119295,7 +118740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3608), 30, + ACTIONS(3316), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119326,15 +118771,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [10531] = 5, + [9391] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1173), 2, + STATE(1158), 2, sym_line_comment, sym_block_comment, - ACTIONS(3614), 15, + ACTIONS(3626), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119350,7 +118795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3612), 30, + ACTIONS(3624), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119381,15 +118826,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [10591] = 5, + [9451] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1174), 2, + STATE(1159), 2, sym_line_comment, sym_block_comment, - ACTIONS(3618), 15, + ACTIONS(3630), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119405,7 +118850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3616), 30, + ACTIONS(3628), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119436,15 +118881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [10651] = 5, + [9511] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1175), 2, + STATE(1160), 2, sym_line_comment, sym_block_comment, - ACTIONS(1289), 15, + ACTIONS(1279), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119460,7 +118905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1291), 30, + ACTIONS(1277), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119491,15 +118936,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [10711] = 5, + [9571] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1176), 2, + STATE(1161), 2, sym_line_comment, sym_block_comment, - ACTIONS(3622), 15, + ACTIONS(3634), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119515,7 +118960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3620), 30, + ACTIONS(3632), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119546,15 +118991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [10771] = 5, + [9631] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1177), 2, + STATE(1162), 2, sym_line_comment, sym_block_comment, - ACTIONS(3326), 15, + ACTIONS(3638), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119570,7 +119015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3324), 30, + ACTIONS(3636), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119601,15 +119046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [10831] = 5, + [9691] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1178), 2, + STATE(1163), 2, sym_line_comment, sym_block_comment, - ACTIONS(1263), 15, + ACTIONS(3322), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119625,7 +119070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1261), 30, + ACTIONS(3320), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119656,15 +119101,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [10891] = 5, + [9751] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1179), 2, + STATE(1164), 2, sym_line_comment, sym_block_comment, - ACTIONS(3626), 15, + ACTIONS(1295), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119680,7 +119125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3624), 30, + ACTIONS(1293), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119711,15 +119156,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [10951] = 5, + [9811] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1180), 2, + STATE(1165), 2, sym_line_comment, sym_block_comment, - ACTIONS(1259), 15, + ACTIONS(3642), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119735,7 +119180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1257), 30, + ACTIONS(3640), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119766,15 +119211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [11011] = 5, + [9871] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1181), 2, + STATE(1166), 2, sym_line_comment, sym_block_comment, - ACTIONS(3630), 15, + ACTIONS(3646), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119790,7 +119235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3628), 30, + ACTIONS(3644), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119821,15 +119266,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [11071] = 5, + [9931] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1182), 2, + STATE(1167), 2, sym_line_comment, sym_block_comment, - ACTIONS(2403), 7, + ACTIONS(2255), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119837,7 +119282,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2405), 38, + ACTIONS(2257), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9991] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1168), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3650), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3648), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10051] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1169), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2283), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2285), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119876,15 +119431,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11131] = 5, + [10111] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1183), 2, + STATE(1170), 2, sym_line_comment, sym_block_comment, - ACTIONS(2407), 7, + ACTIONS(2287), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119892,7 +119447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2409), 38, + ACTIONS(2289), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119931,15 +119486,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11191] = 5, + [10171] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1184), 2, + STATE(1171), 2, sym_line_comment, sym_block_comment, - ACTIONS(1033), 15, + ACTIONS(1045), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119955,7 +119510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1035), 30, + ACTIONS(1047), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119986,15 +119541,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [11251] = 5, + [10231] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1185), 2, + STATE(1172), 2, sym_line_comment, sym_block_comment, - ACTIONS(2419), 7, + ACTIONS(2291), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120002,7 +119557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2421), 38, + ACTIONS(2293), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120041,15 +119596,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11311] = 5, + [10291] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1186), 2, + STATE(1173), 2, sym_line_comment, sym_block_comment, - ACTIONS(2431), 7, + ACTIONS(2299), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120057,7 +119612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2433), 38, + ACTIONS(2301), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120096,15 +119651,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11371] = 5, + [10351] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1187), 2, + STATE(1174), 2, sym_line_comment, sym_block_comment, - ACTIONS(2435), 7, + ACTIONS(2303), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120112,7 +119667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2437), 38, + ACTIONS(2305), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120151,15 +119706,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11431] = 5, + [10411] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1188), 2, + STATE(1175), 2, sym_line_comment, sym_block_comment, - ACTIONS(2439), 7, + ACTIONS(2307), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120167,7 +119722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2441), 38, + ACTIONS(2309), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120206,15 +119761,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11491] = 5, + [10471] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1189), 2, + STATE(1176), 2, sym_line_comment, sym_block_comment, - ACTIONS(2443), 7, + ACTIONS(2743), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120222,7 +119777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2445), 38, + ACTIONS(2745), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120261,15 +119816,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11551] = 5, + [10531] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1190), 2, + STATE(1177), 2, sym_line_comment, sym_block_comment, - ACTIONS(2447), 7, + ACTIONS(2311), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120277,7 +119832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2449), 38, + ACTIONS(2313), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120316,15 +119871,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11611] = 5, + [10591] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1191), 2, + STATE(1178), 2, sym_line_comment, sym_block_comment, - ACTIONS(1279), 15, + ACTIONS(1355), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120340,7 +119895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1277), 30, + ACTIONS(1353), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120371,15 +119926,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [11671] = 5, + [10651] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1192), 2, + STATE(1179), 2, sym_line_comment, sym_block_comment, - ACTIONS(1295), 15, + ACTIONS(1359), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120395,7 +119950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1293), 30, + ACTIONS(1357), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120426,180 +119981,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [11731] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1193), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2467), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2469), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [11791] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1194), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2471), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2473), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [11851] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1195), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2475), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2477), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [11911] = 5, + [10711] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1196), 2, + STATE(1180), 2, sym_line_comment, sym_block_comment, - ACTIONS(2479), 7, + ACTIONS(2319), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120607,7 +119997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2481), 38, + ACTIONS(2321), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120646,15 +120036,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11971] = 5, + [10771] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1197), 2, + STATE(1181), 2, sym_line_comment, sym_block_comment, - ACTIONS(2491), 7, + ACTIONS(2323), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120662,7 +120052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2493), 38, + ACTIONS(2325), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120701,15 +120091,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12031] = 5, + [10831] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1198), 2, + STATE(1182), 2, sym_line_comment, sym_block_comment, - ACTIONS(2495), 7, + ACTIONS(2327), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120717,7 +120107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2497), 38, + ACTIONS(2329), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120756,15 +120146,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12091] = 5, + [10891] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1199), 2, + STATE(1183), 2, sym_line_comment, sym_block_comment, - ACTIONS(2499), 7, + ACTIONS(2331), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120772,7 +120162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2501), 38, + ACTIONS(2333), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120811,15 +120201,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12151] = 5, + [10951] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1200), 2, + STATE(1184), 2, sym_line_comment, sym_block_comment, - ACTIONS(2511), 7, + ACTIONS(2335), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120827,7 +120217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2513), 38, + ACTIONS(2337), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120866,15 +120256,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12211] = 5, + [11011] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1201), 2, + STATE(1185), 2, sym_line_comment, sym_block_comment, - ACTIONS(2515), 7, + ACTIONS(2339), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120882,7 +120272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2517), 38, + ACTIONS(2341), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120921,70 +120311,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12271] = 5, + [11071] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1202), 2, + STATE(1186), 2, sym_line_comment, sym_block_comment, - ACTIONS(1303), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(2343), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1301), 30, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2345), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11131] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1187), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2347), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12331] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2349), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11191] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1203), 2, + STATE(1188), 2, sym_line_comment, sym_block_comment, - ACTIONS(2531), 7, + ACTIONS(2351), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120992,7 +120437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2533), 38, + ACTIONS(2353), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121031,15 +120476,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12391] = 5, + [11251] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1204), 2, + STATE(1189), 2, sym_line_comment, sym_block_comment, - ACTIONS(3634), 15, + ACTIONS(1275), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -121055,7 +120500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3632), 30, + ACTIONS(1273), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -121086,15 +120531,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [12451] = 5, + [11311] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1205), 2, + STATE(1190), 2, sym_line_comment, sym_block_comment, - ACTIONS(2563), 7, + ACTIONS(2359), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121102,7 +120547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2565), 38, + ACTIONS(2361), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121141,15 +120586,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12511] = 5, + [11371] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1206), 2, + STATE(1191), 2, sym_line_comment, sym_block_comment, - ACTIONS(2567), 7, + ACTIONS(2371), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121157,7 +120602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2569), 38, + ACTIONS(2373), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121196,15 +120641,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12571] = 5, + [11431] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1207), 2, + STATE(1192), 2, sym_line_comment, sym_block_comment, - ACTIONS(2571), 7, + ACTIONS(2375), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121212,7 +120657,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2573), 38, + ACTIONS(2377), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11491] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1193), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2379), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2381), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121251,15 +120751,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12631] = 5, + [11551] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1208), 2, + STATE(1194), 2, sym_line_comment, sym_block_comment, - ACTIONS(2575), 7, + ACTIONS(2383), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121267,7 +120767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2577), 38, + ACTIONS(2385), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121306,15 +120806,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12691] = 5, + [11611] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1209), 2, + STATE(1195), 2, sym_line_comment, sym_block_comment, - ACTIONS(2579), 7, + ACTIONS(2387), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121322,7 +120822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2581), 38, + ACTIONS(2389), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121361,15 +120861,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12751] = 5, + [11671] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1210), 2, + STATE(1196), 2, sym_line_comment, sym_block_comment, - ACTIONS(2583), 7, + ACTIONS(2395), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121377,7 +120877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2585), 38, + ACTIONS(2397), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121416,15 +120916,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12811] = 5, + [11731] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1211), 2, + STATE(1197), 2, sym_line_comment, sym_block_comment, - ACTIONS(2587), 7, + ACTIONS(2399), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121432,7 +120932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2589), 38, + ACTIONS(2401), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121471,15 +120971,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12871] = 5, + [11791] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1212), 2, + STATE(1198), 2, sym_line_comment, sym_block_comment, - ACTIONS(2591), 7, + ACTIONS(2403), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121487,7 +120987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2593), 38, + ACTIONS(2405), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121526,15 +121026,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12931] = 5, + [11851] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1213), 2, + STATE(1199), 2, sym_line_comment, sym_block_comment, - ACTIONS(2595), 7, + ACTIONS(2407), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121542,7 +121042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2597), 38, + ACTIONS(2409), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121581,15 +121081,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12991] = 5, + [11911] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1214), 2, + STATE(1200), 2, sym_line_comment, sym_block_comment, - ACTIONS(2599), 7, + ACTIONS(2411), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121597,7 +121097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2601), 38, + ACTIONS(2413), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121636,15 +121136,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13051] = 5, + [11971] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1215), 2, + STATE(1201), 2, sym_line_comment, sym_block_comment, - ACTIONS(2603), 7, + ACTIONS(2415), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121652,7 +121152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2605), 38, + ACTIONS(2417), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121691,15 +121191,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13111] = 5, + [12031] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1216), 2, + STATE(1202), 2, sym_line_comment, sym_block_comment, - ACTIONS(2607), 7, + ACTIONS(2419), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121707,7 +121207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2609), 38, + ACTIONS(2421), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121746,15 +121246,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13171] = 5, + [12091] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1217), 2, + STATE(1203), 2, sym_line_comment, sym_block_comment, - ACTIONS(2611), 7, + ACTIONS(2423), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121762,7 +121262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2613), 38, + ACTIONS(2425), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121801,15 +121301,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13231] = 5, + [12151] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1218), 2, + STATE(1204), 2, sym_line_comment, sym_block_comment, - ACTIONS(2615), 7, + ACTIONS(2427), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121817,7 +121317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2617), 38, + ACTIONS(2429), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121856,15 +121356,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13291] = 5, + [12211] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1219), 2, + STATE(1205), 2, sym_line_comment, sym_block_comment, - ACTIONS(2619), 7, + ACTIONS(2431), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121872,7 +121372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2621), 38, + ACTIONS(2433), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121911,15 +121411,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13351] = 5, + [12271] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1220), 2, + STATE(1206), 2, sym_line_comment, sym_block_comment, - ACTIONS(2623), 7, + ACTIONS(2435), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121927,7 +121427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2625), 38, + ACTIONS(2437), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121966,15 +121466,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13411] = 5, + [12331] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1221), 2, + STATE(1207), 2, sym_line_comment, sym_block_comment, - ACTIONS(2627), 7, + ACTIONS(2439), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121982,7 +121482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2629), 38, + ACTIONS(2441), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122021,15 +121521,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13471] = 5, + [12391] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1222), 2, + STATE(1208), 2, sym_line_comment, sym_block_comment, - ACTIONS(2631), 7, + ACTIONS(2443), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122037,7 +121537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2633), 38, + ACTIONS(2445), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122076,15 +121576,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13531] = 5, + [12451] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1223), 2, + STATE(1209), 2, sym_line_comment, sym_block_comment, - ACTIONS(2635), 7, + ACTIONS(2451), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122092,7 +121592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2637), 38, + ACTIONS(2453), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122131,15 +121631,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13591] = 5, + [12511] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1224), 2, + STATE(1210), 2, sym_line_comment, sym_block_comment, - ACTIONS(2639), 7, + ACTIONS(2455), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122147,7 +121647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2641), 38, + ACTIONS(2457), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122186,15 +121686,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13651] = 5, + [12571] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1225), 2, + STATE(1211), 2, sym_line_comment, sym_block_comment, - ACTIONS(2643), 7, + ACTIONS(2459), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122202,7 +121702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2645), 38, + ACTIONS(2461), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122241,15 +121741,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13711] = 5, + [12631] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1226), 2, + STATE(1212), 2, sym_line_comment, sym_block_comment, - ACTIONS(2647), 7, + ACTIONS(2463), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122257,7 +121757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2649), 38, + ACTIONS(2465), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122296,15 +121796,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13771] = 5, + [12691] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1227), 2, + STATE(1213), 2, sym_line_comment, sym_block_comment, - ACTIONS(2651), 7, + ACTIONS(2467), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122312,7 +121812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2653), 38, + ACTIONS(2469), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122351,15 +121851,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13831] = 5, + [12751] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1228), 2, + STATE(1214), 2, sym_line_comment, sym_block_comment, - ACTIONS(2655), 7, + ACTIONS(2471), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122367,7 +121867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2657), 38, + ACTIONS(2473), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122406,15 +121906,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13891] = 5, + [12811] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1229), 2, + STATE(1215), 2, sym_line_comment, sym_block_comment, - ACTIONS(2659), 7, + ACTIONS(2475), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122422,7 +121922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2661), 38, + ACTIONS(2477), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122461,15 +121961,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13951] = 5, + [12871] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1230), 2, + STATE(1216), 2, sym_line_comment, sym_block_comment, - ACTIONS(2663), 7, + ACTIONS(2479), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122477,7 +121977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2665), 38, + ACTIONS(2481), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122516,15 +122016,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14011] = 5, + [12931] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1231), 2, + STATE(1217), 2, sym_line_comment, sym_block_comment, - ACTIONS(2667), 7, + ACTIONS(2483), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122532,7 +122032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2669), 38, + ACTIONS(2485), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122571,15 +122071,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14071] = 5, + [12991] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1232), 2, + STATE(1218), 2, sym_line_comment, sym_block_comment, - ACTIONS(2671), 7, + ACTIONS(2487), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122587,7 +122087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2673), 38, + ACTIONS(2489), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122626,15 +122126,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14131] = 5, + [13051] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1233), 2, + STATE(1219), 2, sym_line_comment, sym_block_comment, - ACTIONS(2675), 7, + ACTIONS(2491), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122642,7 +122142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2677), 38, + ACTIONS(2493), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122681,15 +122181,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14191] = 5, + [13111] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1234), 2, + STATE(1220), 2, sym_line_comment, sym_block_comment, - ACTIONS(2679), 7, + ACTIONS(2495), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122697,7 +122197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2681), 38, + ACTIONS(2497), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122736,15 +122236,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14251] = 5, + [13171] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1235), 2, + STATE(1221), 2, sym_line_comment, sym_block_comment, - ACTIONS(1247), 15, + ACTIONS(1255), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -122760,7 +122260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1245), 30, + ACTIONS(1253), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -122791,15 +122291,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14311] = 5, + [13231] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1236), 2, + STATE(1222), 2, sym_line_comment, sym_block_comment, - ACTIONS(1335), 15, + ACTIONS(1363), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -122815,7 +122315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1333), 30, + ACTIONS(1361), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -122843,18 +122343,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [13291] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3365), 1, + anon_sym_COLON_COLON, + ACTIONS(3652), 1, + anon_sym_BANG, + STATE(1223), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3361), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3359), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_as, anon_sym_else, - [14371] = 5, + [13355] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1237), 2, + STATE(1224), 2, sym_line_comment, sym_block_comment, - ACTIONS(2695), 7, + ACTIONS(2511), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122862,7 +122419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2697), 38, + ACTIONS(2513), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122901,15 +122458,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14431] = 5, + [13415] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1238), 2, + STATE(1225), 2, sym_line_comment, sym_block_comment, - ACTIONS(2703), 7, + ACTIONS(2515), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122917,7 +122474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2705), 38, + ACTIONS(2517), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122956,86 +122513,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14491] = 21, - ACTIONS(29), 1, - anon_sym_LT, + [13475] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1643), 1, - anon_sym_DASH, - ACTIONS(1667), 1, - aux_sym_string_literal_token1, - ACTIONS(1675), 1, - sym__raw_string_literal_start, - ACTIONS(3258), 1, - anon_sym_if, - ACTIONS(3636), 1, - sym_identifier, - ACTIONS(3640), 1, - anon_sym_COLON_COLON, - ACTIONS(3644), 1, - sym_metavariable, - STATE(2512), 1, - sym_scoped_identifier, - STATE(3044), 1, - sym__literal_pattern, - STATE(3483), 1, - sym_bracketed_type, - STATE(3494), 1, - sym_generic_type_with_turbofish, - ACTIONS(1669), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3256), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1239), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1665), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3642), 3, - sym_self, - sym_super, - sym_crate, - STATE(2311), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3638), 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, - [14583] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1240), 2, + STATE(1226), 2, sym_line_comment, sym_block_comment, - ACTIONS(3648), 15, + ACTIONS(1299), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123051,7 +122537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3646), 30, + ACTIONS(1297), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123082,15 +122568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14643] = 5, + [13535] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1241), 2, + STATE(1227), 2, sym_line_comment, sym_block_comment, - ACTIONS(3652), 15, + ACTIONS(3656), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123106,7 +122592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3650), 30, + ACTIONS(3654), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123137,21 +122623,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14703] = 8, + [13595] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - STATE(1242), 2, + STATE(1228), 2, sym_line_comment, sym_block_comment, - ACTIONS(3658), 14, + ACTIONS(3660), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123165,14 +122645,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3654), 28, + ACTIONS(3658), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -123195,70 +122678,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14769] = 5, + [13655] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1243), 2, + STATE(1229), 2, sym_line_comment, sym_block_comment, - ACTIONS(3666), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3664), 30, + ACTIONS(2271), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14829] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2273), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13715] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1244), 2, + STATE(1230), 2, sym_line_comment, sym_block_comment, - ACTIONS(3670), 15, + ACTIONS(3664), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123274,7 +122757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3668), 30, + ACTIONS(3662), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123305,21 +122788,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14889] = 8, + [13775] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - STATE(1245), 2, + STATE(1231), 2, sym_line_comment, sym_block_comment, - ACTIONS(3674), 14, + ACTIONS(3668), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123333,14 +122810,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3672), 28, + ACTIONS(3666), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -123363,15 +122843,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14955] = 5, + [13835] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1246), 2, + STATE(1232), 2, sym_line_comment, sym_block_comment, - ACTIONS(3678), 15, + ACTIONS(3672), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123387,7 +122867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3676), 30, + ACTIONS(3670), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123418,15 +122898,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [15015] = 5, + [13895] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1247), 2, + STATE(1233), 2, sym_line_comment, sym_block_comment, - ACTIONS(2727), 7, + ACTIONS(2531), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123434,7 +122914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2729), 38, + ACTIONS(2533), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123473,15 +122953,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15075] = 5, + [13955] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1248), 2, + STATE(1234), 2, sym_line_comment, sym_block_comment, - ACTIONS(2711), 7, + ACTIONS(2535), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123489,7 +122969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2713), 38, + ACTIONS(2537), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123528,15 +123008,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15135] = 5, + [14015] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1249), 2, + STATE(1235), 2, sym_line_comment, sym_block_comment, - ACTIONS(2207), 7, + ACTIONS(2539), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123544,7 +123024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2209), 38, + ACTIONS(2541), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123583,15 +123063,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15195] = 5, + [14075] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1250), 2, + STATE(1236), 2, sym_line_comment, sym_block_comment, - ACTIONS(1691), 7, + ACTIONS(2543), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123599,7 +123079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1693), 38, + ACTIONS(2545), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123638,15 +123118,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15255] = 5, + [14135] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1251), 2, + STATE(1237), 2, sym_line_comment, sym_block_comment, - ACTIONS(1695), 7, + ACTIONS(2547), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123654,7 +123134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1697), 38, + ACTIONS(2549), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123693,15 +123173,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15315] = 5, + [14195] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1252), 2, + STATE(1238), 2, sym_line_comment, sym_block_comment, - ACTIONS(1699), 7, + ACTIONS(2551), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123709,7 +123189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1701), 38, + ACTIONS(2553), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123748,15 +123228,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15375] = 5, + [14255] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1253), 2, + STATE(1239), 2, sym_line_comment, sym_block_comment, - ACTIONS(1703), 7, + ACTIONS(2555), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123764,7 +123244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1705), 38, + ACTIONS(2557), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123803,15 +123283,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15435] = 5, + [14315] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1254), 2, + STATE(1240), 2, sym_line_comment, sym_block_comment, - ACTIONS(1791), 7, + ACTIONS(2559), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123819,7 +123299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1793), 38, + ACTIONS(2561), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123858,15 +123338,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15495] = 5, + [14375] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1255), 2, + STATE(1241), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 7, + ACTIONS(2563), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123874,7 +123354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2125), 38, + ACTIONS(2565), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123913,15 +123393,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15555] = 5, + [14435] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1256), 2, + STATE(1242), 2, sym_line_comment, sym_block_comment, - ACTIONS(2127), 7, + ACTIONS(2567), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123929,7 +123409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2129), 38, + ACTIONS(2569), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123968,15 +123448,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15615] = 5, + [14495] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1257), 2, + STATE(1243), 2, sym_line_comment, sym_block_comment, - ACTIONS(2131), 7, + ACTIONS(2571), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123984,7 +123464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2133), 38, + ACTIONS(2573), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124023,15 +123503,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15675] = 5, + [14555] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1258), 2, + STATE(1244), 2, sym_line_comment, sym_block_comment, - ACTIONS(2135), 7, + ACTIONS(2575), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124039,7 +123519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2137), 38, + ACTIONS(2577), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124078,15 +123558,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15735] = 5, + [14615] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1259), 2, + STATE(1245), 2, sym_line_comment, sym_block_comment, - ACTIONS(2139), 7, + ACTIONS(2579), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124094,7 +123574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2141), 38, + ACTIONS(2581), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124133,15 +123613,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15795] = 5, + [14675] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1260), 2, + STATE(1246), 2, sym_line_comment, sym_block_comment, - ACTIONS(2147), 7, + ACTIONS(2583), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124149,7 +123629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2149), 38, + ACTIONS(2585), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124188,15 +123668,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15855] = 5, + [14735] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1261), 2, + STATE(1247), 2, sym_line_comment, sym_block_comment, - ACTIONS(2151), 7, + ACTIONS(2587), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124204,7 +123684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2153), 38, + ACTIONS(2589), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124243,15 +123723,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15915] = 5, + [14795] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1262), 2, + STATE(1248), 2, sym_line_comment, sym_block_comment, - ACTIONS(2167), 7, + ACTIONS(2591), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124259,7 +123739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2169), 38, + ACTIONS(2593), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124298,15 +123778,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15975] = 5, + [14855] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1263), 2, + STATE(1249), 2, sym_line_comment, sym_block_comment, - ACTIONS(2171), 7, + ACTIONS(2595), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124314,7 +123794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2173), 38, + ACTIONS(2597), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124353,15 +123833,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16035] = 5, + [14915] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1264), 2, + STATE(1250), 2, sym_line_comment, sym_block_comment, - ACTIONS(2179), 7, + ACTIONS(2599), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124369,7 +123849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2181), 38, + ACTIONS(2601), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124408,15 +123888,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16095] = 5, + [14975] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1265), 2, + STATE(1251), 2, sym_line_comment, sym_block_comment, - ACTIONS(2199), 7, + ACTIONS(2603), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124424,7 +123904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2201), 38, + ACTIONS(2605), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124463,15 +123943,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16155] = 5, + [15035] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1266), 2, + STATE(1252), 2, sym_line_comment, sym_block_comment, - ACTIONS(2203), 7, + ACTIONS(2607), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124479,7 +123959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2205), 38, + ACTIONS(2609), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124518,15 +123998,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16215] = 5, + [15095] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1267), 2, + STATE(1253), 2, sym_line_comment, sym_block_comment, - ACTIONS(1267), 15, + ACTIONS(1283), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -124542,7 +124022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1265), 30, + ACTIONS(1281), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124573,15 +124053,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [16275] = 5, + [15155] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1268), 2, + STATE(1254), 2, sym_line_comment, sym_block_comment, - ACTIONS(2243), 7, + ACTIONS(2611), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124589,7 +124069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2245), 38, + ACTIONS(2613), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124628,70 +124108,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16335] = 5, + [15215] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1269), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(977), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(979), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [16395] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1270), 2, + STATE(1255), 2, sym_line_comment, sym_block_comment, - ACTIONS(2259), 7, + ACTIONS(2619), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124699,7 +124124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2261), 38, + ACTIONS(2621), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124738,15 +124163,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16455] = 5, + [15275] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1271), 2, + STATE(1256), 2, sym_line_comment, sym_block_comment, - ACTIONS(2263), 7, + ACTIONS(2623), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124754,7 +124179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2265), 38, + ACTIONS(2625), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124793,15 +124218,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16515] = 5, + [15335] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1272), 2, + STATE(1257), 2, sym_line_comment, sym_block_comment, - ACTIONS(2267), 7, + ACTIONS(2627), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124809,7 +124234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2269), 38, + ACTIONS(2629), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124848,15 +124273,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16575] = 5, + [15395] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1273), 2, + STATE(1258), 2, sym_line_comment, sym_block_comment, - ACTIONS(2271), 7, + ACTIONS(2631), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124864,7 +124289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2273), 38, + ACTIONS(2633), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124903,15 +124328,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16635] = 5, + [15455] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1274), 2, + STATE(1259), 2, sym_line_comment, sym_block_comment, - ACTIONS(2275), 7, + ACTIONS(2635), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124919,7 +124344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2277), 38, + ACTIONS(2637), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124958,15 +124383,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16695] = 5, + [15515] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1275), 2, + STATE(1260), 2, sym_line_comment, sym_block_comment, - ACTIONS(1687), 7, + ACTIONS(2639), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124974,7 +124399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1689), 38, + ACTIONS(2641), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125013,15 +124438,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16755] = 5, + [15575] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1276), 2, + STATE(1261), 2, sym_line_comment, sym_block_comment, - ACTIONS(2363), 7, + ACTIONS(2643), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125029,7 +124454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2365), 38, + ACTIONS(2645), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125068,15 +124493,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16815] = 5, + [15635] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1277), 2, + STATE(1262), 2, sym_line_comment, sym_block_comment, - ACTIONS(2367), 7, + ACTIONS(2647), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125084,7 +124509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2369), 38, + ACTIONS(2649), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125123,15 +124548,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16875] = 5, + [15695] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1278), 2, + STATE(1263), 2, sym_line_comment, sym_block_comment, - ACTIONS(2371), 7, + ACTIONS(2651), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125139,7 +124564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2373), 38, + ACTIONS(2653), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125178,15 +124603,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16935] = 5, + [15755] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1279), 2, + STATE(1264), 2, sym_line_comment, sym_block_comment, - ACTIONS(2375), 7, + ACTIONS(2655), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125194,7 +124619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2377), 38, + ACTIONS(2657), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125233,15 +124658,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16995] = 5, + [15815] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1280), 2, + STATE(1265), 2, sym_line_comment, sym_block_comment, - ACTIONS(2387), 7, + ACTIONS(2659), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125249,7 +124674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2389), 38, + ACTIONS(2661), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125288,15 +124713,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17055] = 5, + [15875] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1281), 2, + STATE(1266), 2, sym_line_comment, sym_block_comment, - ACTIONS(2391), 7, + ACTIONS(2663), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125304,7 +124729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2393), 38, + ACTIONS(2665), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125343,15 +124768,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17115] = 5, + [15935] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1282), 2, + STATE(1267), 2, sym_line_comment, sym_block_comment, - ACTIONS(2395), 7, + ACTIONS(2667), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125359,7 +124784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2397), 38, + ACTIONS(2669), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125398,15 +124823,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17175] = 5, + [15995] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1283), 2, + STATE(1268), 2, sym_line_comment, sym_block_comment, - ACTIONS(2399), 7, + ACTIONS(2671), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125414,7 +124839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2401), 38, + ACTIONS(2673), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125453,15 +124878,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17235] = 5, + [16055] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1284), 2, + STATE(1269), 2, sym_line_comment, sym_block_comment, - ACTIONS(2423), 7, + ACTIONS(2675), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125469,7 +124894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2425), 38, + ACTIONS(2677), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125508,15 +124933,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17295] = 5, + [16115] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1285), 2, + STATE(1270), 2, sym_line_comment, sym_block_comment, - ACTIONS(2455), 7, + ACTIONS(2679), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125524,7 +124949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2457), 38, + ACTIONS(2681), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125563,15 +124988,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17355] = 5, + [16175] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1286), 2, + STATE(1271), 2, sym_line_comment, sym_block_comment, - ACTIONS(2463), 7, + ACTIONS(2687), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125579,7 +125004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2465), 38, + ACTIONS(2689), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125618,15 +125043,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17415] = 5, + [16235] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1287), 2, + STATE(1272), 2, sym_line_comment, sym_block_comment, - ACTIONS(2483), 7, + ACTIONS(2691), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125634,7 +125059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2485), 38, + ACTIONS(2693), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125673,15 +125098,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17475] = 5, + [16295] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1288), 2, + STATE(1273), 2, sym_line_comment, sym_block_comment, - ACTIONS(2487), 7, + ACTIONS(2695), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125689,7 +125114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2489), 38, + ACTIONS(2697), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125728,15 +125153,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17535] = 5, + [16355] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1289), 2, + STATE(1274), 2, sym_line_comment, sym_block_comment, - ACTIONS(2503), 7, + ACTIONS(2699), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125744,7 +125169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2505), 38, + ACTIONS(2701), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125783,15 +125208,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17595] = 5, + [16415] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1290), 2, + STATE(1275), 2, sym_line_comment, sym_block_comment, - ACTIONS(2507), 7, + ACTIONS(2703), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125799,7 +125224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2509), 38, + ACTIONS(2705), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125838,15 +125263,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17655] = 5, + [16475] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1291), 2, + STATE(1276), 2, sym_line_comment, sym_block_comment, - ACTIONS(2527), 7, + ACTIONS(2707), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125854,7 +125279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2529), 38, + ACTIONS(2709), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125893,15 +125318,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17715] = 5, + [16535] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1292), 2, + STATE(1277), 2, sym_line_comment, sym_block_comment, - ACTIONS(2535), 7, + ACTIONS(2711), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125909,7 +125334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2537), 38, + ACTIONS(2713), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125948,15 +125373,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17775] = 5, + [16595] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1293), 2, + STATE(1278), 2, sym_line_comment, sym_block_comment, - ACTIONS(2547), 7, + ACTIONS(2715), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125964,7 +125389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2549), 38, + ACTIONS(2717), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126003,15 +125428,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17835] = 5, + [16655] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1294), 2, + STATE(1279), 2, sym_line_comment, sym_block_comment, - ACTIONS(2551), 7, + ACTIONS(2719), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126019,7 +125444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2553), 38, + ACTIONS(2721), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126058,15 +125483,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17895] = 5, + [16715] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1295), 2, + STATE(1280), 2, sym_line_comment, sym_block_comment, - ACTIONS(2555), 7, + ACTIONS(2723), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126074,7 +125499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2557), 38, + ACTIONS(2725), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126113,15 +125538,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17955] = 5, + [16775] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1296), 2, + STATE(1281), 2, sym_line_comment, sym_block_comment, - ACTIONS(2559), 7, + ACTIONS(2727), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126129,7 +125554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2561), 38, + ACTIONS(2729), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126168,15 +125593,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18015] = 5, + [16835] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1297), 2, + STATE(1282), 2, sym_line_comment, sym_block_comment, - ACTIONS(1255), 15, + ACTIONS(1271), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -126192,7 +125617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1253), 30, + ACTIONS(1269), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -126223,70 +125648,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18075] = 5, + [16895] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1298), 2, + STATE(1283), 2, sym_line_comment, sym_block_comment, - ACTIONS(3682), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3680), 30, + ACTIONS(2735), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18135] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2737), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16955] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1299), 2, + STATE(1284), 2, sym_line_comment, sym_block_comment, - ACTIONS(2723), 7, + ACTIONS(2739), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126294,7 +125719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2725), 38, + ACTIONS(2741), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126333,15 +125758,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18195] = 5, + [17015] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1300), 2, + STATE(1285), 2, sym_line_comment, sym_block_comment, - ACTIONS(2335), 7, + ACTIONS(2275), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126349,7 +125774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2337), 38, + ACTIONS(2277), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126388,113 +125813,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18255] = 5, + [17075] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1301), 2, + STATE(1286), 2, sym_line_comment, sym_block_comment, - ACTIONS(965), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(967), 30, + ACTIONS(2279), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18315] = 21, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1643), 1, - anon_sym_DASH, - ACTIONS(1667), 1, - aux_sym_string_literal_token1, - ACTIONS(1675), 1, - sym__raw_string_literal_start, - ACTIONS(3246), 1, - anon_sym_if, - ACTIONS(3640), 1, anon_sym_COLON_COLON, - ACTIONS(3684), 1, - sym_identifier, - ACTIONS(3690), 1, + anon_sym_POUND, sym_metavariable, - STATE(2523), 1, - sym_scoped_identifier, - STATE(2783), 1, - sym__literal_pattern, - STATE(3483), 1, - sym_bracketed_type, - STATE(3494), 1, - sym_generic_type_with_turbofish, - ACTIONS(1669), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3244), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1302), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1665), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3688), 3, - sym_self, - sym_super, - sym_crate, - STATE(2311), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3686), 19, + ACTIONS(2281), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126512,17 +125847,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - [18407] = 5, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17135] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1303), 2, + STATE(1287), 2, sym_line_comment, sym_block_comment, - ACTIONS(3694), 15, + ACTIONS(3676), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -126538,7 +125892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3692), 30, + ACTIONS(3674), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -126569,15 +125923,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18467] = 5, + [17195] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1304), 2, + STATE(1288), 2, sym_line_comment, sym_block_comment, - ACTIONS(1707), 7, + ACTIONS(1699), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126585,7 +125939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1709), 38, + ACTIONS(1701), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126624,12 +125978,67 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18527] = 5, + [17255] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1305), 2, + STATE(1289), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1703), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1705), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17315] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1290), 2, sym_line_comment, sym_block_comment, ACTIONS(1711), 7, @@ -126679,12 +126088,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18587] = 5, + [17375] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1306), 2, + STATE(1291), 2, sym_line_comment, sym_block_comment, ACTIONS(1715), 7, @@ -126734,12 +126143,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18647] = 5, + [17435] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1307), 2, + STATE(1292), 2, sym_line_comment, sym_block_comment, ACTIONS(1719), 7, @@ -126789,12 +126198,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18707] = 5, + [17495] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1308), 2, + STATE(1293), 2, sym_line_comment, sym_block_comment, ACTIONS(1723), 7, @@ -126844,12 +126253,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18767] = 5, + [17555] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1309), 2, + STATE(1294), 2, sym_line_comment, sym_block_comment, ACTIONS(1727), 7, @@ -126899,12 +126308,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18827] = 5, + [17615] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1310), 2, + STATE(1295), 2, sym_line_comment, sym_block_comment, ACTIONS(1731), 7, @@ -126954,12 +126363,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18887] = 5, + [17675] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1311), 2, + STATE(1296), 2, sym_line_comment, sym_block_comment, ACTIONS(1735), 7, @@ -127009,12 +126418,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18947] = 5, + [17735] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1312), 2, + STATE(1297), 2, sym_line_comment, sym_block_comment, ACTIONS(1739), 7, @@ -127064,12 +126473,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19007] = 5, + [17795] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1313), 2, + STATE(1298), 2, sym_line_comment, sym_block_comment, ACTIONS(1743), 7, @@ -127119,12 +126528,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19067] = 5, + [17855] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1314), 2, + STATE(1299), 2, sym_line_comment, sym_block_comment, ACTIONS(1747), 7, @@ -127174,12 +126583,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19127] = 5, + [17915] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1315), 2, + STATE(1300), 2, sym_line_comment, sym_block_comment, ACTIONS(1751), 7, @@ -127229,12 +126638,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19187] = 5, + [17975] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1316), 2, + STATE(1301), 2, sym_line_comment, sym_block_comment, ACTIONS(1755), 7, @@ -127284,12 +126693,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19247] = 5, + [18035] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1317), 2, + STATE(1302), 2, sym_line_comment, sym_block_comment, ACTIONS(1759), 7, @@ -127339,12 +126748,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19307] = 5, + [18095] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1318), 2, + STATE(1303), 2, sym_line_comment, sym_block_comment, ACTIONS(1763), 7, @@ -127394,12 +126803,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19367] = 5, + [18155] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1319), 2, + STATE(1304), 2, sym_line_comment, sym_block_comment, ACTIONS(1767), 7, @@ -127449,12 +126858,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19427] = 5, + [18215] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1320), 2, + STATE(1305), 2, sym_line_comment, sym_block_comment, ACTIONS(1771), 7, @@ -127504,12 +126913,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19487] = 5, + [18275] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1321), 2, + STATE(1306), 2, sym_line_comment, sym_block_comment, ACTIONS(1775), 7, @@ -127559,12 +126968,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19547] = 5, + [18335] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1322), 2, + STATE(1307), 2, sym_line_comment, sym_block_comment, ACTIONS(1779), 7, @@ -127614,12 +127023,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19607] = 5, + [18395] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1323), 2, + STATE(1308), 2, sym_line_comment, sym_block_comment, ACTIONS(1783), 7, @@ -127669,12 +127078,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19667] = 5, + [18455] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1324), 2, + STATE(1309), 2, sym_line_comment, sym_block_comment, ACTIONS(1787), 7, @@ -127724,15 +127133,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19727] = 5, + [18515] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1325), 2, + STATE(1310), 2, sym_line_comment, sym_block_comment, - ACTIONS(1795), 7, + ACTIONS(1791), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127740,7 +127149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1797), 38, + ACTIONS(1793), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127779,12 +127188,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19787] = 5, + [18575] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1326), 2, + STATE(1311), 2, sym_line_comment, sym_block_comment, ACTIONS(1799), 7, @@ -127834,67 +127243,67 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19847] = 5, + [18635] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1327), 2, + STATE(1312), 2, sym_line_comment, sym_block_comment, - ACTIONS(3698), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3696), 30, + ACTIONS(1803), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19907] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1805), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18695] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1328), 2, + STATE(1313), 2, sym_line_comment, sym_block_comment, ACTIONS(1807), 7, @@ -127944,12 +127353,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19967] = 5, + [18755] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1329), 2, + STATE(1314), 2, sym_line_comment, sym_block_comment, ACTIONS(1811), 7, @@ -127999,12 +127408,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20027] = 5, + [18815] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1330), 2, + STATE(1315), 2, sym_line_comment, sym_block_comment, ACTIONS(1815), 7, @@ -128054,12 +127463,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20087] = 5, + [18875] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1331), 2, + STATE(1316), 2, sym_line_comment, sym_block_comment, ACTIONS(1819), 7, @@ -128109,12 +127518,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20147] = 5, + [18935] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1332), 2, + STATE(1317), 2, sym_line_comment, sym_block_comment, ACTIONS(1823), 7, @@ -128164,12 +127573,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20207] = 5, + [18995] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1333), 2, + STATE(1318), 2, sym_line_comment, sym_block_comment, ACTIONS(1827), 7, @@ -128219,12 +127628,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20267] = 5, + [19055] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1334), 2, + STATE(1319), 2, sym_line_comment, sym_block_comment, ACTIONS(1831), 7, @@ -128274,12 +127683,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20327] = 5, + [19115] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1335), 2, + STATE(1320), 2, sym_line_comment, sym_block_comment, ACTIONS(1835), 7, @@ -128329,12 +127738,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20387] = 5, + [19175] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1336), 2, + STATE(1321), 2, sym_line_comment, sym_block_comment, ACTIONS(1839), 7, @@ -128384,15 +127793,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20447] = 5, + [19235] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1322), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1843), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1845), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19295] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1323), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1847), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1849), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19355] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1337), 2, + STATE(1324), 2, sym_line_comment, sym_block_comment, - ACTIONS(1843), 7, + ACTIONS(1851), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128400,7 +127919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1845), 38, + ACTIONS(1853), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128439,15 +127958,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20507] = 5, + [19415] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1338), 2, + STATE(1325), 2, sym_line_comment, sym_block_comment, - ACTIONS(1847), 7, + ACTIONS(1695), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128455,7 +127974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1849), 38, + ACTIONS(1697), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128494,15 +128013,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20567] = 5, + [19475] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1339), 2, + STATE(1326), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 7, + ACTIONS(1855), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128510,7 +128029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1853), 38, + ACTIONS(1857), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128549,15 +128068,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20627] = 5, + [19535] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1340), 2, + STATE(1327), 2, sym_line_comment, sym_block_comment, - ACTIONS(1855), 7, + ACTIONS(1859), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128565,7 +128084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1857), 38, + ACTIONS(1861), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128604,15 +128123,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20687] = 5, + [19595] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1341), 2, + STATE(1328), 2, sym_line_comment, sym_block_comment, - ACTIONS(1859), 7, + ACTIONS(1863), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128620,7 +128139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1861), 38, + ACTIONS(1865), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128659,15 +128178,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20747] = 5, + [19655] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1342), 2, + STATE(1329), 2, sym_line_comment, sym_block_comment, - ACTIONS(1863), 7, + ACTIONS(1867), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128675,7 +128194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1865), 38, + ACTIONS(1869), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128714,23 +128233,58 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20807] = 5, + [19715] = 21, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1343), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1867), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1647), 1, + anon_sym_DASH, + ACTIONS(1671), 1, + aux_sym_string_literal_token1, + ACTIONS(1679), 1, + sym__raw_string_literal_start, + ACTIONS(3266), 1, + anon_sym_if, + ACTIONS(3678), 1, + sym_identifier, + ACTIONS(3682), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3686), 1, sym_metavariable, - ACTIONS(1869), 38, + STATE(2514), 1, + sym_scoped_identifier, + STATE(2858), 1, + sym__literal_pattern, + STATE(3494), 1, + sym_bracketed_type, + STATE(3507), 1, + sym_generic_type_with_turbofish, + ACTIONS(1673), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3264), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1330), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1669), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3684), 3, + sym_self, + sym_super, + sym_crate, + STATE(2305), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3680), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128748,36 +128302,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20867] = 5, + [19807] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1344), 2, + STATE(1331), 2, sym_line_comment, sym_block_comment, - ACTIONS(1871), 7, + ACTIONS(1875), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128785,7 +128320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1873), 38, + ACTIONS(1877), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128824,15 +128359,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20927] = 5, + [19867] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1345), 2, + STATE(1332), 2, sym_line_comment, sym_block_comment, - ACTIONS(1875), 7, + ACTIONS(1879), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128840,7 +128375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1877), 38, + ACTIONS(1881), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128879,15 +128414,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20987] = 5, + [19927] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1346), 2, + STATE(1333), 2, sym_line_comment, sym_block_comment, - ACTIONS(1879), 7, + ACTIONS(1883), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128895,7 +128430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1881), 38, + ACTIONS(1885), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128934,15 +128469,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21047] = 5, + [19987] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1347), 2, + STATE(1334), 2, sym_line_comment, sym_block_comment, - ACTIONS(1883), 7, + ACTIONS(1887), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128950,7 +128485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1885), 38, + ACTIONS(1889), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128989,15 +128524,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21107] = 5, + [20047] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1348), 2, + STATE(1335), 2, sym_line_comment, sym_block_comment, - ACTIONS(1887), 7, + ACTIONS(1307), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1305), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [20107] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1336), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1303), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1301), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [20167] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1337), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2295), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129005,7 +128650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1889), 38, + ACTIONS(2297), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129044,15 +128689,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21167] = 5, + [20227] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1349), 2, + STATE(1338), 2, sym_line_comment, sym_block_comment, - ACTIONS(1891), 7, + ACTIONS(1895), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129060,7 +128705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1893), 38, + ACTIONS(1897), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129099,15 +128744,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21227] = 5, + [20287] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1350), 2, + STATE(1339), 2, sym_line_comment, sym_block_comment, - ACTIONS(1895), 7, + ACTIONS(1899), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129115,7 +128760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1897), 38, + ACTIONS(1901), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129154,15 +128799,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21287] = 5, + [20347] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1351), 2, + STATE(1340), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 7, + ACTIONS(1903), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129170,7 +128815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1901), 38, + ACTIONS(1905), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129209,15 +128854,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21347] = 5, + [20407] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1352), 2, + STATE(1341), 2, sym_line_comment, sym_block_comment, - ACTIONS(1903), 7, + ACTIONS(1907), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129225,7 +128870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1905), 38, + ACTIONS(1909), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129264,177 +128909,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21407] = 5, + [20467] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1353), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1347), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1345), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [21467] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1354), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3702), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3700), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [21527] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1355), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3706), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3704), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [21587] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1356), 2, + STATE(1342), 2, sym_line_comment, sym_block_comment, ACTIONS(1911), 7, @@ -129484,12 +128964,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21647] = 5, + [20527] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1357), 2, + STATE(1343), 2, sym_line_comment, sym_block_comment, ACTIONS(1915), 7, @@ -129539,12 +129019,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21707] = 5, + [20587] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1358), 2, + STATE(1344), 2, sym_line_comment, sym_block_comment, ACTIONS(1919), 7, @@ -129594,12 +129074,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21767] = 5, + [20647] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1359), 2, + STATE(1345), 2, sym_line_comment, sym_block_comment, ACTIONS(1923), 7, @@ -129649,12 +129129,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21827] = 5, + [20707] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1360), 2, + STATE(1346), 2, sym_line_comment, sym_block_comment, ACTIONS(1927), 7, @@ -129704,12 +129184,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21887] = 5, + [20767] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1361), 2, + STATE(1347), 2, sym_line_comment, sym_block_comment, ACTIONS(1931), 7, @@ -129759,12 +129239,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21947] = 5, + [20827] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1362), 2, + STATE(1348), 2, sym_line_comment, sym_block_comment, ACTIONS(1935), 7, @@ -129814,15 +129294,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22007] = 5, + [20887] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1363), 2, + STATE(1349), 2, sym_line_comment, sym_block_comment, - ACTIONS(1939), 7, + ACTIONS(1943), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129830,7 +129310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1941), 38, + ACTIONS(1945), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129869,15 +129349,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22067] = 5, + [20947] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1364), 2, + STATE(1350), 2, sym_line_comment, sym_block_comment, - ACTIONS(1943), 7, + ACTIONS(1947), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129885,7 +129365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1945), 38, + ACTIONS(1949), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129924,15 +129404,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22127] = 5, + [21007] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1365), 2, + STATE(1351), 2, sym_line_comment, sym_block_comment, - ACTIONS(1947), 7, + ACTIONS(1951), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129940,7 +129420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1949), 38, + ACTIONS(1953), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129979,12 +129459,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22187] = 5, + [21067] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1366), 2, + STATE(1352), 2, sym_line_comment, sym_block_comment, ACTIONS(1955), 7, @@ -130034,70 +129514,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22247] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1367), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3710), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3708), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [22307] = 5, + [21127] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1368), 2, + STATE(1353), 2, sym_line_comment, sym_block_comment, - ACTIONS(1963), 7, + ACTIONS(1959), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130105,7 +129530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1965), 38, + ACTIONS(1961), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130144,15 +129569,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22367] = 5, + [21187] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1369), 2, + STATE(1354), 2, sym_line_comment, sym_block_comment, - ACTIONS(1967), 7, + ACTIONS(1963), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130160,7 +129585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1969), 38, + ACTIONS(1965), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130199,15 +129624,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22427] = 5, + [21247] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1370), 2, + STATE(1355), 2, sym_line_comment, sym_block_comment, - ACTIONS(1971), 7, + ACTIONS(1967), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130215,7 +129640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1973), 38, + ACTIONS(1969), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130254,15 +129679,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22487] = 5, + [21307] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1371), 2, + STATE(1356), 2, sym_line_comment, sym_block_comment, - ACTIONS(1975), 7, + ACTIONS(1971), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130270,7 +129695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1977), 38, + ACTIONS(1973), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130309,15 +129734,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22547] = 5, + [21367] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1372), 2, + STATE(1357), 2, sym_line_comment, sym_block_comment, - ACTIONS(1979), 7, + ACTIONS(1975), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130325,7 +129750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1981), 38, + ACTIONS(1977), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130364,15 +129789,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22607] = 5, + [21427] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1373), 2, + STATE(1358), 2, sym_line_comment, sym_block_comment, - ACTIONS(1983), 7, + ACTIONS(1979), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130380,7 +129805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1985), 38, + ACTIONS(1981), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130419,15 +129844,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22667] = 5, + [21487] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1374), 2, + STATE(1359), 2, sym_line_comment, sym_block_comment, - ACTIONS(1987), 7, + ACTIONS(1983), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130435,7 +129860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1989), 38, + ACTIONS(1985), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130474,15 +129899,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22727] = 5, + [21547] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1375), 2, + STATE(1360), 2, sym_line_comment, sym_block_comment, - ACTIONS(1991), 7, + ACTIONS(1987), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130490,7 +129915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1993), 38, + ACTIONS(1989), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130529,15 +129954,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22787] = 5, + [21607] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1376), 2, + STATE(1361), 2, sym_line_comment, sym_block_comment, - ACTIONS(1995), 7, + ACTIONS(1991), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130545,7 +129970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1997), 38, + ACTIONS(1993), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130584,15 +130009,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22847] = 5, + [21667] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1377), 2, + STATE(1362), 2, sym_line_comment, sym_block_comment, - ACTIONS(1999), 7, + ACTIONS(1995), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130600,7 +130025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2001), 38, + ACTIONS(1997), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130639,15 +130064,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22907] = 5, + [21727] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1378), 2, + STATE(1363), 2, sym_line_comment, sym_block_comment, - ACTIONS(2003), 7, + ACTIONS(1999), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130655,7 +130080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2005), 38, + ACTIONS(2001), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130694,15 +130119,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22967] = 5, + [21787] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1379), 2, + STATE(1364), 2, sym_line_comment, sym_block_comment, - ACTIONS(2007), 7, + ACTIONS(2003), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130710,7 +130135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2009), 38, + ACTIONS(2005), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130749,15 +130174,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23027] = 5, + [21847] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1380), 2, + STATE(1365), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 7, + ACTIONS(2007), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130765,7 +130190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2013), 38, + ACTIONS(2009), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130804,15 +130229,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23087] = 5, + [21907] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1381), 2, + STATE(1366), 2, sym_line_comment, sym_block_comment, - ACTIONS(2015), 7, + ACTIONS(2011), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130820,7 +130245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2017), 38, + ACTIONS(2013), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130859,15 +130284,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23147] = 5, + [21967] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1382), 2, + STATE(1367), 2, sym_line_comment, sym_block_comment, - ACTIONS(2019), 7, + ACTIONS(2015), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130875,7 +130300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2021), 38, + ACTIONS(2017), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130914,15 +130339,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23207] = 5, + [22027] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1383), 2, + STATE(1368), 2, sym_line_comment, sym_block_comment, - ACTIONS(2023), 7, + ACTIONS(2019), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130930,7 +130355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2025), 38, + ACTIONS(2021), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130969,15 +130394,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23267] = 5, + [22087] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1384), 2, + STATE(1369), 2, sym_line_comment, sym_block_comment, - ACTIONS(2027), 7, + ACTIONS(2023), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130985,7 +130410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2029), 38, + ACTIONS(2025), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131024,15 +130449,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23327] = 5, + [22147] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1385), 2, + STATE(1370), 2, sym_line_comment, sym_block_comment, - ACTIONS(2031), 7, + ACTIONS(2027), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131040,7 +130465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2033), 38, + ACTIONS(2029), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131079,15 +130504,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23387] = 5, + [22207] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1386), 2, + STATE(1371), 2, sym_line_comment, sym_block_comment, - ACTIONS(2035), 7, + ACTIONS(2031), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131095,7 +130520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2037), 38, + ACTIONS(2033), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131134,15 +130559,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23447] = 5, + [22267] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1387), 2, + STATE(1372), 2, sym_line_comment, sym_block_comment, - ACTIONS(2039), 7, + ACTIONS(2035), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131150,7 +130575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2041), 38, + ACTIONS(2037), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131189,12 +130614,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23507] = 5, + [22327] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1388), 2, + STATE(1373), 2, sym_line_comment, sym_block_comment, ACTIONS(2043), 7, @@ -131244,12 +130669,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23567] = 5, + [22387] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1389), 2, + STATE(1374), 2, sym_line_comment, sym_block_comment, ACTIONS(2047), 7, @@ -131299,12 +130724,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23627] = 5, + [22447] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1390), 2, + STATE(1375), 2, sym_line_comment, sym_block_comment, ACTIONS(2051), 7, @@ -131354,12 +130779,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23687] = 5, + [22507] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1391), 2, + STATE(1376), 2, sym_line_comment, sym_block_comment, ACTIONS(2055), 7, @@ -131409,12 +130834,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23747] = 5, + [22567] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1392), 2, + STATE(1377), 2, sym_line_comment, sym_block_comment, ACTIONS(2059), 7, @@ -131464,12 +130889,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23807] = 5, + [22627] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1393), 2, + STATE(1378), 2, sym_line_comment, sym_block_comment, ACTIONS(2063), 7, @@ -131519,12 +130944,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23867] = 5, + [22687] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1394), 2, + STATE(1379), 2, sym_line_comment, sym_block_comment, ACTIONS(2067), 7, @@ -131574,12 +130999,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23927] = 5, + [22747] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1395), 2, + STATE(1380), 2, sym_line_comment, sym_block_comment, ACTIONS(2071), 7, @@ -131629,12 +131054,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23987] = 5, + [22807] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1396), 2, + STATE(1381), 2, sym_line_comment, sym_block_comment, ACTIONS(2075), 7, @@ -131684,12 +131109,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24047] = 5, + [22867] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1397), 2, + STATE(1382), 2, sym_line_comment, sym_block_comment, ACTIONS(2079), 7, @@ -131739,12 +131164,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24107] = 5, + [22927] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1398), 2, + STATE(1383), 2, sym_line_comment, sym_block_comment, ACTIONS(2083), 7, @@ -131794,12 +131219,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24167] = 5, + [22987] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1399), 2, + STATE(1384), 2, sym_line_comment, sym_block_comment, ACTIONS(2087), 7, @@ -131849,12 +131274,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24227] = 5, + [23047] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1400), 2, + STATE(1385), 2, sym_line_comment, sym_block_comment, ACTIONS(2091), 7, @@ -131904,12 +131329,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24287] = 5, + [23107] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1401), 2, + STATE(1386), 2, sym_line_comment, sym_block_comment, ACTIONS(2095), 7, @@ -131959,12 +131384,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24347] = 5, + [23167] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1402), 2, + STATE(1387), 2, sym_line_comment, sym_block_comment, ACTIONS(2099), 7, @@ -132014,12 +131439,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24407] = 5, + [23227] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1403), 2, + STATE(1388), 2, sym_line_comment, sym_block_comment, ACTIONS(2103), 7, @@ -132069,15 +131494,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24467] = 5, + [23287] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1404), 2, + STATE(1389), 2, sym_line_comment, sym_block_comment, - ACTIONS(2107), 7, + ACTIONS(1325), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1327), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23347] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1390), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2315), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132085,7 +131565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2109), 38, + ACTIONS(2317), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132124,23 +131604,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24527] = 5, + [23407] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1405), 2, + STATE(1391), 2, sym_line_comment, sym_block_comment, - ACTIONS(2111), 7, + ACTIONS(3690), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2113), 38, + ACTIONS(3688), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132161,41 +131647,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [24587] = 5, + [23467] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1406), 2, + STATE(1392), 2, sym_line_comment, sym_block_comment, - ACTIONS(2115), 7, + ACTIONS(3694), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2117), 38, + ACTIONS(3692), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132216,41 +131702,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [24647] = 5, + [23527] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1407), 2, + STATE(1393), 2, sym_line_comment, sym_block_comment, - ACTIONS(2119), 7, + ACTIONS(3698), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2121), 38, + ACTIONS(3696), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132271,36 +131757,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [24707] = 6, + [23587] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3714), 2, + STATE(1394), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3702), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, anon_sym_COLON_COLON, - STATE(1408), 2, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3700), 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, + [23647] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1395), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3706), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3704), 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, + [23707] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1396), 2, sym_line_comment, sym_block_comment, - ACTIONS(3716), 15, + ACTIONS(3710), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132316,12 +131903,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3712), 28, + ACTIONS(3708), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -132343,17 +131931,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24769] = 5, + [23767] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1409), 2, + STATE(1397), 2, sym_line_comment, sym_block_comment, - ACTIONS(3720), 15, + ACTIONS(897), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132369,7 +131958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3718), 30, + ACTIONS(899), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132400,70 +131989,516 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24829] = 5, + [23827] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1410), 2, + STATE(1398), 2, sym_line_comment, sym_block_comment, - ACTIONS(3724), 7, + ACTIONS(3714), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3712), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23887] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1399), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3718), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(3722), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24889] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3716), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23947] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1411), 2, + STATE(1400), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3722), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3720), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24007] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1401), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1325), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1327), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24067] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1402), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(979), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(981), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24127] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1403), 2, sym_line_comment, sym_block_comment, - ACTIONS(3728), 15, + ACTIONS(3726), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3724), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24187] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + STATE(1404), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3732), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3728), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24253] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1405), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3740), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3738), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24313] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + STATE(1406), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3744), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3742), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24379] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1407), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3748), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132479,7 +132514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3726), 30, + ACTIONS(3746), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132510,15 +132545,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24949] = 5, + [24439] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1412), 2, + STATE(1408), 2, sym_line_comment, sym_block_comment, - ACTIONS(3732), 15, + ACTIONS(3752), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132534,7 +132569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3730), 30, + ACTIONS(3750), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132565,15 +132600,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25009] = 5, + [24499] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1413), 2, + STATE(1409), 2, sym_line_comment, sym_block_comment, - ACTIONS(3736), 15, + ACTIONS(3756), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132589,7 +132624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3734), 30, + ACTIONS(3754), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132620,23 +132655,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25069] = 9, + [24559] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - STATE(1414), 2, + STATE(1410), 2, sym_line_comment, sym_block_comment, - ACTIONS(3740), 14, + ACTIONS(3760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132650,14 +132677,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3738), 27, + ACTIONS(3758), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -132678,16 +132708,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - [25137] = 5, + [24619] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1415), 2, + STATE(1411), 2, sym_line_comment, sym_block_comment, - ACTIONS(3746), 15, + ACTIONS(3764), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132703,7 +132734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3744), 30, + ACTIONS(3762), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132734,70 +132765,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25197] = 5, + [24679] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1416), 2, + STATE(1412), 2, sym_line_comment, sym_block_comment, - ACTIONS(3750), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3748), 30, + ACTIONS(2039), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [25257] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2041), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24739] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1417), 2, + STATE(1413), 2, sym_line_comment, sym_block_comment, - ACTIONS(3754), 15, + ACTIONS(3768), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132813,7 +132844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3752), 30, + ACTIONS(3766), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132844,15 +132875,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25317] = 5, + [24799] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1418), 2, + STATE(1414), 2, sym_line_comment, sym_block_comment, - ACTIONS(3758), 15, + ACTIONS(1325), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132868,7 +132899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3756), 30, + ACTIONS(1327), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132899,15 +132930,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25377] = 5, + [24859] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1419), 2, + STATE(1415), 2, sym_line_comment, sym_block_comment, - ACTIONS(3762), 15, + ACTIONS(965), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132923,7 +132954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3760), 30, + ACTIONS(967), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132954,18 +132985,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25437] = 6, + [24919] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3764), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1420), 2, + STATE(1416), 2, sym_line_comment, sym_block_comment, - ACTIONS(3716), 15, + ACTIONS(3772), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132981,12 +133009,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3712), 28, + ACTIONS(3770), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -133008,17 +133037,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25499] = 5, + [24979] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1421), 2, + STATE(1417), 2, sym_line_comment, sym_block_comment, - ACTIONS(3716), 15, + ACTIONS(3776), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133034,7 +133064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3712), 30, + ACTIONS(3774), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133065,15 +133095,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25559] = 5, + [25039] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1422), 2, + STATE(1418), 2, sym_line_comment, sym_block_comment, - ACTIONS(3768), 15, + ACTIONS(3780), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133089,7 +133119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3766), 30, + ACTIONS(3778), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133120,15 +133150,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25619] = 5, + [25099] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1423), 2, + STATE(1419), 2, sym_line_comment, sym_block_comment, - ACTIONS(1289), 15, + ACTIONS(3784), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133144,7 +133174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1291), 30, + ACTIONS(3782), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133175,15 +133205,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25679] = 5, + [25159] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1424), 2, + STATE(1420), 2, sym_line_comment, sym_block_comment, - ACTIONS(3772), 15, + ACTIONS(3788), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133199,7 +133229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3770), 30, + ACTIONS(3786), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133230,15 +133260,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25739] = 5, + [25219] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1425), 2, + STATE(1421), 2, sym_line_comment, sym_block_comment, - ACTIONS(3776), 15, + ACTIONS(1325), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133254,7 +133284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 30, + ACTIONS(1327), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133285,15 +133315,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25799] = 5, + [25279] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1426), 2, + STATE(1422), 2, sym_line_comment, sym_block_comment, - ACTIONS(3294), 15, + ACTIONS(3792), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133309,7 +133339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3292), 30, + ACTIONS(3790), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133340,70 +133370,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25859] = 5, + [25339] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1427), 2, + STATE(1423), 2, sym_line_comment, sym_block_comment, - ACTIONS(3780), 15, - anon_sym_PLUS, + ACTIONS(3796), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3778), 30, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3794), 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, + [25399] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1424), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3800), 13, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [25919] = 5, + sym_metavariable, + ACTIONS(3798), 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, + [25459] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1428), 2, + STATE(1425), 2, sym_line_comment, sym_block_comment, - ACTIONS(3784), 15, + ACTIONS(989), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133419,7 +133504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3782), 30, + ACTIONS(991), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133450,15 +133535,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25979] = 5, + [25519] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1429), 2, + STATE(1426), 2, sym_line_comment, sym_block_comment, - ACTIONS(1289), 15, + ACTIONS(3804), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133474,7 +133559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1291), 30, + ACTIONS(3802), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133505,15 +133590,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26039] = 5, + [25579] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1430), 2, + STATE(1427), 2, sym_line_comment, sym_block_comment, - ACTIONS(3788), 15, + ACTIONS(3808), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133529,7 +133614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3786), 30, + ACTIONS(3806), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133560,70 +133645,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26099] = 5, + [25639] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1431), 2, + STATE(1428), 2, sym_line_comment, sym_block_comment, - ACTIONS(3792), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3790), 30, + ACTIONS(2355), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [26159] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2357), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [25699] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1432), 2, + STATE(1429), 2, sym_line_comment, sym_block_comment, - ACTIONS(3796), 15, + ACTIONS(3812), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133639,7 +133724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3794), 30, + ACTIONS(3810), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133670,15 +133755,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26219] = 5, + [25759] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1433), 2, + STATE(1430), 2, sym_line_comment, sym_block_comment, - ACTIONS(973), 15, + ACTIONS(3816), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133694,7 +133779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(975), 30, + ACTIONS(3814), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133725,15 +133810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26279] = 5, + [25819] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1434), 2, + STATE(1431), 2, sym_line_comment, sym_block_comment, - ACTIONS(2143), 7, + ACTIONS(2363), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133741,7 +133826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2145), 38, + ACTIONS(2365), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133780,23 +133865,33 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26339] = 5, + [25879] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1435), 2, + ACTIONS(3822), 1, + anon_sym_RBRACE, + STATE(1432), 2, sym_line_comment, sym_block_comment, - ACTIONS(2355), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3820), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2357), 38, + ACTIONS(3818), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133814,160 +133909,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [26399] = 5, + [25941] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1436), 2, + ACTIONS(3826), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1433), 2, sym_line_comment, sym_block_comment, - ACTIONS(3800), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3828), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3798), 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, - [26459] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3824), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [26003] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1437), 2, + STATE(1434), 2, sym_line_comment, sym_block_comment, - ACTIONS(3804), 13, + ACTIONS(1325), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1327), 30, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3802), 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, - [26519] = 5, + anon_sym_as, + anon_sym_else, + [26063] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1438), 2, + STATE(1435), 2, sym_line_comment, sym_block_comment, - ACTIONS(3808), 13, + ACTIONS(3832), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3806), 32, + ACTIONS(3830), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133988,27 +134069,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [26579] = 5, + [26123] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1439), 2, + STATE(1436), 2, sym_line_comment, sym_block_comment, - ACTIONS(961), 15, + ACTIONS(3495), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134024,7 +134111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(963), 30, + ACTIONS(3491), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134055,15 +134142,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26639] = 5, + [26183] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1440), 2, + STATE(1437), 2, sym_line_comment, sym_block_comment, - ACTIONS(3812), 15, + ACTIONS(985), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134079,7 +134166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3810), 30, + ACTIONS(987), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134110,15 +134197,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26699] = 5, + [26243] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1441), 2, + STATE(1438), 2, sym_line_comment, sym_block_comment, - ACTIONS(3816), 15, + ACTIONS(3836), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134134,7 +134221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3814), 30, + ACTIONS(3834), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134165,15 +134252,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26759] = 5, + [26303] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1442), 2, + STATE(1439), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2447), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2449), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26363] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1440), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2499), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2501), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26423] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1441), 2, sym_line_comment, sym_block_comment, - ACTIONS(3306), 15, + ACTIONS(3840), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134189,7 +134386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3304), 30, + ACTIONS(3838), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134220,15 +134417,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26819] = 5, + [26483] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1443), 2, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + STATE(1442), 2, sym_line_comment, sym_block_comment, - ACTIONS(3820), 15, + ACTIONS(3844), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134242,17 +134447,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3818), 30, + ACTIONS(3842), 27, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -134273,17 +134475,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_else, - [26879] = 5, + [26551] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1444), 2, + STATE(1443), 2, sym_line_comment, sym_block_comment, - ACTIONS(1275), 15, + ACTIONS(3850), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134299,7 +134500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1273), 30, + ACTIONS(3848), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134330,7 +134531,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26939] = 5, + [26611] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1444), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2503), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2505), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26671] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -134338,7 +134594,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1445), 2, sym_line_comment, sym_block_comment, - ACTIONS(3824), 15, + ACTIONS(3854), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134354,7 +134610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3822), 30, + ACTIONS(3852), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134385,7 +134641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26999] = 5, + [26731] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -134393,7 +134649,62 @@ static const uint16_t ts_small_parse_table[] = { STATE(1446), 2, sym_line_comment, sym_block_comment, - ACTIONS(3330), 15, + ACTIONS(2507), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2509), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26791] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1447), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1311), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134409,7 +134720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3328), 30, + ACTIONS(1309), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134440,15 +134751,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27059] = 5, + [26851] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1447), 2, + ACTIONS(3860), 1, + anon_sym_RBRACE, + STATE(1448), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3858), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3856), 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__, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26913] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1449), 2, sym_line_comment, sym_block_comment, - ACTIONS(1323), 15, + ACTIONS(3864), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134464,7 +134831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1321), 30, + ACTIONS(3862), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134495,21 +134862,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27119] = 8, + [26973] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - STATE(1448), 2, + ACTIONS(3866), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1450), 2, sym_line_comment, sym_block_comment, - ACTIONS(3828), 14, + ACTIONS(3828), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134523,14 +134887,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3826), 28, + ACTIONS(3824), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -134550,18 +134916,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27185] = 5, + [27035] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1449), 2, + STATE(1451), 2, sym_line_comment, sym_block_comment, - ACTIONS(1355), 15, + ACTIONS(1367), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134577,7 +134942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1353), 30, + ACTIONS(1365), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134608,15 +134973,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27245] = 5, + [27095] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1450), 2, + STATE(1452), 2, sym_line_comment, sym_block_comment, - ACTIONS(3832), 15, + ACTIONS(3870), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134632,7 +134997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3830), 30, + ACTIONS(3868), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134663,70 +135028,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27305] = 5, + [27155] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1451), 2, + STATE(1453), 2, sym_line_comment, sym_block_comment, - ACTIONS(1359), 15, - anon_sym_PLUS, + ACTIONS(3874), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1357), 30, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3872), 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, + [27215] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1454), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3878), 13, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [27365] = 5, + sym_metavariable, + ACTIONS(3876), 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, + [27275] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1452), 2, + STATE(1455), 2, sym_line_comment, sym_block_comment, - ACTIONS(3836), 13, + ACTIONS(3882), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -134740,7 +135160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3834), 32, + ACTIONS(3880), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134773,15 +135193,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27425] = 5, + [27335] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1453), 2, + STATE(1456), 2, sym_line_comment, sym_block_comment, - ACTIONS(3840), 15, + ACTIONS(3828), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134797,7 +135217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3838), 30, + ACTIONS(3824), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134828,15 +135248,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27485] = 5, + [27395] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1454), 2, + STATE(1457), 2, sym_line_comment, sym_block_comment, - ACTIONS(3844), 15, + ACTIONS(3886), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134852,7 +135272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3842), 30, + ACTIONS(3884), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134883,29 +135303,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27545] = 5, + [27455] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1455), 2, + STATE(1458), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 13, + ACTIONS(2519), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3846), 32, + ACTIONS(2521), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134926,27 +135340,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [27605] = 5, + [27515] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1456), 2, + STATE(1459), 2, sym_line_comment, sym_block_comment, - ACTIONS(1331), 15, + ACTIONS(3890), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134962,7 +135382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1329), 30, + ACTIONS(3888), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134993,70 +135413,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27665] = 5, + [27575] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1457), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1343), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1341), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3730), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3734), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [27725] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1458), 2, + ACTIONS(3736), 1, + anon_sym_DOT, + STATE(1460), 2, sym_line_comment, sym_block_comment, - ACTIONS(3504), 15, + ACTIONS(3894), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135070,17 +135441,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3500), 30, + ACTIONS(3892), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -135098,134 +135466,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [27785] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1459), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3852), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3850), 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, - [27845] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1460), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3856), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3854), 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, - [27905] = 7, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27641] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3272), 1, - anon_sym_BANG, - ACTIONS(3858), 1, - anon_sym_COLON_COLON, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, STATE(1461), 2, sym_line_comment, sym_block_comment, - ACTIONS(1289), 15, + ACTIONS(3898), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135239,16 +135499,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1291), 28, + ACTIONS(3896), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -135268,9 +135526,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27969] = 5, + [27707] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -135278,7 +135537,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1462), 2, sym_line_comment, sym_block_comment, - ACTIONS(3862), 15, + ACTIONS(3902), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135294,7 +135553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3860), 30, + ACTIONS(3900), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135325,7 +135584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28029] = 5, + [27767] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -135333,7 +135592,66 @@ static const uint16_t ts_small_parse_table[] = { STATE(1463), 2, sym_line_comment, sym_block_comment, - ACTIONS(1289), 15, + ACTIONS(2391), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2393), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27827] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3280), 1, + anon_sym_BANG, + ACTIONS(3904), 1, + anon_sym_COLON_COLON, + STATE(1464), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1325), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135349,13 +135667,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1291), 30, + ACTIONS(1327), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -135377,36 +135694,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28089] = 6, + [27891] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3868), 1, - anon_sym_RBRACE, - STATE(1464), 2, + STATE(1465), 2, sym_line_comment, sym_block_comment, - ACTIONS(3866), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(1263), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, + ACTIONS(1261), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27951] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1466), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2523), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3864), 29, + ACTIONS(2525), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135424,27 +135785,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [28151] = 5, + [28011] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1465), 2, + STATE(1467), 2, sym_line_comment, sym_block_comment, - ACTIONS(3872), 15, + ACTIONS(3908), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135460,7 +135830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3870), 30, + ACTIONS(3906), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135491,15 +135861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28211] = 5, + [28071] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1466), 2, + STATE(1468), 2, sym_line_comment, sym_block_comment, - ACTIONS(2411), 7, + ACTIONS(2527), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135507,7 +135877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2413), 38, + ACTIONS(2529), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135546,15 +135916,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28271] = 5, + [28131] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1467), 2, + STATE(1469), 2, sym_line_comment, sym_block_comment, - ACTIONS(3876), 15, + ACTIONS(3334), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135570,7 +135940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3874), 30, + ACTIONS(3332), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135601,15 +135971,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28331] = 5, + [28191] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1468), 2, + STATE(1470), 2, sym_line_comment, sym_block_comment, - ACTIONS(3880), 15, + ACTIONS(1319), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135625,7 +135995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3878), 30, + ACTIONS(1317), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135656,15 +136026,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28391] = 5, + [28251] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1469), 2, + STATE(1471), 2, sym_line_comment, sym_block_comment, - ACTIONS(3884), 15, + ACTIONS(1331), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135680,7 +136050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3882), 30, + ACTIONS(1329), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135711,19 +136081,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28451] = 7, + [28311] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3357), 1, - anon_sym_COLON_COLON, - ACTIONS(3886), 1, - anon_sym_BANG, - STATE(1470), 2, + STATE(1472), 2, sym_line_comment, sym_block_comment, - ACTIONS(3353), 15, + ACTIONS(1335), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135739,12 +136105,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3351), 28, + ACTIONS(1333), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -135766,73 +136133,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28515] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3892), 1, - anon_sym_RBRACE, - STATE(1471), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3890), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3888), 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__, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28577] = 5, + [28371] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1472), 2, + STATE(1473), 2, sym_line_comment, sym_block_comment, - ACTIONS(3896), 15, + ACTIONS(1339), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135848,7 +136160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3894), 30, + ACTIONS(1337), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135879,15 +136191,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28637] = 5, + [28431] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1473), 2, + STATE(1474), 2, sym_line_comment, sym_block_comment, - ACTIONS(3900), 15, + ACTIONS(3912), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135903,7 +136215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3898), 30, + ACTIONS(3910), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135934,15 +136246,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28697] = 5, + [28491] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1474), 2, + STATE(1475), 2, sym_line_comment, sym_block_comment, - ACTIONS(3904), 15, + ACTIONS(1343), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135958,7 +136270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3902), 30, + ACTIONS(1341), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135989,15 +136301,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28757] = 5, + [28551] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1475), 2, + STATE(1476), 2, sym_line_comment, sym_block_comment, - ACTIONS(1289), 15, + ACTIONS(1347), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136013,7 +136325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1291), 30, + ACTIONS(1345), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136044,15 +136356,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28817] = 5, + [28611] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1476), 2, + STATE(1477), 2, sym_line_comment, sym_block_comment, - ACTIONS(3908), 15, + ACTIONS(2247), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2249), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28671] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1478), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2251), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2253), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28731] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1479), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1259), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136068,7 +136490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3906), 30, + ACTIONS(1257), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136099,61 +136521,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28877] = 23, + [28791] = 21, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1587), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - sym_identifier, - ACTIONS(3392), 1, - anon_sym_LPAREN, - ACTIONS(3394), 1, - anon_sym_STAR, - ACTIONS(3398), 1, - anon_sym_AMP, - ACTIONS(3400), 1, + ACTIONS(1647), 1, + anon_sym_DASH, + ACTIONS(1671), 1, + aux_sym_string_literal_token1, + ACTIONS(1679), 1, + sym__raw_string_literal_start, + ACTIONS(3254), 1, + anon_sym_if, + ACTIONS(3682), 1, anon_sym_COLON_COLON, - ACTIONS(3402), 1, - anon_sym_SQUOTE, - ACTIONS(3406), 1, - anon_sym_for, - ACTIONS(3410), 1, + ACTIONS(3914), 1, + sym_identifier, + ACTIONS(3920), 1, sym_metavariable, - STATE(2402), 1, - sym_where_predicate, - STATE(2556), 1, - sym_scoped_type_identifier, - STATE(2964), 1, - sym_generic_type, - STATE(3356), 1, - sym_generic_type_with_turbofish, - STATE(3399), 1, + STATE(2735), 1, sym_scoped_identifier, - STATE(3486), 1, + STATE(2840), 1, + sym__literal_pattern, + STATE(3494), 1, sym_bracketed_type, - ACTIONS(3404), 2, - anon_sym_default, - anon_sym_union, - STATE(1477), 2, + STATE(3507), 1, + sym_generic_type_with_turbofish, + ACTIONS(1673), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3252), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1480), 2, sym_line_comment, sym_block_comment, - ACTIONS(3408), 3, + ACTIONS(1669), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3918), 3, sym_self, sym_super, sym_crate, - STATE(3086), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3396), 17, + STATE(2305), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3916), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136171,17 +136590,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [28972] = 6, + anon_sym_default, + anon_sym_union, + [28883] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3357), 1, + STATE(1481), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1871), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, anon_sym_COLON_COLON, - STATE(1478), 2, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1873), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28943] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3922), 1, + anon_sym_COLON_COLON, + STATE(1482), 2, sym_line_comment, sym_block_comment, - ACTIONS(3353), 15, + ACTIONS(1325), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136197,7 +136673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3351), 28, + ACTIONS(1327), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136226,15 +136702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_as, anon_sym_else, - [29033] = 5, + [29004] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1479), 2, + STATE(1483), 2, sym_line_comment, sym_block_comment, - ACTIONS(3230), 12, + ACTIONS(2039), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -136247,7 +136723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_integer_literal, sym_metavariable, - ACTIONS(3228), 32, + ACTIONS(2041), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136280,31 +136756,61 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29092] = 5, + [29063] = 23, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1480), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3866), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, + ACTIONS(1595), 1, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, + ACTIONS(3385), 1, + anon_sym_LPAREN, + ACTIONS(3389), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(3397), 1, sym_metavariable, - ACTIONS(3864), 29, + ACTIONS(3477), 1, + sym_identifier, + ACTIONS(3481), 1, + anon_sym_STAR, + ACTIONS(3485), 1, + anon_sym_AMP, + ACTIONS(3487), 1, + anon_sym_SQUOTE, + ACTIONS(3489), 1, + anon_sym_for, + STATE(2540), 1, + sym_scoped_type_identifier, + STATE(2709), 1, + sym_where_predicate, + STATE(3041), 1, + sym_generic_type, + STATE(3365), 1, + sym_generic_type_with_turbofish, + STATE(3467), 1, + sym_scoped_identifier, + STATE(3498), 1, + sym_bracketed_type, + ACTIONS(3393), 2, + anon_sym_default, + anon_sym_union, + STATE(1484), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3395), 3, + sym_self, + sym_super, + sym_crate, + STATE(3092), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3483), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136322,27 +136828,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [29151] = 5, + [29158] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1481), 2, + STATE(1485), 2, sym_line_comment, sym_block_comment, - ACTIONS(3890), 15, + ACTIONS(3926), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -136358,7 +136852,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3888), 29, + ACTIONS(3924), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136388,83 +136882,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29210] = 6, + [29217] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 1, - anon_sym_COLON_COLON, - STATE(1482), 2, + STATE(1486), 2, sym_line_comment, sym_block_comment, - ACTIONS(1289), 15, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(2283), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1291), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [29271] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1483), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2143), 12, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, - anon_sym_SQUOTE, sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2145), 32, + ACTIONS(2285), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136482,30 +136924,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [29330] = 5, + [29276] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1484), 2, + STATE(1487), 2, sym_line_comment, sym_block_comment, - ACTIONS(2403), 15, + ACTIONS(3820), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -136521,7 +136960,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2405), 29, + ACTIONS(3818), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136551,61 +136990,61 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29389] = 23, + [29335] = 23, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1587), 1, + ACTIONS(1595), 1, anon_sym_LBRACK, - ACTIONS(3388), 1, - sym_identifier, - ACTIONS(3392), 1, + ACTIONS(3385), 1, anon_sym_LPAREN, - ACTIONS(3394), 1, + ACTIONS(3389), 1, + anon_sym_COLON_COLON, + ACTIONS(3397), 1, + sym_metavariable, + ACTIONS(3477), 1, + sym_identifier, + ACTIONS(3481), 1, anon_sym_STAR, - ACTIONS(3398), 1, + ACTIONS(3485), 1, anon_sym_AMP, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3402), 1, + ACTIONS(3487), 1, anon_sym_SQUOTE, - ACTIONS(3406), 1, + ACTIONS(3489), 1, anon_sym_for, - ACTIONS(3410), 1, - sym_metavariable, - STATE(2542), 1, + STATE(2407), 1, sym_where_predicate, - STATE(2556), 1, + STATE(2540), 1, sym_scoped_type_identifier, - STATE(2964), 1, + STATE(3041), 1, sym_generic_type, - STATE(3356), 1, + STATE(3365), 1, sym_generic_type_with_turbofish, - STATE(3399), 1, + STATE(3467), 1, sym_scoped_identifier, - STATE(3486), 1, + STATE(3498), 1, sym_bracketed_type, - ACTIONS(3404), 2, + ACTIONS(3393), 2, anon_sym_default, anon_sym_union, - STATE(1485), 2, + STATE(1488), 2, sym_line_comment, sym_block_comment, - ACTIONS(3408), 3, + ACTIONS(3395), 3, sym_self, sym_super, sym_crate, - STATE(3086), 6, + STATE(3092), 6, sym_higher_ranked_trait_bound, sym_lifetime, sym_array_type, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3396), 17, + ACTIONS(3483), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136623,15 +137062,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [29484] = 5, + [29430] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1486), 2, + STATE(1489), 2, sym_line_comment, sym_block_comment, - ACTIONS(3914), 15, + ACTIONS(3858), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -136647,7 +137086,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3912), 29, + ACTIONS(3856), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136677,15 +137116,124 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29543] = 5, + [29489] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1487), 2, + STATE(1490), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3238), 12, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, + sym_metavariable, + ACTIONS(3236), 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, + [29548] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3365), 1, + anon_sym_COLON_COLON, + STATE(1491), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3361), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3359), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [29609] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1492), 2, sym_line_comment, sym_block_comment, - ACTIONS(3918), 15, + ACTIONS(3930), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -136701,7 +137249,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3916), 29, + ACTIONS(3928), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136731,63 +137279,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29602] = 21, + [29668] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, + ACTIONS(3936), 1, + anon_sym_AMP, + ACTIONS(3932), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3938), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1493), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3934), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3844), 6, anon_sym_CARET, - ACTIONS(3928), 1, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3842), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [29742] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3938), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(3944), 1, + ACTIONS(3956), 1, anon_sym_DOT_DOT, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3946), 2, + ACTIONS(3958), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1488), 2, + STATE(1494), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 17, + ACTIONS(3716), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136798,48 +137410,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [29692] = 9, + [29834] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3347), 1, - anon_sym_LBRACE, - ACTIONS(3349), 1, - anon_sym_COLON_COLON, - ACTIONS(3948), 1, - anon_sym_BANG, - STATE(1172), 1, - sym_field_initializer_list, - STATE(1489), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1289), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, + anon_sym_DOT_DOT, + ACTIONS(3962), 1, + anon_sym_EQ, + ACTIONS(3932), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1291), 24, + ACTIONS(3958), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1495), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3934), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3960), 17, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136850,64 +137477,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [29758] = 17, + anon_sym_COMMA, + anon_sym_else, + [29924] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3740), 2, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(393), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - STATE(1490), 2, + STATE(1496), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3738), 21, + ACTIONS(391), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136922,57 +137546,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [29840] = 18, + [30010] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3740), 2, - anon_sym_EQ, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3956), 1, anon_sym_DOT_DOT, - ACTIONS(3922), 2, + ACTIONS(3966), 1, + anon_sym_EQ, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - STATE(1491), 2, + ACTIONS(3958), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1497), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3738), 20, + ACTIONS(3964), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_else, + [30100] = 25, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1419), 1, + anon_sym_extern, + ACTIONS(3152), 1, + anon_sym_fn, + ACTIONS(3537), 1, + anon_sym_COLON_COLON, + ACTIONS(3539), 1, + anon_sym_default, + ACTIONS(3543), 1, + anon_sym_union, + ACTIONS(3547), 1, + sym_metavariable, + ACTIONS(3968), 1, + sym_identifier, + ACTIONS(3970), 1, + anon_sym_for, + STATE(1544), 1, + sym_scoped_type_identifier, + STATE(1584), 1, + sym_for_lifetimes, + STATE(1621), 1, + sym_generic_type, + STATE(2233), 1, + aux_sym_function_modifiers_repeat1, + STATE(2306), 1, + sym_extern_modifier, + STATE(3502), 1, + sym_function_modifiers, + STATE(3535), 1, + sym_scoped_identifier, + STATE(3552), 1, + sym_generic_type_with_turbofish, + STATE(3558), 1, + sym_bracketed_type, + STATE(1498), 2, + sym_line_comment, + sym_block_comment, + STATE(1734), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1405), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3545), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3535), 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, + [30198] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3932), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3938), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1499), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3934), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3844), 7, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3842), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -136984,44 +137740,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [29924] = 11, + [30270] = 25, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1411), 1, + anon_sym_fn, + ACTIONS(1419), 1, + anon_sym_extern, + ACTIONS(3172), 1, + anon_sym_for, + ACTIONS(3389), 1, + anon_sym_COLON_COLON, + ACTIONS(3391), 1, + anon_sym_default, + ACTIONS(3393), 1, + anon_sym_union, + ACTIONS(3397), 1, + sym_metavariable, + ACTIONS(3972), 1, + sym_identifier, + STATE(1590), 1, + sym_for_lifetimes, + STATE(1930), 1, + sym_scoped_type_identifier, + STATE(1955), 1, + sym_generic_type, + STATE(2233), 1, + aux_sym_function_modifiers_repeat1, + STATE(2306), 1, + sym_extern_modifier, + STATE(3365), 1, + sym_generic_type_with_turbofish, + STATE(3412), 1, + sym_function_modifiers, + STATE(3467), 1, + sym_scoped_identifier, + STATE(3498), 1, + sym_bracketed_type, + STATE(1500), 2, + sym_line_comment, + sym_block_comment, + STATE(1982), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1405), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3395), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3387), 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, + [30368] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3922), 2, + ACTIONS(3936), 1, + anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1492), 2, + ACTIONS(3938), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1501), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 9, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3844), 5, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3738), 25, + ACTIONS(3842), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137047,63 +137883,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [29994] = 21, + [30444] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3944), 1, - anon_sym_DOT_DOT, - ACTIONS(3952), 1, + ACTIONS(3844), 2, anon_sym_EQ, - ACTIONS(3922), 2, + anon_sym_DOT_DOT, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3946), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1493), 2, + STATE(1502), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3950), 17, + ACTIONS(3842), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137114,68 +137944,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [30084] = 22, + [30526] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, ACTIONS(3944), 1, - anon_sym_DOT_DOT, - ACTIONS(3956), 1, + anon_sym_AMP_AMP, + ACTIONS(3844), 2, anon_sym_EQ, - ACTIONS(3922), 2, + anon_sym_DOT_DOT, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3946), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1494), 2, + STATE(1503), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3596), 7, + ACTIONS(3842), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(3954), 10, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137186,44 +138010,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30176] = 15, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [30610] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, - anon_sym_AMP, - ACTIONS(3930), 1, - anon_sym_PIPE, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1495), 2, + STATE(1504), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 4, + ACTIONS(3844), 9, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3738), 25, + ACTIONS(3842), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137249,54 +138073,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [30254] = 19, + [30680] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3922), 2, + ACTIONS(3956), 1, + anon_sym_DOT_DOT, + ACTIONS(3976), 1, + anon_sym_EQ, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3960), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - STATE(1496), 2, + ACTIONS(3958), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1505), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3958), 19, + ACTIONS(3974), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137312,62 +138140,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [30340] = 21, + [30770] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3944), 1, + ACTIONS(3956), 1, anon_sym_DOT_DOT, - ACTIONS(3964), 1, + ACTIONS(3980), 1, anon_sym_EQ, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3946), 2, + ACTIONS(3958), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1497), 2, + STATE(1506), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3962), 17, + ACTIONS(3978), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137385,122 +138211,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [30430] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3968), 1, - anon_sym_BANG, - ACTIONS(3970), 1, - anon_sym_COLON_COLON, - ACTIONS(3972), 1, - anon_sym_LT2, - STATE(1610), 1, - sym_parameters, - STATE(1621), 1, - sym_type_arguments, - STATE(1498), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3270), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3266), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [30500] = 21, + [30860] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3944), 1, - anon_sym_DOT_DOT, - ACTIONS(3976), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(3922), 2, + ACTIONS(3956), 1, + anon_sym_DOT_DOT, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3946), 2, + ACTIONS(3958), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1499), 2, + STATE(1507), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3974), 17, + ACTIONS(3766), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137511,68 +138281,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [30590] = 22, + [30952] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3944), 1, - anon_sym_DOT_DOT, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3946), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1500), 2, + STATE(1508), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3778), 7, + ACTIONS(3844), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3842), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(3954), 10, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137583,208 +138336,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30682] = 25, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [31030] = 25, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1411), 1, + ACTIONS(1419), 1, anon_sym_extern, - ACTIONS(3098), 1, + ACTIONS(3116), 1, anon_sym_fn, - ACTIONS(3514), 1, + ACTIONS(3503), 1, anon_sym_COLON_COLON, - ACTIONS(3516), 1, + ACTIONS(3505), 1, anon_sym_default, - ACTIONS(3520), 1, - anon_sym_union, - ACTIONS(3524), 1, - sym_metavariable, - ACTIONS(3978), 1, - sym_identifier, - ACTIONS(3980), 1, - anon_sym_for, - STATE(1031), 1, - sym_scoped_type_identifier, - STATE(1060), 1, - sym_generic_type, - STATE(1630), 1, - sym_for_lifetimes, - STATE(2222), 1, - aux_sym_function_modifiers_repeat1, - STATE(2318), 1, - sym_extern_modifier, - STATE(3354), 1, - sym_function_modifiers, - STATE(3499), 1, - sym_scoped_identifier, - STATE(3533), 1, - sym_generic_type_with_turbofish, - STATE(3543), 1, - sym_bracketed_type, - STATE(1446), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - STATE(1501), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1397), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3522), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3512), 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, - [30780] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1403), 1, - anon_sym_fn, - ACTIONS(1411), 1, - anon_sym_extern, - ACTIONS(3158), 1, - anon_sym_for, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3404), 1, + ACTIONS(3509), 1, anon_sym_union, - ACTIONS(3410), 1, + ACTIONS(3513), 1, sym_metavariable, - ACTIONS(3532), 1, - anon_sym_default, ACTIONS(3982), 1, sym_identifier, - STATE(1603), 1, - sym_for_lifetimes, - STATE(1922), 1, - sym_scoped_type_identifier, - STATE(1961), 1, - sym_generic_type, - STATE(2222), 1, - aux_sym_function_modifiers_repeat1, - STATE(2318), 1, - sym_extern_modifier, - STATE(3356), 1, - sym_generic_type_with_turbofish, - STATE(3399), 1, - sym_scoped_identifier, - STATE(3428), 1, - sym_function_modifiers, - STATE(3486), 1, - sym_bracketed_type, - STATE(1502), 2, - sym_line_comment, - sym_block_comment, - STATE(1974), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1397), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3530), 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, - [30878] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1411), 1, - anon_sym_extern, - ACTIONS(3134), 1, - anon_sym_fn, - ACTIONS(3546), 1, - anon_sym_COLON_COLON, - ACTIONS(3548), 1, - anon_sym_default, - ACTIONS(3552), 1, - anon_sym_union, - ACTIONS(3556), 1, - sym_metavariable, ACTIONS(3984), 1, - sym_identifier, - ACTIONS(3986), 1, anon_sym_for, - STATE(1540), 1, + STATE(1036), 1, sym_scoped_type_identifier, - STATE(1600), 1, + STATE(1059), 1, sym_generic_type, - STATE(1638), 1, + STATE(1611), 1, sym_for_lifetimes, - STATE(2222), 1, + STATE(2233), 1, aux_sym_function_modifiers_repeat1, - STATE(2318), 1, + STATE(2306), 1, sym_extern_modifier, - STATE(3328), 1, + STATE(3363), 1, sym_function_modifiers, - STATE(3524), 1, + STATE(3512), 1, sym_scoped_identifier, - STATE(3541), 1, + STATE(3544), 1, sym_generic_type_with_turbofish, - STATE(3547), 1, + STATE(3554), 1, sym_bracketed_type, - STATE(1503), 2, - sym_line_comment, - sym_block_comment, - STATE(1751), 2, + STATE(1110), 2, sym_higher_ranked_trait_bound, sym_function_type, - ACTIONS(1397), 3, + STATE(1509), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1405), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3554), 3, + ACTIONS(3511), 3, sym_self, sym_super, sym_crate, - ACTIONS(3544), 17, + ACTIONS(3501), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137802,94 +138417,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [30976] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, - anon_sym_AMP, - ACTIONS(3930), 1, - anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(387), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3942), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1504), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(385), 19, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31062] = 10, + [31128] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - STATE(1505), 2, + STATE(1510), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 11, + ACTIONS(3844), 11, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, @@ -137901,7 +138449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3738), 25, + ACTIONS(3842), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137927,58 +138475,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31130] = 21, + [31196] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3944), 1, + ACTIONS(3956), 1, anon_sym_DOT_DOT, - ACTIONS(3922), 2, + ACTIONS(3988), 1, + anon_sym_EQ, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3946), 2, + ACTIONS(3958), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1506), 2, + STATE(1511), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 17, + ACTIONS(3986), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137996,109 +138544,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [31220] = 13, + [31286] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1507), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3740), 6, + ACTIONS(3940), 1, anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3738), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(3944), 1, anon_sym_AMP_AMP, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31294] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1508), 2, + ACTIONS(3954), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3992), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + STATE(1512), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3738), 25, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3990), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138109,74 +138607,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31366] = 22, + [31372] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3944), 1, - anon_sym_DOT_DOT, ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(3922), 2, + anon_sym_DOT_DOT, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3946), 2, + ACTIONS(3958), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1509), 2, + STATE(1513), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3860), 7, + ACTIONS(341), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(3954), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138187,63 +138678,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31458] = 21, + anon_sym_COMMA, + anon_sym_else, + [31462] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(3996), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_COLON_COLON, + ACTIONS(4000), 1, + anon_sym_LT2, + STATE(1599), 1, + sym_type_arguments, + STATE(1626), 1, + sym_parameters, + STATE(1514), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3278), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3944), 1, - anon_sym_DOT_DOT, - ACTIONS(3990), 1, - anon_sym_EQ, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3946), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1510), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3988), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3274), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138252,54 +138732,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31548] = 14, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [31532] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3922), 2, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, + anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(3956), 1, + anon_sym_DOT_DOT, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1511), 2, + ACTIONS(3954), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3958), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1515), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3738), 25, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3814), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138310,29 +138809,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31624] = 8, + [31624] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3272), 1, - anon_sym_BANG, - ACTIONS(3992), 1, + ACTIONS(3348), 1, + anon_sym_LBRACE, + ACTIONS(3350), 1, anon_sym_COLON_COLON, - STATE(1172), 1, + ACTIONS(4002), 1, + anon_sym_BANG, + STATE(1403), 1, sym_field_initializer_list, - STATE(1512), 2, + STATE(1516), 2, sym_line_comment, sym_block_comment, - ACTIONS(1289), 15, + ACTIONS(1325), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138348,10 +138841,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1291), 24, + ACTIONS(1327), 24, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138371,27 +138865,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [31687] = 10, + [31690] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3966), 1, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(4000), 1, anon_sym_LT2, - ACTIONS(3994), 1, + ACTIONS(4004), 1, anon_sym_COLON_COLON, - STATE(1610), 1, - sym_parameters, - STATE(1621), 1, + STATE(1599), 1, sym_type_arguments, - STATE(1513), 2, + STATE(1626), 1, + sym_parameters, + STATE(1517), 2, sym_line_comment, sym_block_comment, - ACTIONS(3290), 17, + ACTIONS(3294), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138409,61 +138902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3288), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [31754] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3968), 1, - anon_sym_BANG, - ACTIONS(3996), 1, - anon_sym_LBRACE, - ACTIONS(3998), 1, - anon_sym_COLON_COLON, - STATE(1702), 1, - sym_field_initializer_list, - STATE(1514), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1289), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1291), 23, - anon_sym_LPAREN, + ACTIONS(3292), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -138477,62 +138916,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [31819] = 19, + [31757] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1375), 1, + ACTIONS(1647), 1, anon_sym_DASH, - ACTIONS(1421), 1, + ACTIONS(1671), 1, aux_sym_string_literal_token1, - ACTIONS(1431), 1, + ACTIONS(1679), 1, sym__raw_string_literal_start, - ACTIONS(2898), 1, + ACTIONS(3682), 1, anon_sym_COLON_COLON, - ACTIONS(3254), 1, + ACTIONS(3914), 1, sym_identifier, - ACTIONS(3264), 1, + ACTIONS(3920), 1, sym_metavariable, - STATE(2046), 1, + STATE(2735), 1, sym_scoped_identifier, - STATE(2112), 1, + STATE(2840), 1, sym__literal_pattern, - STATE(3340), 1, + STATE(3494), 1, sym_bracketed_type, - STATE(3366), 1, + STATE(3507), 1, sym_generic_type_with_turbofish, - ACTIONS(1423), 2, + ACTIONS(1673), 2, anon_sym_true, anon_sym_false, - STATE(1515), 2, + STATE(1518), 2, sym_line_comment, sym_block_comment, - ACTIONS(1419), 3, + ACTIONS(1669), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3262), 3, + ACTIONS(3918), 3, sym_self, sym_super, sym_crate, - STATE(2016), 4, + STATE(2305), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3260), 19, + ACTIONS(3916), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -138552,119 +138989,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [31904] = 19, + [31842] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1643), 1, + ACTIONS(1647), 1, anon_sym_DASH, - ACTIONS(1667), 1, + ACTIONS(1671), 1, aux_sym_string_literal_token1, - ACTIONS(1675), 1, + ACTIONS(1679), 1, sym__raw_string_literal_start, - ACTIONS(3636), 1, + ACTIONS(3678), 1, sym_identifier, - ACTIONS(3640), 1, + ACTIONS(3682), 1, anon_sym_COLON_COLON, - ACTIONS(3644), 1, + ACTIONS(3686), 1, sym_metavariable, - STATE(2512), 1, + STATE(2514), 1, sym_scoped_identifier, - STATE(3044), 1, + STATE(2858), 1, sym__literal_pattern, - STATE(3483), 1, - sym_bracketed_type, STATE(3494), 1, - sym_generic_type_with_turbofish, - ACTIONS(1669), 2, - anon_sym_true, - anon_sym_false, - STATE(1516), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1665), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3642), 3, - sym_self, - sym_super, - sym_crate, - STATE(2311), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3638), 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, - [31989] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1375), 1, - anon_sym_DASH, - ACTIONS(1421), 1, - aux_sym_string_literal_token1, - ACTIONS(1431), 1, - sym__raw_string_literal_start, - ACTIONS(2898), 1, - anon_sym_COLON_COLON, - ACTIONS(3242), 1, - sym_identifier, - ACTIONS(3252), 1, - sym_metavariable, - STATE(2067), 1, - sym_scoped_identifier, - STATE(2123), 1, - sym__literal_pattern, - STATE(3340), 1, sym_bracketed_type, - STATE(3366), 1, + STATE(3507), 1, sym_generic_type_with_turbofish, - ACTIONS(1423), 2, + ACTIONS(1673), 2, anon_sym_true, anon_sym_false, - STATE(1517), 2, + STATE(1519), 2, sym_line_comment, sym_block_comment, - ACTIONS(1419), 3, + ACTIONS(1669), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3250), 3, + ACTIONS(3684), 3, sym_self, sym_super, sym_crate, - STATE(2016), 4, + STATE(2305), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3248), 19, + ACTIONS(3680), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -138684,82 +139055,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [32074] = 10, + [31927] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_LT2, ACTIONS(3994), 1, - anon_sym_COLON_COLON, - STATE(1610), 1, - sym_parameters, - STATE(1621), 1, - sym_type_arguments, - STATE(1518), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3286), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3284), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [32141] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3966), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(4000), 1, anon_sym_LT2, - ACTIONS(3994), 1, + ACTIONS(4004), 1, anon_sym_COLON_COLON, - STATE(1610), 1, - sym_parameters, - STATE(1621), 1, + STATE(1599), 1, sym_type_arguments, - STATE(1519), 2, + STATE(1626), 1, + sym_parameters, + STATE(1520), 2, sym_line_comment, sym_block_comment, - ACTIONS(3280), 17, + ACTIONS(3288), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138777,7 +139091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3278), 20, + ACTIONS(3286), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -138798,21 +139112,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [32208] = 8, + [31994] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3355), 1, + ACTIONS(3996), 1, anon_sym_BANG, - ACTIONS(3357), 1, + ACTIONS(4006), 1, + anon_sym_LBRACE, + ACTIONS(4008), 1, anon_sym_COLON_COLON, - ACTIONS(4000), 1, - sym_identifier, - STATE(1520), 2, + STATE(1842), 1, + sym_field_initializer_list, + STATE(1521), 2, sym_line_comment, sym_block_comment, - ACTIONS(3353), 16, + ACTIONS(1325), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138828,12 +139144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3351), 23, - anon_sym_SEMI, + ACTIONS(1327), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138853,53 +139167,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [32271] = 19, + anon_sym_as, + [32059] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1643), 1, + ACTIONS(1383), 1, anon_sym_DASH, - ACTIONS(1667), 1, + ACTIONS(1429), 1, aux_sym_string_literal_token1, - ACTIONS(1675), 1, + ACTIONS(1439), 1, sym__raw_string_literal_start, - ACTIONS(3640), 1, + ACTIONS(2757), 1, anon_sym_COLON_COLON, - ACTIONS(3684), 1, + ACTIONS(3262), 1, sym_identifier, - ACTIONS(3690), 1, + ACTIONS(3272), 1, sym_metavariable, - STATE(2523), 1, + STATE(2070), 1, sym_scoped_identifier, - STATE(2783), 1, + STATE(2140), 1, sym__literal_pattern, - STATE(3483), 1, + STATE(3350), 1, sym_bracketed_type, - STATE(3494), 1, + STATE(3375), 1, sym_generic_type_with_turbofish, - ACTIONS(1669), 2, + ACTIONS(1431), 2, anon_sym_true, anon_sym_false, - STATE(1521), 2, + STATE(1522), 2, sym_line_comment, sym_block_comment, - ACTIONS(1665), 3, + ACTIONS(1427), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3688), 3, + ACTIONS(3270), 3, sym_self, sym_super, sym_crate, - STATE(2311), 4, + STATE(2031), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3686), 19, + ACTIONS(3268), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -138919,184 +139234,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [32356] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3886), 1, - anon_sym_BANG, - ACTIONS(4002), 1, - anon_sym_COLON_COLON, - STATE(1522), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3353), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3351), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [32416] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3320), 1, - anon_sym_BANG, - ACTIONS(3322), 1, - anon_sym_COLON_COLON, - STATE(1523), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3318), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, + [32144] = 19, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3316), 22, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [32476] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1524), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3300), 16, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(1383), 1, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3302), 25, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(1429), 1, + aux_sym_string_literal_token1, + ACTIONS(1439), 1, + sym__raw_string_literal_start, + ACTIONS(2757), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - [32532] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4006), 1, - anon_sym_LPAREN, - STATE(1525), 2, + ACTIONS(3250), 1, + sym_identifier, + ACTIONS(3260), 1, + sym_metavariable, + STATE(2049), 1, + sym_scoped_identifier, + STATE(2118), 1, + sym__literal_pattern, + STATE(3350), 1, + sym_bracketed_type, + STATE(3375), 1, + sym_generic_type_with_turbofish, + ACTIONS(1431), 2, + anon_sym_true, + anon_sym_false, + STATE(1523), 2, sym_line_comment, sym_block_comment, - ACTIONS(4009), 9, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4004), 31, + ACTIONS(1427), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3258), 3, + sym_self, + sym_super, + sym_crate, + STATE(2031), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3256), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -139114,91 +139298,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32590] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_LT2, - STATE(1611), 1, - sym_parameters, - STATE(1623), 1, - sym_type_arguments, - STATE(1526), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3294), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3292), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [32654] = 5, + [32229] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1527), 2, + ACTIONS(3280), 1, + anon_sym_BANG, + ACTIONS(4010), 1, + anon_sym_COLON_COLON, + STATE(1403), 1, + sym_field_initializer_list, + STATE(1524), 2, sym_line_comment, sym_block_comment, - ACTIONS(3320), 16, + ACTIONS(1325), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -139208,7 +139330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3322), 25, + ACTIONS(1327), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -139231,38 +139353,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - [32710] = 6, + [32292] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3560), 1, - anon_sym_LBRACE, - STATE(1528), 2, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + anon_sym_LT2, + ACTIONS(4004), 1, + anon_sym_COLON_COLON, + STATE(1599), 1, + sym_type_arguments, + STATE(1626), 1, + sym_parameters, + STATE(1525), 2, sym_line_comment, sym_block_comment, - ACTIONS(3312), 16, + ACTIONS(3298), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3314), 24, - anon_sym_LPAREN, + ACTIONS(3296), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -139276,33 +139405,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [32768] = 9, + [32359] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_LT2, - STATE(1611), 1, - sym_parameters, - STATE(1623), 1, - sym_type_arguments, - STATE(1529), 2, + ACTIONS(3363), 1, + anon_sym_BANG, + ACTIONS(3365), 1, + anon_sym_COLON_COLON, + ACTIONS(4012), 1, + sym_identifier, + STATE(1526), 2, sym_line_comment, sym_block_comment, - ACTIONS(3326), 17, + ACTIONS(3361), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139313,16 +139437,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3324), 20, + anon_sym_as, + ACTIONS(3359), 23, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139334,42 +139459,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [32832] = 5, + [32422] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1530), 2, + ACTIONS(3304), 1, + anon_sym_BANG, + ACTIONS(3306), 1, + anon_sym_COLON_COLON, + STATE(1527), 2, sym_line_comment, sym_block_comment, - ACTIONS(3336), 16, + ACTIONS(3302), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3338), 25, + ACTIONS(3300), 22, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139381,46 +139512,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [32888] = 5, + anon_sym_LT2, + [32482] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1531), 2, + ACTIONS(3328), 1, + anon_sym_BANG, + ACTIONS(3330), 1, + anon_sym_COLON_COLON, + STATE(1528), 2, sym_line_comment, sym_block_comment, - ACTIONS(3312), 16, + ACTIONS(3326), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3314), 25, + ACTIONS(3324), 22, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139432,26 +139565,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [32944] = 5, + anon_sym_LT2, + [32542] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1532), 2, + STATE(1529), 2, sym_line_comment, sym_block_comment, - ACTIONS(4013), 10, + ACTIONS(4016), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -139462,7 +139592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4011), 31, + ACTIONS(4014), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -139494,15 +139624,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33000] = 5, + [32598] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1533), 2, + STATE(1530), 2, sym_line_comment, sym_block_comment, - ACTIONS(4017), 10, + ACTIONS(4020), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -139513,7 +139643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4015), 31, + ACTIONS(4018), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -139545,67 +139675,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33056] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3538), 1, - anon_sym_LBRACE, - STATE(1534), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3336), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3338), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [33114] = 5, + [32654] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1535), 2, + STATE(1531), 2, sym_line_comment, sym_block_comment, - ACTIONS(3602), 10, + ACTIONS(4024), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -139616,7 +139694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3600), 31, + ACTIONS(4022), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -139648,68 +139726,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33170] = 7, + [32710] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3858), 1, - anon_sym_COLON_COLON, - ACTIONS(3948), 1, - anon_sym_BANG, - STATE(1536), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1289), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1291), 24, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [33230] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1537), 2, + STATE(1532), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 10, + ACTIONS(3706), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -139720,7 +139745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3846), 31, + ACTIONS(3704), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -139752,23 +139777,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33286] = 9, + [32766] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3966), 1, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(3972), 1, + ACTIONS(4000), 1, anon_sym_LT2, - STATE(1611), 1, - sym_parameters, - STATE(1623), 1, + STATE(1600), 1, sym_type_arguments, - STATE(1538), 2, + STATE(1636), 1, + sym_parameters, + STATE(1533), 2, sym_line_comment, sym_block_comment, - ACTIONS(3306), 17, + ACTIONS(3322), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139786,7 +139811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3304), 20, + ACTIONS(3320), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -139807,37 +139832,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [33350] = 7, + [32830] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3312), 1, - anon_sym_BANG, - ACTIONS(3314), 1, - anon_sym_COLON_COLON, - STATE(1539), 2, + ACTIONS(3515), 1, + anon_sym_LBRACE, + STATE(1534), 2, sym_line_comment, sym_block_comment, - ACTIONS(3310), 17, + ACTIONS(3312), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3308), 22, + ACTIONS(3314), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -139852,78 +139874,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [33410] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_LT2, - STATE(1611), 1, - sym_parameters, - STATE(1623), 1, - sym_type_arguments, - STATE(1540), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3330), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3328), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [33474] = 5, + [32888] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1541), 2, + ACTIONS(4030), 1, + anon_sym_COLON_COLON, + STATE(1535), 2, sym_line_comment, sym_block_comment, - ACTIONS(4021), 10, + ACTIONS(4028), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -139931,10 +139902,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_AMP, anon_sym_LT, - anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4019), 31, + ACTIONS(4026), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -139966,16 +139936,20 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33530] = 7, + [32946] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3336), 1, - anon_sym_BANG, - ACTIONS(3338), 1, - anon_sym_COLON_COLON, - STATE(1542), 2, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + anon_sym_LT2, + STATE(1600), 1, + sym_type_arguments, + STATE(1636), 1, + sym_parameters, + STATE(1536), 2, sym_line_comment, sym_block_comment, ACTIONS(3334), 17, @@ -139996,8 +139970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3332), 22, - anon_sym_LPAREN, + ACTIONS(3332), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -140018,38 +139991,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_LT2, - [33590] = 7, + [33010] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3300), 1, - anon_sym_BANG, - ACTIONS(3302), 1, - anon_sym_COLON_COLON, - STATE(1543), 2, + ACTIONS(3561), 1, + anon_sym_LBRACE, + STATE(1537), 2, sym_line_comment, sym_block_comment, - ACTIONS(3298), 17, + ACTIONS(3340), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3296), 22, + ACTIONS(3342), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -140064,77 +140033,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [33650] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4023), 1, anon_sym_COLON_COLON, - STATE(1544), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4009), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4004), 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, - [33708] = 6, + anon_sym_as, + [33068] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3488), 1, - anon_sym_LBRACE, - STATE(1545), 2, + STATE(1538), 2, sym_line_comment, sym_block_comment, - ACTIONS(3300), 16, + ACTIONS(3312), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140151,10 +140068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3302), 24, + ACTIONS(3314), 25, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140175,20 +140092,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [33766] = 7, + [33124] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3272), 1, - anon_sym_BANG, - ACTIONS(4026), 1, + ACTIONS(3904), 1, anon_sym_COLON_COLON, - STATE(1546), 2, + ACTIONS(4002), 1, + anon_sym_BANG, + STATE(1539), 2, sym_line_comment, sym_block_comment, - ACTIONS(1289), 15, + ACTIONS(1325), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140204,10 +140122,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1291), 24, + ACTIONS(1327), 24, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140227,26 +140146,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [33826] = 6, + [33184] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4033), 1, + anon_sym_LPAREN, + STATE(1540), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4028), 9, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4026), 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, + [33242] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3490), 1, - anon_sym_LBRACE, - STATE(1547), 2, + ACTIONS(3652), 1, + anon_sym_BANG, + ACTIONS(4036), 1, + anon_sym_COLON_COLON, + STATE(1541), 2, sym_line_comment, sym_block_comment, - ACTIONS(3320), 16, + ACTIONS(3361), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -140256,10 +140227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3322), 24, + ACTIONS(3359), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140279,17 +140250,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [33884] = 5, + [33302] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1548), 2, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + anon_sym_LT2, + STATE(1600), 1, + sym_type_arguments, + STATE(1636), 1, + sym_parameters, + STATE(1542), 2, sym_line_comment, sym_block_comment, - ACTIONS(3474), 15, + ACTIONS(3318), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140300,15 +140279,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3472), 25, - anon_sym_LPAREN, + ACTIONS(3316), 20, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -140321,31 +140300,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [33939] = 5, + [33366] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1549), 2, + ACTIONS(3517), 1, + anon_sym_LBRACE, + STATE(1543), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 15, + ACTIONS(3328), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -140355,10 +140334,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3450), 25, + ACTIONS(3330), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -140381,19 +140359,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [33994] = 7, + [33424] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4028), 1, - anon_sym_SQUOTE, - STATE(1660), 1, - sym_label, - STATE(1550), 2, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(4000), 1, + anon_sym_LT2, + STATE(1600), 1, + sym_type_arguments, + STATE(1636), 1, + sym_parameters, + STATE(1544), 2, sym_line_comment, sym_block_comment, - ACTIONS(3363), 15, + ACTIONS(3346), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140404,13 +140386,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3361), 23, - anon_sym_LPAREN, + ACTIONS(3344), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -140424,34 +140407,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34053] = 7, + [33488] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4030), 1, - anon_sym_BANG, - ACTIONS(4032), 1, - anon_sym_COLON_COLON, - STATE(1551), 2, + STATE(1545), 2, sym_line_comment, sym_block_comment, - ACTIONS(3353), 15, + ACTIONS(3328), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -140461,10 +140439,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3351), 23, + ACTIONS(3330), 25, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140484,22 +140462,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [34112] = 5, + [33544] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1552), 2, + STATE(1546), 2, sym_line_comment, sym_block_comment, - ACTIONS(3466), 15, + ACTIONS(3340), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -140509,11 +140490,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3464), 25, + ACTIONS(3342), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140534,33 +140514,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [34167] = 5, + [33600] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1553), 2, + STATE(1547), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3878), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3876), 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, + [33656] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3340), 1, + anon_sym_BANG, + ACTIONS(3342), 1, + anon_sym_COLON_COLON, + STATE(1548), 2, sym_line_comment, sym_block_comment, - ACTIONS(3336), 16, + ACTIONS(3338), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3338), 24, + ACTIONS(3336), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -140575,25 +140612,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [34222] = 5, + anon_sym_LT2, + [33716] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1554), 2, + ACTIONS(3280), 1, + anon_sym_BANG, + ACTIONS(4038), 1, + anon_sym_COLON_COLON, + STATE(1549), 2, sym_line_comment, sym_block_comment, - ACTIONS(3482), 15, + ACTIONS(1325), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140609,11 +140648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3480), 25, + ACTIONS(1327), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140633,21 +140671,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [34277] = 7, + [33776] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4034), 1, - anon_sym_else, - STATE(1703), 1, - sym_else_clause, - STATE(1555), 2, + ACTIONS(3312), 1, + anon_sym_BANG, + ACTIONS(3314), 1, + anon_sym_COLON_COLON, + STATE(1550), 2, sym_line_comment, sym_block_comment, - ACTIONS(1241), 15, + ACTIONS(3310), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140658,12 +140696,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1239), 23, + ACTIONS(3308), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -140678,102 +140718,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34336] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(867), 1, - anon_sym_RBRACK, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, - anon_sym_AMP, - ACTIONS(3930), 1, - anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4036), 1, - anon_sym_SEMI, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, - ACTIONS(4042), 1, - anon_sym_COMMA, - STATE(2749), 1, - aux_sym_arguments_repeat1, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3942), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1556), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3954), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [34431] = 6, + anon_sym_LT2, + [33836] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3714), 1, - anon_sym_COLON_COLON, - STATE(1557), 2, + STATE(1551), 2, sym_line_comment, sym_block_comment, - ACTIONS(3716), 15, + ACTIONS(3304), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -140783,7 +140751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3712), 24, + ACTIONS(3306), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -140806,25 +140774,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - [34488] = 6, + [33892] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1465), 1, - sym_label, - STATE(1558), 2, + ACTIONS(3555), 1, + anon_sym_LBRACE, + STATE(1552), 2, sym_line_comment, sym_block_comment, - ACTIONS(3363), 15, + ACTIONS(3304), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -140834,10 +140804,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3361), 24, + ACTIONS(3306), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140857,68 +140827,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - [34545] = 25, + [33950] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(985), 1, + ACTIONS(1017), 1, anon_sym_RBRACK, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, - ACTIONS(4044), 1, + ACTIONS(4040), 1, anon_sym_SEMI, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, ACTIONS(4046), 1, anon_sym_COMMA, - STATE(2836), 1, + STATE(2759), 1, aux_sym_arguments_repeat1, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1559), 2, + STATE(1553), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140929,66 +140899,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34640] = 25, + [34045] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(3656), 1, + ACTIONS(955), 1, + anon_sym_RBRACK, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4052), 1, - anon_sym_CARET, - ACTIONS(4054), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(4056), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(4058), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(4060), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(4066), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4072), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - STATE(1191), 1, - sym_block, - STATE(3556), 1, - sym_label, - ACTIONS(4048), 2, + ACTIONS(4048), 1, + anon_sym_SEMI, + ACTIONS(4050), 1, + anon_sym_COMMA, + STATE(2864), 1, + aux_sym_arguments_repeat1, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4062), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4070), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4074), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1560), 2, + STATE(1554), 2, sym_line_comment, sym_block_comment, - ACTIONS(4050), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4068), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4064), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140999,66 +140969,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34735] = 25, + [34140] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, - anon_sym_RBRACK, - ACTIONS(3656), 1, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, + ACTIONS(4056), 1, anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(4058), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(4060), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(4062), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4064), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(4070), 1, anon_sym_EQ, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, ACTIONS(4076), 1, - anon_sym_SEMI, - ACTIONS(4078), 1, - anon_sym_COMMA, - STATE(2875), 1, - aux_sym_arguments_repeat1, - ACTIONS(3922), 2, + anon_sym_DOT_DOT, + STATE(460), 1, + sym_block, + STATE(3616), 1, + sym_label, + ACTIONS(4052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(4074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4078), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1561), 2, + STATE(1555), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(4054), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(4072), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(4068), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141069,66 +141039,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34830] = 25, + [34235] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4052), 1, + ACTIONS(4056), 1, anon_sym_CARET, - ACTIONS(4054), 1, + ACTIONS(4058), 1, anon_sym_AMP, - ACTIONS(4056), 1, + ACTIONS(4060), 1, anon_sym_PIPE, - ACTIONS(4058), 1, + ACTIONS(4062), 1, anon_sym_AMP_AMP, - ACTIONS(4060), 1, + ACTIONS(4064), 1, anon_sym_PIPE_PIPE, - ACTIONS(4066), 1, + ACTIONS(4070), 1, anon_sym_EQ, - ACTIONS(4072), 1, + ACTIONS(4076), 1, anon_sym_DOT_DOT, - STATE(1353), 1, + STATE(1178), 1, sym_block, - STATE(3556), 1, + STATE(3567), 1, sym_label, - ACTIONS(4048), 2, + ACTIONS(4052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4062), 2, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4070), 2, + ACTIONS(4074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4074), 2, + ACTIONS(4078), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1562), 2, + STATE(1556), 2, sym_line_comment, sym_block_comment, - ACTIONS(4050), 3, + ACTIONS(4054), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4068), 4, + ACTIONS(4072), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4064), 10, + ACTIONS(4068), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141139,22 +141109,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34925] = 5, + [34330] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1563), 2, + ACTIONS(4080), 1, + anon_sym_else, + STATE(1680), 1, + sym_else_clause, + STATE(1557), 2, sym_line_comment, sym_block_comment, - ACTIONS(3312), 16, + ACTIONS(1249), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -141164,7 +141137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3314), 24, + ACTIONS(1247), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141187,68 +141160,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [34980] = 25, + [34389] = 25, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4052), 1, + ACTIONS(4056), 1, anon_sym_CARET, - ACTIONS(4054), 1, + ACTIONS(4058), 1, anon_sym_AMP, - ACTIONS(4056), 1, + ACTIONS(4060), 1, anon_sym_PIPE, - ACTIONS(4058), 1, + ACTIONS(4062), 1, anon_sym_AMP_AMP, - ACTIONS(4060), 1, + ACTIONS(4064), 1, anon_sym_PIPE_PIPE, - ACTIONS(4066), 1, + ACTIONS(4070), 1, anon_sym_EQ, - ACTIONS(4072), 1, + ACTIONS(4076), 1, anon_sym_DOT_DOT, - STATE(392), 1, + STATE(383), 1, sym_block, - STATE(3569), 1, + STATE(3347), 1, sym_label, - ACTIONS(4048), 2, + ACTIONS(4052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4062), 2, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4070), 2, + ACTIONS(4074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4074), 2, + ACTIONS(4078), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1564), 2, + STATE(1558), 2, sym_line_comment, sym_block_comment, - ACTIONS(4050), 3, + ACTIONS(4054), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4068), 4, + ACTIONS(4072), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4064), 10, + ACTIONS(4068), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141259,206 +141231,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35075] = 25, + [34484] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1217), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(4052), 1, - anon_sym_CARET, - ACTIONS(4054), 1, - anon_sym_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4058), 1, - anon_sym_AMP_AMP, - ACTIONS(4060), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4066), 1, - anon_sym_EQ, - ACTIONS(4072), 1, - anon_sym_DOT_DOT, - STATE(477), 1, - sym_block, - STATE(3606), 1, - sym_label, - ACTIONS(4048), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4062), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4070), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4074), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1565), 2, + STATE(1559), 2, sym_line_comment, sym_block_comment, - ACTIONS(4050), 3, + ACTIONS(3304), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4068), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4064), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35170] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(4052), 1, anon_sym_CARET, - ACTIONS(4054), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(4058), 1, - anon_sym_AMP_AMP, - ACTIONS(4060), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4066), 1, - anon_sym_EQ, - ACTIONS(4072), 1, - anon_sym_DOT_DOT, - STATE(374), 1, - sym_block, - STATE(3569), 1, - sym_label, - ACTIONS(4048), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4070), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4074), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1566), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4050), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4068), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4064), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35265] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1217), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(3656), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3306), 24, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3660), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(4052), 1, - anon_sym_CARET, - ACTIONS(4054), 1, - anon_sym_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4058), 1, anon_sym_AMP_AMP, - ACTIONS(4060), 1, anon_sym_PIPE_PIPE, - ACTIONS(4066), 1, - anon_sym_EQ, - ACTIONS(4072), 1, - anon_sym_DOT_DOT, - STATE(457), 1, - sym_block, - STATE(3606), 1, - sym_label, - ACTIONS(4048), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4062), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4070), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4074), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1567), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4050), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4068), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4064), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141469,66 +141273,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35360] = 25, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [34539] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4052), 1, + ACTIONS(4056), 1, anon_sym_CARET, - ACTIONS(4054), 1, + ACTIONS(4058), 1, anon_sym_AMP, - ACTIONS(4056), 1, + ACTIONS(4060), 1, anon_sym_PIPE, - ACTIONS(4058), 1, + ACTIONS(4062), 1, anon_sym_AMP_AMP, - ACTIONS(4060), 1, + ACTIONS(4064), 1, anon_sym_PIPE_PIPE, - ACTIONS(4066), 1, + ACTIONS(4070), 1, anon_sym_EQ, - ACTIONS(4072), 1, + ACTIONS(4076), 1, anon_sym_DOT_DOT, - STATE(1709), 1, + STATE(1686), 1, sym_block, - STATE(3607), 1, + STATE(3617), 1, sym_label, - ACTIONS(4048), 2, + ACTIONS(4052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4062), 2, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4070), 2, + ACTIONS(4074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4074), 2, + ACTIONS(4078), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1568), 2, + STATE(1560), 2, sym_line_comment, sym_block_comment, - ACTIONS(4050), 3, + ACTIONS(4054), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4068), 4, + ACTIONS(4072), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4064), 10, + ACTIONS(4068), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141539,66 +141351,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35455] = 25, + [34634] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4052), 1, + ACTIONS(4056), 1, anon_sym_CARET, - ACTIONS(4054), 1, + ACTIONS(4058), 1, anon_sym_AMP, - ACTIONS(4056), 1, + ACTIONS(4060), 1, anon_sym_PIPE, - ACTIONS(4058), 1, + ACTIONS(4062), 1, anon_sym_AMP_AMP, - ACTIONS(4060), 1, + ACTIONS(4064), 1, anon_sym_PIPE_PIPE, - ACTIONS(4066), 1, + ACTIONS(4070), 1, anon_sym_EQ, - ACTIONS(4072), 1, + ACTIONS(4076), 1, anon_sym_DOT_DOT, - STATE(1714), 1, + STATE(1692), 1, sym_block, - STATE(3607), 1, + STATE(3617), 1, sym_label, - ACTIONS(4048), 2, + ACTIONS(4052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4062), 2, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4070), 2, + ACTIONS(4074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4074), 2, + ACTIONS(4078), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1569), 2, + STATE(1561), 2, sym_line_comment, sym_block_comment, - ACTIONS(4050), 3, + ACTIONS(4054), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4068), 4, + ACTIONS(4072), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4064), 10, + ACTIONS(4068), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141609,15 +141421,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35550] = 5, + [34729] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1570), 2, + STATE(1562), 2, sym_line_comment, sym_block_comment, - ACTIONS(3300), 16, + ACTIONS(3312), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141634,7 +141446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3302), 24, + ACTIONS(3314), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141659,68 +141471,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [35605] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3714), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1571), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3716), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3712), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [35662] = 6, + [34784] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4002), 1, + ACTIONS(4036), 1, anon_sym_COLON_COLON, - STATE(1572), 2, + STATE(1563), 2, sym_line_comment, sym_block_comment, - ACTIONS(3353), 15, + ACTIONS(3361), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141736,7 +141497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3351), 24, + ACTIONS(3359), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -141761,19 +141522,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, anon_sym_as, - [35719] = 7, + [34841] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3968), 1, - anon_sym_BANG, - ACTIONS(4080), 1, - anon_sym_COLON_COLON, - STATE(1573), 2, + STATE(1161), 1, + sym_label, + STATE(1564), 2, sym_line_comment, sym_block_comment, - ACTIONS(1289), 15, + ACTIONS(3441), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141789,10 +141548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1291), 23, + ACTIONS(3439), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141812,23 +141571,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [35778] = 5, + [34898] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1574), 2, + STATE(1565), 2, sym_line_comment, sym_block_comment, - ACTIONS(3320), 16, + ACTIONS(3437), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -141838,61 +141597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3322), 24, + ACTIONS(3435), 25, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [35833] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3764), 2, anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1575), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3716), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3712), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -141913,18 +141621,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [35890] = 6, + [34953] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(4082), 1, anon_sym_COLON_COLON, - STATE(1576), 2, + STATE(1566), 2, sym_line_comment, sym_block_comment, - ACTIONS(1289), 15, + ACTIONS(1325), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141940,7 +141649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1291), 24, + ACTIONS(1327), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -141965,117 +141674,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, anon_sym_as, - [35947] = 6, + [35010] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3764), 1, - anon_sym_COLON_COLON, - STATE(1577), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3716), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3712), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(343), 1, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3443), 1, anon_sym_SQUOTE, - anon_sym_as, - [36004] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(883), 1, - anon_sym_RBRACK, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, + ACTIONS(4056), 1, anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(4058), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(4060), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(4062), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4064), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(4070), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4076), 1, anon_sym_DOT_DOT, - ACTIONS(4084), 1, - anon_sym_SEMI, - ACTIONS(4086), 1, - anon_sym_COMMA, - STATE(3024), 1, - aux_sym_arguments_repeat1, - ACTIONS(3922), 2, + STATE(1335), 1, + sym_block, + STATE(3567), 1, + sym_label, + ACTIONS(4052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(4074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4078), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1578), 2, + STATE(1567), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(4054), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(4072), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(4068), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142086,15 +141744,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36099] = 5, + [35105] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1579), 2, + ACTIONS(3826), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1568), 2, sym_line_comment, sym_block_comment, - ACTIONS(3434), 15, + ACTIONS(3828), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142110,7 +141771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3432), 24, + ACTIONS(3824), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142133,19 +141794,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [36153] = 6, + [35162] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4088), 1, - anon_sym_DASH_GT, - STATE(1580), 2, + ACTIONS(3996), 1, + anon_sym_BANG, + ACTIONS(4084), 1, + anon_sym_COLON_COLON, + STATE(1569), 2, sym_line_comment, sym_block_comment, - ACTIONS(3414), 15, + ACTIONS(1325), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142161,7 +141823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3412), 23, + ACTIONS(1327), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142185,17 +141847,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [36209] = 6, + [35221] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4090), 1, + ACTIONS(4086), 1, + anon_sym_BANG, + ACTIONS(4088), 1, anon_sym_COLON_COLON, - STATE(1581), 2, + STATE(1570), 2, sym_line_comment, sym_block_comment, - ACTIONS(1289), 15, + ACTIONS(3361), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142211,7 +141875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1291), 23, + ACTIONS(3359), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142235,275 +141899,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [36265] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(4052), 1, - anon_sym_CARET, - ACTIONS(4054), 1, - anon_sym_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4058), 1, - anon_sym_AMP_AMP, - ACTIONS(4060), 1, - anon_sym_PIPE_PIPE, - ACTIONS(387), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4048), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4062), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4070), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1582), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4050), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4068), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(385), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [36347] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(4052), 1, - anon_sym_CARET, - ACTIONS(4054), 1, - anon_sym_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4058), 1, - anon_sym_AMP_AMP, - ACTIONS(4060), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4092), 1, - anon_sym_DOT_DOT, - ACTIONS(4048), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4062), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4070), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4094), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1583), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4050), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4068), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(341), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [36433] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3976), 1, - anon_sym_EQ, - ACTIONS(4052), 1, - anon_sym_CARET, - ACTIONS(4054), 1, - anon_sym_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4058), 1, - anon_sym_AMP_AMP, - ACTIONS(4060), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4092), 1, - anon_sym_DOT_DOT, - ACTIONS(4048), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4062), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4070), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4094), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1584), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4050), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4068), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3974), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [36519] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3964), 1, - anon_sym_EQ, - ACTIONS(4052), 1, - anon_sym_CARET, - ACTIONS(4054), 1, - anon_sym_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4058), 1, - anon_sym_AMP_AMP, - ACTIONS(4060), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4092), 1, - anon_sym_DOT_DOT, - ACTIONS(4048), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4062), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4070), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4094), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1585), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4050), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4068), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3962), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [36605] = 6, + [35280] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4096), 1, - anon_sym_COLON_COLON, - STATE(1586), 2, + STATE(1571), 2, sym_line_comment, sym_block_comment, - ACTIONS(3326), 15, + ACTIONS(3455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142519,9 +141923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3324), 23, + ACTIONS(3453), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -142542,133 +141947,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [36661] = 24, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, - anon_sym_AMP, - ACTIONS(3930), 1, - anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, - ACTIONS(4098), 1, - anon_sym_RPAREN, - ACTIONS(4100), 1, - anon_sym_COMMA, - STATE(2922), 1, - aux_sym_arguments_repeat1, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3942), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1587), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3954), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36753] = 24, + [35335] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(987), 1, + ACTIONS(740), 1, anon_sym_RBRACK, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4102), 1, + ACTIONS(4090), 1, + anon_sym_SEMI, + ACTIONS(4092), 1, anon_sym_COMMA, - STATE(2928), 1, + STATE(3036), 1, aux_sym_arguments_repeat1, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1588), 2, + STATE(1572), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142679,17 +142019,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36845] = 6, + [35430] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4096), 1, - anon_sym_COLON_COLON, - STATE(1589), 2, + STATE(1573), 2, sym_line_comment, sym_block_comment, - ACTIONS(3306), 15, + ACTIONS(3463), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142705,9 +142043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3304), 23, + ACTIONS(3461), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -142728,16 +142067,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [36901] = 5, + [35485] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1590), 2, + ACTIONS(4094), 1, + anon_sym_SQUOTE, + STATE(1835), 1, + sym_label, + STATE(1574), 2, sym_line_comment, sym_block_comment, - ACTIONS(3486), 15, + ACTIONS(3441), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142748,94 +142092,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3484), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, - anon_sym_as, - [36955] = 24, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(989), 1, - anon_sym_RPAREN, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, - anon_sym_AMP, - ACTIONS(3930), 1, - anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, - ACTIONS(4104), 1, - anon_sym_COMMA, - STATE(3014), 1, - aux_sym_arguments_repeat1, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3942), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1591), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3954), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3439), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142846,17 +142114,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37047] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [35544] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4032), 1, - anon_sym_COLON_COLON, - STATE(1592), 2, + STATE(1575), 2, sym_line_comment, sym_block_comment, - ACTIONS(3353), 15, + ACTIONS(3471), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142872,9 +142145,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3351), 23, + ACTIONS(3469), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -142895,31 +142169,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [37103] = 10, + [35599] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - STATE(1593), 2, + STATE(1576), 2, sym_line_comment, sym_block_comment, - ACTIONS(4050), 3, + ACTIONS(3340), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -142927,10 +142194,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3738), 21, + ACTIONS(3342), 24, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -142949,63 +142219,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37167] = 22, + anon_sym_COLON_COLON, + anon_sym_as, + [35654] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(885), 1, + anon_sym_RBRACK, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(3922), 2, + ACTIONS(4096), 1, + anon_sym_SEMI, + ACTIONS(4098), 1, + anon_sym_COMMA, + STATE(2998), 1, + aux_sym_arguments_repeat1, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1594), 2, + STATE(1577), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4106), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143016,44 +142291,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37255] = 13, + [35749] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(4054), 1, - anon_sym_AMP, - ACTIONS(4048), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4062), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1595), 2, + STATE(1578), 2, sym_line_comment, sym_block_comment, - ACTIONS(4050), 3, + ACTIONS(3328), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 6, anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3738), 21, + ACTIONS(3330), 24, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -143072,63 +142339,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37325] = 22, + anon_sym_COLON_COLON, + anon_sym_as, + [35804] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, + ACTIONS(4056), 1, anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(4058), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(4060), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(4062), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4064), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(4070), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4076), 1, anon_sym_DOT_DOT, - ACTIONS(3922), 2, + STATE(395), 1, + sym_block, + STATE(3347), 1, + sym_label, + ACTIONS(4052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(4074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4078), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1596), 2, + STATE(1579), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(4054), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4108), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3940), 4, + ACTIONS(4072), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(4068), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143139,43 +142411,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37413] = 12, + [35899] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(4048), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4062), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1597), 2, + ACTIONS(3826), 1, + anon_sym_COLON_COLON, + STATE(1580), 2, sym_line_comment, sym_block_comment, - ACTIONS(4050), 3, + ACTIONS(3828), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3738), 21, + ACTIONS(3824), 24, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -143195,17 +142461,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [37481] = 6, + anon_sym_as, + [35956] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4110), 1, + ACTIONS(3866), 1, anon_sym_COLON_COLON, - STATE(1598), 2, + STATE(1581), 2, sym_line_comment, sym_block_comment, - ACTIONS(3294), 15, + ACTIONS(3828), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143221,10 +142488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3292), 23, + ACTIONS(3824), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143244,48 +142511,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [37537] = 14, + [36013] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4052), 1, + ACTIONS(4056), 1, anon_sym_CARET, - ACTIONS(4054), 1, + ACTIONS(4058), 1, anon_sym_AMP, - ACTIONS(4048), 2, + ACTIONS(4060), 1, + anon_sym_PIPE, + ACTIONS(4062), 1, + anon_sym_AMP_AMP, + ACTIONS(4064), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4070), 1, + anon_sym_EQ, + ACTIONS(4076), 1, + anon_sym_DOT_DOT, + STATE(471), 1, + sym_block, + STATE(3616), 1, + sym_label, + ACTIONS(4052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4062), 2, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1599), 2, + ACTIONS(4074), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4078), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1582), 2, sym_line_comment, sym_block_comment, - ACTIONS(4050), 3, + ACTIONS(4054), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3738), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4072), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4068), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143296,24 +142583,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37609] = 6, + [36108] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4096), 1, + ACTIONS(3866), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - STATE(1600), 2, + STATE(1583), 2, sym_line_comment, sym_block_comment, - ACTIONS(3330), 15, + ACTIONS(3828), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143329,7 +142610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3328), 23, + ACTIONS(3824), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143353,178 +142634,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37665] = 17, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(4052), 1, - anon_sym_CARET, - ACTIONS(4054), 1, - anon_sym_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(3740), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4048), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4062), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4070), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1601), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4050), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4068), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3738), 17, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37743] = 18, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(4052), 1, - anon_sym_CARET, - ACTIONS(4054), 1, - anon_sym_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4058), 1, - anon_sym_AMP_AMP, - ACTIONS(3740), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4048), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4062), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4070), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1602), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4050), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4068), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3738), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37823] = 22, + [36165] = 22, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1411), 1, + ACTIONS(1419), 1, anon_sym_extern, - ACTIONS(3400), 1, + ACTIONS(3389), 1, anon_sym_COLON_COLON, - ACTIONS(3404), 1, + ACTIONS(3391), 1, + anon_sym_default, + ACTIONS(3393), 1, anon_sym_union, - ACTIONS(3410), 1, + ACTIONS(3397), 1, sym_metavariable, - ACTIONS(3532), 1, - anon_sym_default, - ACTIONS(4112), 1, + ACTIONS(4100), 1, sym_identifier, - ACTIONS(4114), 1, + ACTIONS(4102), 1, anon_sym_fn, - STATE(2222), 1, + STATE(2233), 1, aux_sym_function_modifiers_repeat1, - STATE(2318), 1, + STATE(2306), 1, sym_extern_modifier, - STATE(2655), 1, + STATE(2574), 1, sym_scoped_type_identifier, - STATE(3356), 1, + STATE(3365), 1, sym_generic_type_with_turbofish, - STATE(3399), 1, + STATE(3467), 1, sym_scoped_identifier, - STATE(3423), 1, - sym_generic_type, - STATE(3444), 1, - sym_function_modifiers, - STATE(3486), 1, + STATE(3498), 1, sym_bracketed_type, - STATE(1603), 2, + STATE(3513), 1, + sym_function_modifiers, + STATE(3540), 1, + sym_generic_type, + STATE(1584), 2, sym_line_comment, sym_block_comment, - ACTIONS(1397), 3, + ACTIONS(1405), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3408), 3, + ACTIONS(3395), 3, sym_self, sym_super, sym_crate, - ACTIONS(3530), 17, + ACTIONS(3387), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -143542,64 +142700,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [37911] = 24, + [36253] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(983), 1, - anon_sym_RBRACK, - ACTIONS(3656), 1, + ACTIONS(1015), 1, + anon_sym_RPAREN, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4116), 1, + ACTIONS(4104), 1, anon_sym_COMMA, - STATE(2793), 1, + STATE(2836), 1, aux_sym_arguments_repeat1, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1604), 2, + STATE(1585), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143610,62 +142768,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38003] = 22, + [36345] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4052), 1, + ACTIONS(4056), 1, anon_sym_CARET, - ACTIONS(4054), 1, + ACTIONS(4058), 1, anon_sym_AMP, - ACTIONS(4056), 1, + ACTIONS(4060), 1, anon_sym_PIPE, - ACTIONS(4058), 1, + ACTIONS(4062), 1, anon_sym_AMP_AMP, - ACTIONS(4060), 1, + ACTIONS(4064), 1, anon_sym_PIPE_PIPE, - ACTIONS(4066), 1, + ACTIONS(393), 2, anon_sym_EQ, - ACTIONS(4092), 1, anon_sym_DOT_DOT, - ACTIONS(4048), 2, + ACTIONS(4052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4062), 2, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4070), 2, + ACTIONS(4074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4094), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1605), 2, + STATE(1586), 2, sym_line_comment, sym_block_comment, - ACTIONS(3860), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4050), 3, + ACTIONS(4054), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4068), 4, + ACTIONS(4072), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4064), 10, + ACTIONS(391), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143676,20 +142828,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38091] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [36427] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1606), 2, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(4052), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1587), 2, sym_line_comment, sym_block_comment, - ACTIONS(3378), 15, - anon_sym_PLUS, + ACTIONS(4054), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3844), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -143698,13 +142863,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3376), 24, + ACTIONS(3842), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -143723,17 +142885,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [38145] = 5, + anon_sym_SQUOTE, + [36493] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1607), 2, + STATE(1588), 2, sym_line_comment, sym_block_comment, - ACTIONS(3456), 15, + ACTIONS(3447), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143749,7 +142910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3454), 24, + ACTIONS(3445), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143774,110 +142935,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_DASH_GT, anon_sym_as, - [38199] = 24, + [36547] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, - anon_sym_AMP, - ACTIONS(3930), 1, - anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, - ACTIONS(4118), 1, - anon_sym_RPAREN, - ACTIONS(4120), 1, - anon_sym_COMMA, - STATE(3012), 1, - aux_sym_arguments_repeat1, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3942), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1608), 2, + STATE(1589), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3954), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38291] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(4048), 2, + ACTIONS(3310), 17, anon_sym_PLUS, - anon_sym_DASH, - STATE(1609), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4050), 3, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3738), 21, + ACTIONS(3308), 22, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -143888,26 +142976,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [38357] = 6, + anon_sym_as, + anon_sym_LT2, + [36601] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4122), 1, - anon_sym_DASH_GT, - STATE(1610), 2, + ACTIONS(1419), 1, + anon_sym_extern, + ACTIONS(3389), 1, + anon_sym_COLON_COLON, + ACTIONS(3391), 1, + anon_sym_default, + ACTIONS(3393), 1, + anon_sym_union, + ACTIONS(3397), 1, + sym_metavariable, + ACTIONS(4106), 1, + sym_identifier, + ACTIONS(4108), 1, + anon_sym_fn, + STATE(2233), 1, + aux_sym_function_modifiers_repeat1, + STATE(2306), 1, + sym_extern_modifier, + STATE(2748), 1, + sym_scoped_type_identifier, + STATE(3365), 1, + sym_generic_type_with_turbofish, + STATE(3467), 1, + sym_scoped_identifier, + STATE(3498), 1, + sym_bracketed_type, + STATE(3540), 1, + sym_generic_type, + STATE(3627), 1, + sym_function_modifiers, + STATE(1590), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1405), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3395), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3387), 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, + [36689] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4110), 1, + anon_sym_COLON_COLON, + STATE(1591), 2, sym_line_comment, sym_block_comment, - ACTIONS(3420), 15, + ACTIONS(3322), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143923,7 +143076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3418), 23, + ACTIONS(3320), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143947,39 +143100,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38413] = 6, + [36745] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4124), 1, - anon_sym_DASH_GT, - STATE(1611), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3426), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, + ACTIONS(3932), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3424), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1592), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3934), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4112), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143990,65 +143166,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [38469] = 21, + [36833] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3952), 1, + ACTIONS(3980), 1, anon_sym_EQ, - ACTIONS(4052), 1, + ACTIONS(4056), 1, anon_sym_CARET, - ACTIONS(4054), 1, + ACTIONS(4058), 1, anon_sym_AMP, - ACTIONS(4056), 1, + ACTIONS(4060), 1, anon_sym_PIPE, - ACTIONS(4058), 1, + ACTIONS(4062), 1, anon_sym_AMP_AMP, - ACTIONS(4060), 1, + ACTIONS(4064), 1, anon_sym_PIPE_PIPE, - ACTIONS(4092), 1, + ACTIONS(4114), 1, anon_sym_DOT_DOT, - ACTIONS(4048), 2, + ACTIONS(4052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4062), 2, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4070), 2, + ACTIONS(4074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4094), 2, + ACTIONS(4116), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1612), 2, + STATE(1593), 2, sym_line_comment, sym_block_comment, - ACTIONS(4050), 3, + ACTIONS(4054), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4068), 4, + ACTIONS(4072), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3950), 13, + ACTIONS(3978), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -144062,58 +143231,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_SQUOTE, - [38555] = 21, + [36919] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3990), 1, - anon_sym_EQ, - ACTIONS(4052), 1, + ACTIONS(4056), 1, anon_sym_CARET, - ACTIONS(4054), 1, + ACTIONS(4058), 1, anon_sym_AMP, - ACTIONS(4056), 1, + ACTIONS(4060), 1, anon_sym_PIPE, - ACTIONS(4058), 1, + ACTIONS(4062), 1, anon_sym_AMP_AMP, - ACTIONS(4060), 1, + ACTIONS(4064), 1, anon_sym_PIPE_PIPE, - ACTIONS(4092), 1, + ACTIONS(4114), 1, anon_sym_DOT_DOT, - ACTIONS(4048), 2, + ACTIONS(4052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4062), 2, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4070), 2, + ACTIONS(4074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4094), 2, + ACTIONS(4116), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1613), 2, + STATE(1594), 2, sym_line_comment, sym_block_comment, - ACTIONS(4050), 3, + ACTIONS(4054), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4068), 4, + ACTIONS(4072), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3988), 13, + ACTIONS(341), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -144127,15 +143296,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_SQUOTE, - [38641] = 5, + [37005] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1614), 2, + ACTIONS(4118), 1, + anon_sym_COLON_COLON, + STATE(1595), 2, sym_line_comment, sym_block_comment, - ACTIONS(1259), 15, + ACTIONS(3334), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144151,7 +143322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1257), 24, + ACTIONS(3332), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144175,16 +143346,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [38695] = 5, + [37061] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1615), 2, + ACTIONS(4120), 1, + anon_sym_DASH_GT, + STATE(1596), 2, sym_line_comment, sym_block_comment, - ACTIONS(1251), 15, + ACTIONS(3572), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144200,7 +143372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1249), 24, + ACTIONS(3570), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144224,20 +143396,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [38749] = 7, + [37117] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4126), 1, - anon_sym_LPAREN, - STATE(1836), 1, - sym_arguments, - STATE(1616), 2, + ACTIONS(975), 1, + anon_sym_RBRACK, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, + anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, + anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, + ACTIONS(4122), 1, + anon_sym_COMMA, + STATE(2848), 1, + aux_sym_arguments_repeat1, + ACTIONS(3932), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3938), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3954), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1597), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3934), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3948), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37209] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1598), 2, sym_line_comment, sym_block_comment, - ACTIONS(3504), 15, + ACTIONS(3568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144253,7 +143488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3500), 22, + ACTIONS(3566), 24, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -144275,16 +143511,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [38807] = 5, + [37263] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1617), 2, + STATE(1599), 2, sym_line_comment, sym_block_comment, - ACTIONS(1247), 15, + ACTIONS(3451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144300,7 +143537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1245), 24, + ACTIONS(3449), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144323,17 +143560,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [38861] = 5, + [37317] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1618), 2, + STATE(1600), 2, sym_line_comment, sym_block_comment, - ACTIONS(1255), 15, + ACTIONS(3373), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144349,7 +143586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1253), 24, + ACTIONS(3371), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144372,62 +143609,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [38915] = 21, + [37371] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3938), 1, - anon_sym_EQ, - ACTIONS(4052), 1, + ACTIONS(4124), 1, + anon_sym_DASH_GT, + STATE(1601), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3377), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4054), 1, anon_sym_AMP, - ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(4058), 1, - anon_sym_AMP_AMP, - ACTIONS(4060), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4092), 1, - anon_sym_DOT_DOT, - ACTIONS(4048), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4062), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4070), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4094), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1619), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4050), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4068), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3920), 13, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3375), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144438,47 +143654,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [39001] = 15, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [37427] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(4052), 1, - anon_sym_CARET, - ACTIONS(4054), 1, - anon_sym_AMP, - ACTIONS(4056), 1, - anon_sym_PIPE, - ACTIONS(4048), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4062), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1620), 2, + STATE(1602), 2, sym_line_comment, sym_block_comment, - ACTIONS(4050), 3, + ACTIONS(3413), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3738), 21, + ACTIONS(3411), 24, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -144497,36 +143708,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39075] = 5, + anon_sym_DASH_GT, + anon_sym_as, + [37481] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1621), 2, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(4056), 1, + anon_sym_CARET, + ACTIONS(4058), 1, + anon_sym_AMP, + ACTIONS(4052), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4066), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1603), 2, sym_line_comment, sym_block_comment, - ACTIONS(3382), 15, - anon_sym_PLUS, + ACTIONS(4054), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3844), 5, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3380), 24, + ACTIONS(3842), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -144545,17 +143767,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [39129] = 5, + anon_sym_SQUOTE, + [37553] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1622), 2, + ACTIONS(4088), 1, + anon_sym_COLON_COLON, + STATE(1604), 2, sym_line_comment, sym_block_comment, - ACTIONS(3494), 15, + ACTIONS(3361), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144571,7 +143794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3492), 24, + ACTIONS(3359), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144594,17 +143817,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [39183] = 5, + [37609] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1623), 2, + ACTIONS(4126), 1, + anon_sym_COLON_COLON, + STATE(1605), 2, sym_line_comment, sym_block_comment, - ACTIONS(3386), 15, + ACTIONS(3334), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144620,7 +143844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3384), 24, + ACTIONS(3332), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144643,64 +143867,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [39237] = 22, + [37665] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4052), 1, + ACTIONS(3988), 1, + anon_sym_EQ, + ACTIONS(4056), 1, anon_sym_CARET, - ACTIONS(4054), 1, + ACTIONS(4058), 1, anon_sym_AMP, - ACTIONS(4056), 1, + ACTIONS(4060), 1, anon_sym_PIPE, - ACTIONS(4058), 1, + ACTIONS(4062), 1, anon_sym_AMP_AMP, - ACTIONS(4060), 1, + ACTIONS(4064), 1, anon_sym_PIPE_PIPE, - ACTIONS(4066), 1, - anon_sym_EQ, - ACTIONS(4092), 1, + ACTIONS(4114), 1, anon_sym_DOT_DOT, - ACTIONS(4048), 2, + ACTIONS(4052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4062), 2, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4070), 2, + ACTIONS(4074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4094), 2, + ACTIONS(4116), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1624), 2, + STATE(1606), 2, sym_line_comment, sym_block_comment, - ACTIONS(3778), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4050), 3, + ACTIONS(4054), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4068), 4, + ACTIONS(4072), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4064), 10, + ACTIONS(3986), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144711,89 +143932,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39325] = 6, + anon_sym_SQUOTE, + [37751] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, + anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, + anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, ACTIONS(4128), 1, - anon_sym_COLON_COLON, - STATE(1625), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3294), 15, + anon_sym_RPAREN, + ACTIONS(4130), 1, + anon_sym_COMMA, + STATE(2795), 1, + aux_sym_arguments_repeat1, + ACTIONS(3932), 2, anon_sym_PLUS, - anon_sym_STAR, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3292), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [39381] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4096), 1, - anon_sym_COLON_COLON, - STATE(1626), 2, + STATE(1607), 2, sym_line_comment, sym_block_comment, - ACTIONS(3294), 15, - anon_sym_PLUS, + ACTIONS(3934), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3292), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144804,22 +144001,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [39437] = 5, + [37843] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1627), 2, + ACTIONS(4110), 1, + anon_sym_COLON_COLON, + STATE(1608), 2, sym_line_comment, sym_block_comment, - ACTIONS(3498), 15, + ACTIONS(3334), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144835,7 +144027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3496), 24, + ACTIONS(3332), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144858,17 +144050,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [39491] = 5, + [37899] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1628), 2, + ACTIONS(4110), 1, + anon_sym_COLON_COLON, + STATE(1609), 2, sym_line_comment, sym_block_comment, - ACTIONS(3298), 17, + ACTIONS(3318), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144879,14 +144072,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3296), 22, + ACTIONS(3316), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144901,70 +144092,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_LT2, - [39545] = 22, + [37955] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4052), 1, + ACTIONS(3962), 1, + anon_sym_EQ, + ACTIONS(4056), 1, anon_sym_CARET, - ACTIONS(4054), 1, + ACTIONS(4058), 1, anon_sym_AMP, - ACTIONS(4056), 1, + ACTIONS(4060), 1, anon_sym_PIPE, - ACTIONS(4058), 1, + ACTIONS(4062), 1, anon_sym_AMP_AMP, - ACTIONS(4060), 1, + ACTIONS(4064), 1, anon_sym_PIPE_PIPE, - ACTIONS(4066), 1, - anon_sym_EQ, - ACTIONS(4092), 1, + ACTIONS(4114), 1, anon_sym_DOT_DOT, - ACTIONS(4048), 2, + ACTIONS(4052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4062), 2, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4070), 2, + ACTIONS(4074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4094), 2, + ACTIONS(4116), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1629), 2, + STATE(1610), 2, sym_line_comment, sym_block_comment, - ACTIONS(3596), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4050), 3, + ACTIONS(4054), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4068), 4, + ACTIONS(4072), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4064), 10, + ACTIONS(3960), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144975,55 +144165,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39633] = 22, + anon_sym_SQUOTE, + [38041] = 22, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1411), 1, + ACTIONS(1419), 1, anon_sym_extern, - ACTIONS(3400), 1, + ACTIONS(3389), 1, anon_sym_COLON_COLON, - ACTIONS(3404), 1, + ACTIONS(3391), 1, + anon_sym_default, + ACTIONS(3393), 1, anon_sym_union, - ACTIONS(3410), 1, + ACTIONS(3397), 1, sym_metavariable, - ACTIONS(3532), 1, - anon_sym_default, - ACTIONS(4130), 1, - sym_identifier, ACTIONS(4132), 1, + sym_identifier, + ACTIONS(4134), 1, anon_sym_fn, - STATE(2222), 1, + STATE(2233), 1, aux_sym_function_modifiers_repeat1, - STATE(2318), 1, + STATE(2306), 1, sym_extern_modifier, - STATE(2700), 1, + STATE(2693), 1, sym_scoped_type_identifier, - STATE(3356), 1, + STATE(3365), 1, sym_generic_type_with_turbofish, - STATE(3387), 1, + STATE(3396), 1, sym_function_modifiers, - STATE(3399), 1, + STATE(3467), 1, sym_scoped_identifier, - STATE(3423), 1, - sym_generic_type, - STATE(3486), 1, + STATE(3498), 1, sym_bracketed_type, - STATE(1630), 2, + STATE(3540), 1, + sym_generic_type, + STATE(1611), 2, sym_line_comment, sym_block_comment, - ACTIONS(1397), 3, + ACTIONS(1405), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3408), 3, + ACTIONS(3395), 3, sym_self, sym_super, sym_crate, - ACTIONS(3530), 17, + ACTIONS(3387), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -145041,149 +144232,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [39721] = 19, + [38129] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4052), 1, + ACTIONS(4056), 1, anon_sym_CARET, - ACTIONS(4054), 1, + ACTIONS(4058), 1, anon_sym_AMP, - ACTIONS(4056), 1, + ACTIONS(4060), 1, anon_sym_PIPE, - ACTIONS(4058), 1, + ACTIONS(4062), 1, anon_sym_AMP_AMP, - ACTIONS(4060), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3960), 2, + ACTIONS(3844), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4048), 2, + ACTIONS(4052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4062), 2, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4070), 2, + ACTIONS(4074), 2, anon_sym_GT, anon_sym_LT, - STATE(1631), 2, + STATE(1612), 2, sym_line_comment, sym_block_comment, - ACTIONS(4050), 3, + ACTIONS(4054), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4068), 4, + ACTIONS(4072), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3958), 15, + ACTIONS(3842), 16, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39803] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4134), 1, - anon_sym_COLON_COLON, - STATE(1632), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1289), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1291), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [39859] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1633), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3470), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3468), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -145195,25 +144291,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, - anon_sym_as, - [39913] = 6, + anon_sym_SQUOTE, + [38209] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(4136), 1, - anon_sym_DASH_GT, - STATE(1634), 2, + anon_sym_COLON_COLON, + STATE(1613), 2, sym_line_comment, sym_block_comment, - ACTIONS(3438), 15, + ACTIONS(1325), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145229,7 +144320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3436), 23, + ACTIONS(1327), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145253,17 +144344,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39969] = 6, + [38265] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(4138), 1, - anon_sym_DASH_GT, - STATE(1635), 2, + anon_sym_LPAREN, + STATE(1846), 1, + sym_arguments, + STATE(1614), 2, sym_line_comment, sym_block_comment, - ACTIONS(3444), 15, + ACTIONS(3495), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145279,8 +144372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3442), 23, - anon_sym_LPAREN, + ACTIONS(3491), 22, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -145303,17 +144395,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40025] = 6, + [38323] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(4140), 1, anon_sym_DASH_GT, - STATE(1636), 2, + STATE(1615), 2, sym_line_comment, sym_block_comment, - ACTIONS(3564), 15, + ACTIONS(3417), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145329,7 +144421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3562), 23, + ACTIONS(3415), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145353,17 +144445,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40081] = 6, + [38379] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(4142), 1, - anon_sym_DASH_GT, - STATE(1637), 2, + anon_sym_COLON_COLON, + STATE(1616), 2, sym_line_comment, sym_block_comment, - ACTIONS(3460), 15, + ACTIONS(1325), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145379,7 +144471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3458), 23, + ACTIONS(1327), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145403,81 +144495,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40137] = 22, - ACTIONS(29), 1, - anon_sym_LT, + [38435] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1411), 1, - anon_sym_extern, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3404), 1, - anon_sym_union, - ACTIONS(3410), 1, - sym_metavariable, - ACTIONS(3532), 1, - anon_sym_default, ACTIONS(4144), 1, - sym_identifier, - ACTIONS(4146), 1, - anon_sym_fn, - STATE(2222), 1, - aux_sym_function_modifiers_repeat1, - STATE(2318), 1, - sym_extern_modifier, - STATE(2607), 1, - sym_scoped_type_identifier, - STATE(3356), 1, - sym_generic_type_with_turbofish, - STATE(3399), 1, - sym_scoped_identifier, - STATE(3423), 1, - sym_generic_type, - STATE(3486), 1, - sym_bracketed_type, - STATE(3500), 1, - sym_function_modifiers, - STATE(1638), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1397), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3530), 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, - [40225] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1639), 2, + anon_sym_DASH_GT, + STATE(1617), 2, sym_line_comment, sym_block_comment, - ACTIONS(3478), 15, + ACTIONS(3423), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145493,7 +144521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3476), 24, + ACTIONS(3421), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145516,66 +144544,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [40279] = 24, + [38491] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1003), 1, + ACTIONS(1027), 1, anon_sym_RPAREN, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4148), 1, + ACTIONS(4146), 1, anon_sym_COMMA, - STATE(2953), 1, + STATE(2947), 1, aux_sym_arguments_repeat1, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1640), 2, + STATE(1618), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145586,15 +144613,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40371] = 5, + [38583] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1641), 2, + STATE(1619), 2, sym_line_comment, sym_block_comment, - ACTIONS(1263), 15, + ACTIONS(3467), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145610,7 +144637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1261), 24, + ACTIONS(3465), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145633,87 +144660,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - anon_sym_else, - [40425] = 5, + [38637] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1642), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3758), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(977), 1, + anon_sym_RBRACK, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, + ACTIONS(4148), 1, + anon_sym_COMMA, + STATE(2801), 1, + aux_sym_arguments_repeat1, + ACTIONS(3932), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3756), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [40478] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1643), 2, + STATE(1620), 2, sym_line_comment, sym_block_comment, - ACTIONS(3614), 15, - anon_sym_PLUS, + ACTIONS(3934), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3612), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145724,22 +144730,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [40531] = 5, + [38729] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1644), 2, + ACTIONS(4110), 1, + anon_sym_COLON_COLON, + STATE(1621), 2, sym_line_comment, sym_block_comment, - ACTIONS(3622), 15, + ACTIONS(3346), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145755,7 +144756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3620), 23, + ACTIONS(3344), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145779,15 +144780,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40584] = 5, + [38785] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1645), 2, + ACTIONS(4150), 1, + anon_sym_DASH_GT, + STATE(1622), 2, sym_line_comment, sym_block_comment, - ACTIONS(3294), 15, + ACTIONS(3429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145803,7 +144806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3292), 23, + ACTIONS(3427), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145827,15 +144830,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40637] = 5, + [38841] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1646), 2, + STATE(1623), 2, sym_line_comment, sym_block_comment, - ACTIONS(3326), 15, + ACTIONS(1263), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145851,7 +144854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3324), 23, + ACTIONS(1261), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145875,15 +144878,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40690] = 5, + anon_sym_else, + [38895] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1647), 2, + STATE(1624), 2, sym_line_comment, sym_block_comment, - ACTIONS(3504), 15, + ACTIONS(3475), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145899,7 +144903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3500), 23, + ACTIONS(3473), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145922,38 +144926,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - [40743] = 5, + [38949] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1648), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3626), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(4056), 1, anon_sym_CARET, + ACTIONS(4058), 1, anon_sym_AMP, + ACTIONS(4060), 1, anon_sym_PIPE, + ACTIONS(4062), 1, + anon_sym_AMP_AMP, + ACTIONS(4064), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4070), 1, + anon_sym_EQ, + ACTIONS(4114), 1, + anon_sym_DOT_DOT, + ACTIONS(4052), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4074), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3624), 23, + ACTIONS(4116), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1625), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3716), 3, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4054), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4072), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4068), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145964,22 +144994,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [40796] = 5, + [39037] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1649), 2, + ACTIONS(4152), 1, + anon_sym_DASH_GT, + STATE(1626), 2, sym_line_comment, sym_block_comment, - ACTIONS(3780), 15, + ACTIONS(3401), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145995,7 +145020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3778), 23, + ACTIONS(3399), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146019,15 +145044,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40849] = 5, + [39093] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1650), 2, + STATE(1627), 2, sym_line_comment, sym_block_comment, - ACTIONS(3630), 15, + ACTIONS(1259), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146043,7 +145068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3628), 23, + ACTIONS(1257), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146067,15 +145092,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40902] = 5, + anon_sym_else, + [39147] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1651), 2, + STATE(1628), 2, sym_line_comment, sym_block_comment, - ACTIONS(3876), 15, + ACTIONS(1267), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146091,7 +145117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3874), 23, + ACTIONS(1265), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146115,15 +145141,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40955] = 5, + anon_sym_else, + [39201] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1652), 2, + STATE(1629), 2, sym_line_comment, sym_block_comment, - ACTIONS(3900), 15, + ACTIONS(1255), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146139,7 +145166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3898), 23, + ACTIONS(1253), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146163,15 +145190,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41008] = 5, + anon_sym_else, + [39255] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1653), 2, + STATE(1630), 2, sym_line_comment, sym_block_comment, - ACTIONS(3648), 15, + ACTIONS(1271), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146187,7 +145215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3646), 23, + ACTIONS(1269), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146211,35 +145239,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41061] = 5, + anon_sym_else, + [39309] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1654), 2, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(4056), 1, + anon_sym_CARET, + ACTIONS(4058), 1, + anon_sym_AMP, + ACTIONS(4060), 1, + anon_sym_PIPE, + ACTIONS(4062), 1, + anon_sym_AMP_AMP, + ACTIONS(4064), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4070), 1, + anon_sym_EQ, + ACTIONS(4114), 1, + anon_sym_DOT_DOT, + ACTIONS(4052), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4066), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4074), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4116), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1631), 2, sym_line_comment, sym_block_comment, - ACTIONS(3652), 15, - anon_sym_PLUS, + ACTIONS(3766), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4054), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4072), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4068), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39397] = 15, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(4056), 1, anon_sym_CARET, + ACTIONS(4058), 1, anon_sym_AMP, + ACTIONS(4060), 1, anon_sym_PIPE, + ACTIONS(4052), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1632), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4054), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3844), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3650), 23, + ACTIONS(3842), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146258,16 +145364,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [39471] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, anon_sym_as, - [41114] = 5, + ACTIONS(3936), 1, + anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, + anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, + ACTIONS(3932), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3938), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3954), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1633), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3934), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4154), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3948), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [39559] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1655), 2, + STATE(1634), 2, sym_line_comment, sym_block_comment, - ACTIONS(3904), 15, + ACTIONS(3525), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146283,7 +145455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3902), 23, + ACTIONS(3523), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146306,21 +145478,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [41167] = 5, + [39613] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1656), 2, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + STATE(1635), 2, sym_line_comment, sym_block_comment, - ACTIONS(3666), 15, - anon_sym_PLUS, + ACTIONS(4054), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3844), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -146329,13 +145511,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3664), 23, + ACTIONS(3842), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146354,16 +145533,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41220] = 5, + anon_sym_SQUOTE, + [39677] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1657), 2, + ACTIONS(4156), 1, + anon_sym_DASH_GT, + STATE(1636), 2, sym_line_comment, sym_block_comment, - ACTIONS(3670), 15, + ACTIONS(3407), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146379,7 +145560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3668), 23, + ACTIONS(3405), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146403,62 +145584,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41273] = 23, + [39733] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1189), 1, - anon_sym_RPAREN, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, + ACTIONS(4056), 1, anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(4058), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(4060), 1, anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3844), 2, anon_sym_EQ, - ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4150), 1, - anon_sym_COMMA, - ACTIONS(3922), 2, + ACTIONS(4052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(4074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1658), 2, + STATE(1637), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(4054), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(4072), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3842), 17, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146469,37 +145642,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41362] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [39811] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1659), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3678), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(4056), 1, anon_sym_CARET, + ACTIONS(4058), 1, anon_sym_AMP, + ACTIONS(4060), 1, anon_sym_PIPE, + ACTIONS(4062), 1, + anon_sym_AMP_AMP, + ACTIONS(4064), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4070), 1, + anon_sym_EQ, + ACTIONS(4114), 1, + anon_sym_DOT_DOT, + ACTIONS(4052), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4074), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3676), 23, + ACTIONS(4116), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1638), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3814), 3, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4054), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4072), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4068), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146510,42 +145711,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41415] = 5, + [39899] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1660), 2, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(4058), 1, + anon_sym_AMP, + ACTIONS(4052), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4066), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1639), 2, sym_line_comment, sym_block_comment, - ACTIONS(3872), 15, - anon_sym_PLUS, + ACTIONS(4054), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3844), 6, anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3870), 23, + ACTIONS(3842), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146564,16 +145767,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41468] = 5, + anon_sym_SQUOTE, + [39969] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1661), 2, + STATE(1640), 2, sym_line_comment, sym_block_comment, - ACTIONS(3908), 15, + ACTIONS(3529), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146589,7 +145792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3906), 23, + ACTIONS(3527), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146612,61 +145815,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [41521] = 21, + [40023] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3976), 1, - anon_sym_EQ, - ACTIONS(4152), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(4158), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(4160), 1, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(4056), 1, anon_sym_CARET, - ACTIONS(4162), 1, + ACTIONS(4058), 1, anon_sym_AMP, - ACTIONS(4164), 1, + ACTIONS(4060), 1, anon_sym_PIPE, - ACTIONS(4166), 1, + ACTIONS(4062), 1, anon_sym_AMP_AMP, - ACTIONS(4168), 1, + ACTIONS(4064), 1, anon_sym_PIPE_PIPE, - ACTIONS(4176), 1, - anon_sym_DOT, - ACTIONS(4178), 1, + ACTIONS(3992), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4182), 1, - anon_sym_as, - ACTIONS(4154), 2, + ACTIONS(4052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4170), 2, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4174), 2, + ACTIONS(4074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4180), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1662), 2, + STATE(1641), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 3, + ACTIONS(4054), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4172), 4, + ACTIONS(4072), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3974), 12, + ACTIONS(3990), 15, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146677,62 +145877,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41606] = 23, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [40105] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4184), 1, - anon_sym_SEMI, - ACTIONS(4186), 1, - anon_sym_RBRACE, - ACTIONS(3922), 2, + ACTIONS(4158), 1, + anon_sym_RPAREN, + ACTIONS(4160), 1, + anon_sym_COMMA, + STATE(2780), 1, + aux_sym_arguments_repeat1, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1663), 2, + STATE(1642), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146743,62 +145948,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41695] = 23, + [40197] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1065), 1, - anon_sym_RPAREN, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, + ACTIONS(3966), 1, + anon_sym_EQ, + ACTIONS(4056), 1, anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(4058), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(4060), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(4062), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4064), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4114), 1, anon_sym_DOT_DOT, - ACTIONS(4150), 1, - anon_sym_COMMA, - ACTIONS(3922), 2, + ACTIONS(4052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(4074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4116), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1664), 2, + STATE(1643), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(4054), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(4072), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3964), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146809,35 +146012,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41784] = 5, + anon_sym_SQUOTE, + [40283] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1665), 2, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(4052), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4066), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1644), 2, sym_line_comment, sym_block_comment, - ACTIONS(3832), 15, - anon_sym_PLUS, + ACTIONS(4054), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3844), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3830), 23, + ACTIONS(3842), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146856,61 +146068,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41837] = 21, + anon_sym_SQUOTE, + [40351] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3964), 1, - anon_sym_EQ, - ACTIONS(4152), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(4158), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(4160), 1, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3976), 1, + anon_sym_EQ, + ACTIONS(4056), 1, anon_sym_CARET, - ACTIONS(4162), 1, + ACTIONS(4058), 1, anon_sym_AMP, - ACTIONS(4164), 1, + ACTIONS(4060), 1, anon_sym_PIPE, - ACTIONS(4166), 1, + ACTIONS(4062), 1, anon_sym_AMP_AMP, - ACTIONS(4168), 1, + ACTIONS(4064), 1, anon_sym_PIPE_PIPE, - ACTIONS(4176), 1, - anon_sym_DOT, - ACTIONS(4178), 1, + ACTIONS(4114), 1, anon_sym_DOT_DOT, - ACTIONS(4182), 1, - anon_sym_as, - ACTIONS(4154), 2, + ACTIONS(4052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4170), 2, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4174), 2, + ACTIONS(4074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4180), 2, + ACTIONS(4116), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1666), 2, + STATE(1645), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 3, + ACTIONS(4054), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4172), 4, + ACTIONS(4072), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3962), 12, + ACTIONS(3974), 13, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146921,76 +146133,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41922] = 18, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_SQUOTE, + [40437] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4188), 1, - sym_identifier, - ACTIONS(4190), 1, - anon_sym_LBRACE, - ACTIONS(4192), 1, - anon_sym_RBRACE, - ACTIONS(4194), 1, - anon_sym_STAR, - ACTIONS(4198), 1, - anon_sym_COMMA, - ACTIONS(4200), 1, - anon_sym_COLON_COLON, - ACTIONS(4204), 1, - sym_metavariable, - STATE(2457), 1, - sym_scoped_identifier, - STATE(2926), 1, - sym__use_clause, - STATE(3343), 1, - sym_bracketed_type, - STATE(3461), 1, - sym_generic_type_with_turbofish, - STATE(1667), 2, + STATE(1646), 2, sym_line_comment, sym_block_comment, - ACTIONS(4202), 3, - sym_self, - sym_super, - sym_crate, - STATE(3036), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4196), 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, - [42001] = 5, + ACTIONS(3459), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3457), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, + anon_sym_as, + [40491] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1668), 2, + STATE(1647), 2, sym_line_comment, sym_block_comment, - ACTIONS(1551), 15, + ACTIONS(965), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147006,7 +146207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1553), 23, + ACTIONS(967), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147030,15 +146231,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42054] = 5, + [40544] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1669), 2, + STATE(1648), 2, sym_line_comment, sym_block_comment, - ACTIONS(1275), 15, + ACTIONS(1567), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147054,7 +146255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1273), 23, + ACTIONS(1569), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147078,15 +146279,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42107] = 5, + [40597] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1670), 2, + STATE(1649), 2, sym_line_comment, sym_block_comment, - ACTIONS(1289), 15, + ACTIONS(1319), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147102,7 +146303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1291), 23, + ACTIONS(1317), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147126,15 +146327,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42160] = 5, + [40650] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1671), 2, + STATE(1650), 2, sym_line_comment, sym_block_comment, - ACTIONS(1355), 15, + ACTIONS(1335), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147150,7 +146351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1353), 23, + ACTIONS(1333), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147174,15 +146375,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42213] = 5, + [40703] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1672), 2, + STATE(1651), 2, sym_line_comment, sym_block_comment, - ACTIONS(1359), 15, + ACTIONS(1339), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147198,7 +146399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1357), 23, + ACTIONS(1337), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147222,15 +146423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42266] = 5, + [40756] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1673), 2, + STATE(1652), 2, sym_line_comment, sym_block_comment, - ACTIONS(1339), 15, + ACTIONS(1343), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147246,7 +146447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1337), 23, + ACTIONS(1341), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147270,15 +146471,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42319] = 5, + [40809] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1674), 2, + STATE(1653), 2, sym_line_comment, sym_block_comment, - ACTIONS(1271), 15, + ACTIONS(1347), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147294,7 +146495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1269), 23, + ACTIONS(1345), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147318,62 +146519,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42372] = 23, + [40862] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4150), 1, - anon_sym_COMMA, - ACTIONS(4206), 1, - anon_sym_RPAREN, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1675), 2, + ACTIONS(4162), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1654), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147384,15 +146584,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42461] = 5, + [40949] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1676), 2, + STATE(1655), 2, sym_line_comment, sym_block_comment, - ACTIONS(3840), 15, + ACTIONS(3908), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147408,7 +146608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3838), 23, + ACTIONS(3906), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147432,15 +146632,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42514] = 5, + [41002] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1677), 2, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, + anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, + anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, + ACTIONS(3814), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3932), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3938), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3954), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1656), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3934), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3948), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [41089] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1657), 2, sym_line_comment, sym_block_comment, - ACTIONS(3844), 15, + ACTIONS(3578), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147456,7 +146721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3842), 23, + ACTIONS(3576), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147480,15 +146745,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42567] = 5, + [41142] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1678), 2, + STATE(1658), 2, sym_line_comment, sym_block_comment, - ACTIONS(3862), 15, + ACTIONS(1279), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147504,7 +146769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3860), 23, + ACTIONS(1277), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147528,61 +146793,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42620] = 22, + [41195] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3966), 1, + anon_sym_EQ, + ACTIONS(4164), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(4170), 1, anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, + ACTIONS(4172), 1, anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(4174), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(4176), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(4178), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4180), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4188), 1, + anon_sym_DOT, + ACTIONS(4190), 1, anon_sym_DOT_DOT, - ACTIONS(3778), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3922), 2, + ACTIONS(4194), 1, + anon_sym_as, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(4182), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4192), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1679), 2, + STATE(1659), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(4168), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3964), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147593,37 +146857,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42707] = 5, + [41280] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1680), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3682), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, + ACTIONS(4196), 1, + anon_sym_RPAREN, + ACTIONS(4198), 1, + anon_sym_COMMA, + ACTIONS(3932), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3680), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1660), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3934), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147634,22 +146923,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42760] = 5, + [41369] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1681), 2, + STATE(1661), 2, sym_line_comment, sym_block_comment, - ACTIONS(3750), 15, + ACTIONS(1299), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147665,7 +146947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3748), 23, + ACTIONS(1297), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147689,15 +146971,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42813] = 5, + [41422] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1682), 2, + STATE(1662), 2, sym_line_comment, sym_block_comment, - ACTIONS(1331), 15, + ACTIONS(1303), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147713,7 +146995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1329), 23, + ACTIONS(1301), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147737,60 +147019,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42866] = 21, + [41475] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3990), 1, - anon_sym_EQ, - ACTIONS(4152), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(4158), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(4160), 1, - anon_sym_CARET, - ACTIONS(4162), 1, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(4164), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(4166), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(4168), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(4176), 1, - anon_sym_DOT, - ACTIONS(4178), 1, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4182), 1, - anon_sym_as, - ACTIONS(4154), 2, + ACTIONS(3766), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4170), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4174), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4180), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1683), 2, + STATE(1663), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4172), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3988), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147801,15 +147084,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42951] = 5, + [41562] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1684), 2, + STATE(1664), 2, sym_line_comment, sym_block_comment, - ACTIONS(1307), 15, + ACTIONS(1311), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147825,7 +147108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1305), 23, + ACTIONS(1309), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147849,15 +147132,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43004] = 5, + [41615] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1685), 2, + STATE(1665), 2, sym_line_comment, sym_block_comment, - ACTIONS(3772), 15, + ACTIONS(3334), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147873,7 +147156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3770), 23, + ACTIONS(3332), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147897,20 +147180,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43057] = 5, + [41668] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1686), 2, + ACTIONS(4164), 1, + anon_sym_LBRACK, + ACTIONS(4170), 1, + anon_sym_QMARK, + ACTIONS(4188), 1, + anon_sym_DOT, + ACTIONS(4194), 1, + anon_sym_as, + STATE(1666), 2, sym_line_comment, sym_block_comment, - ACTIONS(1311), 15, - anon_sym_PLUS, + ACTIONS(4168), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3844), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -147919,13 +147211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1309), 23, + ACTIONS(3842), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -147944,62 +147233,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43110] = 22, + [41731] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(4164), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(4170), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(4174), 1, + anon_sym_AMP, + ACTIONS(4188), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(4194), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, - anon_sym_AMP, - ACTIONS(3930), 1, - anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, - ACTIONS(3596), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3922), 2, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(4182), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1687), 2, + STATE(1667), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(4168), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3844), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3842), 20, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148010,35 +147283,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43197] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [41800] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1688), 2, + ACTIONS(4164), 1, + anon_sym_LBRACK, + ACTIONS(4170), 1, + anon_sym_QMARK, + ACTIONS(4188), 1, + anon_sym_DOT, + ACTIONS(4194), 1, + anon_sym_as, + ACTIONS(4166), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4182), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1668), 2, sym_line_comment, sym_block_comment, - ACTIONS(1283), 15, - anon_sym_PLUS, + ACTIONS(4168), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3844), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1281), 23, + ACTIONS(3842), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148057,40 +147344,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43250] = 10, + [41867] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(4164), 1, anon_sym_LBRACK, - ACTIONS(4158), 1, + ACTIONS(4170), 1, anon_sym_QMARK, - ACTIONS(4176), 1, + ACTIONS(4172), 1, + anon_sym_CARET, + ACTIONS(4174), 1, + anon_sym_AMP, + ACTIONS(4188), 1, anon_sym_DOT, - ACTIONS(4182), 1, + ACTIONS(4194), 1, anon_sym_as, - STATE(1689), 2, + ACTIONS(4166), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4182), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1669), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 3, + ACTIONS(4168), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3844), 5, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3738), 20, + ACTIONS(3842), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -148111,42 +147401,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43313] = 13, + [41938] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(4164), 1, anon_sym_LBRACK, - ACTIONS(4158), 1, + ACTIONS(4170), 1, anon_sym_QMARK, - ACTIONS(4162), 1, + ACTIONS(4172), 1, + anon_sym_CARET, + ACTIONS(4174), 1, anon_sym_AMP, ACTIONS(4176), 1, + anon_sym_PIPE, + ACTIONS(4188), 1, anon_sym_DOT, - ACTIONS(4182), 1, + ACTIONS(4194), 1, anon_sym_as, - ACTIONS(4154), 2, + ACTIONS(3844), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4170), 2, + ACTIONS(4182), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1690), 2, + ACTIONS(4186), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1670), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 3, + ACTIONS(4168), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3738), 20, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3842), 16, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -148161,50 +147459,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43382] = 12, + [42015] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(4164), 1, anon_sym_LBRACK, - ACTIONS(4158), 1, + ACTIONS(4170), 1, anon_sym_QMARK, + ACTIONS(4172), 1, + anon_sym_CARET, + ACTIONS(4174), 1, + anon_sym_AMP, ACTIONS(4176), 1, + anon_sym_PIPE, + ACTIONS(4178), 1, + anon_sym_AMP_AMP, + ACTIONS(4188), 1, anon_sym_DOT, - ACTIONS(4182), 1, + ACTIONS(4194), 1, anon_sym_as, - ACTIONS(4154), 2, + ACTIONS(3844), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4170), 2, + ACTIONS(4182), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1691), 2, + ACTIONS(4186), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1671), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 3, + ACTIONS(4168), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3738), 20, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3842), 15, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -148216,49 +147520,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43449] = 14, + [42094] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(4164), 1, anon_sym_LBRACK, - ACTIONS(4158), 1, + ACTIONS(4170), 1, anon_sym_QMARK, - ACTIONS(4160), 1, - anon_sym_CARET, - ACTIONS(4162), 1, - anon_sym_AMP, - ACTIONS(4176), 1, + ACTIONS(4188), 1, anon_sym_DOT, - ACTIONS(4182), 1, + ACTIONS(4194), 1, anon_sym_as, - ACTIONS(4154), 2, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4170), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1692), 2, + STATE(1672), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 3, + ACTIONS(4168), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 5, + ACTIONS(3844), 9, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3738), 20, + ACTIONS(3842), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -148279,54 +147576,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43520] = 17, + [42159] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(3976), 1, + anon_sym_EQ, + ACTIONS(4164), 1, anon_sym_LBRACK, - ACTIONS(4158), 1, + ACTIONS(4170), 1, anon_sym_QMARK, - ACTIONS(4160), 1, + ACTIONS(4172), 1, anon_sym_CARET, - ACTIONS(4162), 1, + ACTIONS(4174), 1, anon_sym_AMP, - ACTIONS(4164), 1, - anon_sym_PIPE, ACTIONS(4176), 1, + anon_sym_PIPE, + ACTIONS(4178), 1, + anon_sym_AMP_AMP, + ACTIONS(4180), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4188), 1, anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_as, - ACTIONS(3740), 2, - anon_sym_EQ, + ACTIONS(4190), 1, anon_sym_DOT_DOT, - ACTIONS(4154), 2, + ACTIONS(4194), 1, + anon_sym_as, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4170), 2, + ACTIONS(4182), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4174), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - STATE(1693), 2, + ACTIONS(4192), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1673), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 3, + ACTIONS(4168), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4172), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3738), 16, + ACTIONS(3974), 12, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148337,57 +147640,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [43597] = 18, + [42244] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(3980), 1, + anon_sym_EQ, + ACTIONS(4164), 1, anon_sym_LBRACK, - ACTIONS(4158), 1, + ACTIONS(4170), 1, anon_sym_QMARK, - ACTIONS(4160), 1, + ACTIONS(4172), 1, anon_sym_CARET, - ACTIONS(4162), 1, + ACTIONS(4174), 1, anon_sym_AMP, - ACTIONS(4164), 1, + ACTIONS(4176), 1, anon_sym_PIPE, - ACTIONS(4166), 1, + ACTIONS(4178), 1, anon_sym_AMP_AMP, - ACTIONS(4176), 1, + ACTIONS(4180), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4188), 1, anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_as, - ACTIONS(3740), 2, - anon_sym_EQ, + ACTIONS(4190), 1, anon_sym_DOT_DOT, - ACTIONS(4154), 2, + ACTIONS(4194), 1, + anon_sym_as, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4170), 2, + ACTIONS(4182), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4174), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - STATE(1694), 2, + ACTIONS(4192), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1674), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 3, + ACTIONS(4168), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4172), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3738), 15, + ACTIONS(3978), 12, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148398,42 +147704,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [43676] = 11, + [42329] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(4164), 1, anon_sym_LBRACK, - ACTIONS(4158), 1, + ACTIONS(4170), 1, anon_sym_QMARK, + ACTIONS(4172), 1, + anon_sym_CARET, + ACTIONS(4174), 1, + anon_sym_AMP, ACTIONS(4176), 1, + anon_sym_PIPE, + ACTIONS(4188), 1, anon_sym_DOT, - ACTIONS(4182), 1, + ACTIONS(4194), 1, anon_sym_as, - ACTIONS(4154), 2, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1695), 2, + ACTIONS(4182), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1675), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 3, + ACTIONS(4168), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 9, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3844), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3738), 20, + ACTIONS(3842), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -148454,58 +147762,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43741] = 21, + [42402] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3952), 1, - anon_sym_EQ, - ACTIONS(4152), 1, + ACTIONS(4164), 1, anon_sym_LBRACK, - ACTIONS(4158), 1, + ACTIONS(4170), 1, anon_sym_QMARK, - ACTIONS(4160), 1, + ACTIONS(4172), 1, anon_sym_CARET, - ACTIONS(4162), 1, + ACTIONS(4174), 1, anon_sym_AMP, - ACTIONS(4164), 1, + ACTIONS(4176), 1, anon_sym_PIPE, - ACTIONS(4166), 1, + ACTIONS(4178), 1, anon_sym_AMP_AMP, - ACTIONS(4168), 1, + ACTIONS(4180), 1, anon_sym_PIPE_PIPE, - ACTIONS(4176), 1, + ACTIONS(4188), 1, anon_sym_DOT, - ACTIONS(4178), 1, - anon_sym_DOT_DOT, - ACTIONS(4182), 1, + ACTIONS(4194), 1, anon_sym_as, - ACTIONS(4154), 2, + ACTIONS(3992), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4170), 2, + ACTIONS(4182), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4174), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4180), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1696), 2, + STATE(1676), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 3, + ACTIONS(4168), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4172), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3950), 12, + ACTIONS(3990), 14, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -148518,60 +147822,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43826] = 21, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [42483] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3938), 1, + STATE(1677), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3768), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4152), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3766), 23, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(4158), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(4160), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [42536] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1678), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3590), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4162), 1, anon_sym_AMP, - ACTIONS(4164), 1, anon_sym_PIPE, - ACTIONS(4166), 1, - anon_sym_AMP_AMP, - ACTIONS(4168), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4176), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(4178), 1, anon_sym_DOT_DOT, - ACTIONS(4182), 1, + ACTIONS(3588), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_as, - ACTIONS(4154), 2, + [42589] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1679), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3594), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4170), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4174), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4180), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3592), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1697), 2, + anon_sym_as, + [42642] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 3, + ACTIONS(1287), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4172), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1285), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [42695] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1681), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1291), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1289), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148582,46 +148057,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43911] = 15, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [42748] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(4158), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(4160), 1, - anon_sym_CARET, - ACTIONS(4162), 1, - anon_sym_AMP, - ACTIONS(4164), 1, - anon_sym_PIPE, - ACTIONS(4176), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(4182), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4154), 2, + ACTIONS(3936), 1, + anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, + anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, + ACTIONS(3716), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4170), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1698), 2, + ACTIONS(3954), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1682), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3934), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3948), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [42835] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1683), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 3, + ACTIONS(1315), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3738), 20, + ACTIONS(1313), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148640,56 +148176,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43984] = 19, + anon_sym_as, + [42888] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, - anon_sym_LBRACK, - ACTIONS(4158), 1, - anon_sym_QMARK, - ACTIONS(4160), 1, + STATE(1684), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3630), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4162), 1, anon_sym_AMP, - ACTIONS(4164), 1, anon_sym_PIPE, - ACTIONS(4166), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3628), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, - ACTIONS(4168), 1, anon_sym_PIPE_PIPE, - ACTIONS(4176), 1, - anon_sym_DOT, - ACTIONS(4182), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_as, - ACTIONS(3960), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4154), 2, + [42941] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1685), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3722), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4170), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4174), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1699), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3720), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [42994] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1686), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 3, + ACTIONS(1355), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4172), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3958), 14, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1353), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148700,17 +148314,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44065] = 5, + anon_sym_as, + [43047] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1700), 2, + STATE(1687), 2, sym_line_comment, sym_block_comment, - ACTIONS(3582), 15, + ACTIONS(1359), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148726,7 +148345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3580), 23, + ACTIONS(1357), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148750,15 +148369,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44118] = 5, + [43100] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1701), 2, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(3586), 15, + ACTIONS(1275), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148774,7 +148393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3584), 23, + ACTIONS(1273), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148798,15 +148417,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44171] = 5, + [43153] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1702), 2, + STATE(1689), 2, sym_line_comment, sym_block_comment, - ACTIONS(3610), 15, + ACTIONS(3854), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148822,7 +148441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3608), 23, + ACTIONS(3852), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148846,15 +148465,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44224] = 5, + [43206] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1703), 2, + STATE(1690), 2, sym_line_comment, sym_block_comment, - ACTIONS(1299), 15, + ACTIONS(1363), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148870,7 +148489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1297), 23, + ACTIONS(1361), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148894,15 +148513,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44277] = 5, + [43259] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1704), 2, + STATE(1691), 2, sym_line_comment, sym_block_comment, - ACTIONS(1315), 15, + ACTIONS(1283), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148918,7 +148537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1313), 23, + ACTIONS(1281), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148942,80 +148561,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44330] = 22, + [43312] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, - anon_sym_AMP, - ACTIONS(3930), 1, - anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, - ACTIONS(3860), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3942), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1705), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3954), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [44417] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1706), 2, + STATE(1692), 2, sym_line_comment, sym_block_comment, - ACTIONS(1351), 15, + ACTIONS(1307), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149031,7 +148585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1349), 23, + ACTIONS(1305), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149055,15 +148609,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44470] = 5, + [43365] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1707), 2, + STATE(1693), 2, sym_line_comment, sym_block_comment, - ACTIONS(3618), 15, + ACTIONS(897), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149079,7 +148633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3616), 23, + ACTIONS(899), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149103,15 +148657,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44523] = 5, + [43418] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1708), 2, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, + anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, + anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, + ACTIONS(3932), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3938), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3954), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4200), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1694), 2, sym_line_comment, sym_block_comment, - ACTIONS(3768), 15, + ACTIONS(3934), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3948), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [43505] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1695), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1331), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149127,7 +148746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3766), 23, + ACTIONS(1329), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149151,15 +148770,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44576] = 5, + [43558] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1709), 2, + STATE(1696), 2, sym_line_comment, sym_block_comment, - ACTIONS(1279), 15, + ACTIONS(979), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149175,7 +148794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1277), 23, + ACTIONS(981), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149199,15 +148818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44629] = 5, + [43611] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1710), 2, + STATE(1697), 2, sym_line_comment, sym_block_comment, - ACTIONS(1295), 15, + ACTIONS(3614), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149223,7 +148842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1293), 23, + ACTIONS(3612), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149247,37 +148866,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44682] = 5, + [43664] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1711), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1303), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4164), 1, + anon_sym_LBRACK, + ACTIONS(4170), 1, + anon_sym_QMARK, + ACTIONS(4172), 1, anon_sym_CARET, + ACTIONS(4174), 1, anon_sym_AMP, + ACTIONS(4176), 1, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, + ACTIONS(4178), 1, + anon_sym_AMP_AMP, + ACTIONS(4180), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4188), 1, anon_sym_DOT, + ACTIONS(4190), 1, anon_sym_DOT_DOT, - ACTIONS(1301), 23, + ACTIONS(4194), 1, + anon_sym_as, + ACTIONS(4204), 1, + anon_sym_EQ, + ACTIONS(3814), 2, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4166), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4182), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4186), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4192), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1698), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4168), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4202), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149288,22 +148931,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44735] = 5, + [43751] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1712), 2, + STATE(1699), 2, sym_line_comment, sym_block_comment, - ACTIONS(1335), 15, + ACTIONS(985), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149319,7 +148955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1333), 23, + ACTIONS(987), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149343,15 +148979,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44788] = 5, + [43804] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1713), 2, + STATE(1700), 2, sym_line_comment, sym_block_comment, - ACTIONS(1267), 15, + ACTIONS(1295), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149367,7 +149003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1265), 23, + ACTIONS(1293), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149391,15 +149027,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44841] = 5, + [43857] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1714), 2, + ACTIONS(4164), 1, + anon_sym_LBRACK, + ACTIONS(4170), 1, + anon_sym_QMARK, + ACTIONS(4172), 1, + anon_sym_CARET, + ACTIONS(4174), 1, + anon_sym_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE, + ACTIONS(4178), 1, + anon_sym_AMP_AMP, + ACTIONS(4180), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4188), 1, + anon_sym_DOT, + ACTIONS(4190), 1, + anon_sym_DOT_DOT, + ACTIONS(4194), 1, + anon_sym_as, + ACTIONS(4204), 1, + anon_sym_EQ, + ACTIONS(3766), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4166), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4182), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4186), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4192), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1701), 2, sym_line_comment, sym_block_comment, - ACTIONS(1347), 15, + ACTIONS(4168), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4202), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [43944] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1702), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(989), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149415,7 +149116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1345), 23, + ACTIONS(991), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149439,15 +149140,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44894] = 5, + [43997] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1715), 2, + STATE(1703), 2, sym_line_comment, sym_block_comment, - ACTIONS(961), 15, + ACTIONS(1367), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149463,7 +149164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(963), 23, + ACTIONS(1365), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149487,15 +149188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44947] = 5, + [44050] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1716), 2, + STATE(1704), 2, sym_line_comment, sym_block_comment, - ACTIONS(965), 15, + ACTIONS(1325), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149511,7 +149212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(967), 23, + ACTIONS(1327), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149535,37 +149236,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45000] = 5, + [44103] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1717), 2, + ACTIONS(291), 1, + anon_sym_RBRACE, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, + anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, + anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, + ACTIONS(4206), 1, + anon_sym_SEMI, + ACTIONS(3932), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3938), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3954), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(1323), 15, - anon_sym_PLUS, + ACTIONS(3934), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3948), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44192] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4164), 1, + anon_sym_LBRACK, + ACTIONS(4170), 1, + anon_sym_QMARK, + ACTIONS(4172), 1, anon_sym_CARET, + ACTIONS(4174), 1, anon_sym_AMP, + ACTIONS(4176), 1, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, + ACTIONS(4178), 1, + anon_sym_AMP_AMP, + ACTIONS(4180), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4188), 1, anon_sym_DOT, + ACTIONS(4190), 1, anon_sym_DOT_DOT, - ACTIONS(1321), 23, + ACTIONS(4194), 1, + anon_sym_as, + ACTIONS(4204), 1, + anon_sym_EQ, + ACTIONS(3716), 2, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4166), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4182), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4186), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4192), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1706), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4168), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4202), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149576,22 +149367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45053] = 5, + [44279] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1718), 2, + STATE(1707), 2, sym_line_comment, sym_block_comment, - ACTIONS(969), 15, + ACTIONS(3850), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149607,7 +149391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(971), 23, + ACTIONS(3848), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149631,61 +149415,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45106] = 22, + [44332] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(4158), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(4160), 1, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(4056), 1, anon_sym_CARET, - ACTIONS(4162), 1, + ACTIONS(4058), 1, anon_sym_AMP, - ACTIONS(4164), 1, + ACTIONS(4060), 1, anon_sym_PIPE, - ACTIONS(4166), 1, - anon_sym_AMP_AMP, - ACTIONS(4168), 1, + ACTIONS(4064), 1, anon_sym_PIPE_PIPE, - ACTIONS(4176), 1, - anon_sym_DOT, - ACTIONS(4178), 1, - anon_sym_DOT_DOT, - ACTIONS(4182), 1, - anon_sym_as, - ACTIONS(4210), 1, + ACTIONS(4070), 1, anon_sym_EQ, - ACTIONS(3778), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4154), 2, + ACTIONS(4076), 1, + anon_sym_DOT_DOT, + ACTIONS(4052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4170), 2, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4174), 2, + ACTIONS(4074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4180), 2, + ACTIONS(4078), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1719), 2, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 3, + ACTIONS(4054), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4172), 4, + ACTIONS(4208), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4072), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4208), 10, + ACTIONS(4068), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149696,15 +149479,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45193] = 5, + [44417] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1720), 2, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(973), 15, + ACTIONS(1041), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149720,7 +149503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(975), 23, + ACTIONS(1043), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149744,15 +149527,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45246] = 5, + [44470] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1721), 2, + STATE(1710), 2, sym_line_comment, sym_block_comment, - ACTIONS(1343), 15, + ACTIONS(1045), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149768,7 +149551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1341), 23, + ACTIONS(1047), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149792,61 +149575,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45299] = 22, + [44523] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(4158), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(4160), 1, - anon_sym_CARET, - ACTIONS(4162), 1, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(4164), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(4166), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(4168), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(4176), 1, - anon_sym_DOT, - ACTIONS(4178), 1, - anon_sym_DOT_DOT, - ACTIONS(4182), 1, - anon_sym_as, - ACTIONS(4210), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(3596), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4154), 2, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4170), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4174), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4180), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1722), 2, + ACTIONS(4210), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1711), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4172), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4208), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149857,15 +149640,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45386] = 5, + [44610] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1723), 2, + STATE(1712), 2, sym_line_comment, sym_block_comment, - ACTIONS(977), 15, + ACTIONS(3864), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149881,7 +149664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(979), 23, + ACTIONS(3862), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149905,85 +149688,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45439] = 5, + [44663] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1724), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1319), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, + ACTIONS(3932), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1317), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45492] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1725), 2, + ACTIONS(4212), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1713), 2, sym_line_comment, sym_block_comment, - ACTIONS(1289), 15, - anon_sym_PLUS, + ACTIONS(3934), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1291), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149994,68 +149753,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45545] = 22, + [44750] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(4158), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(4160), 1, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(4162), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(4164), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(4166), 1, + ACTIONS(4224), 1, anon_sym_AMP_AMP, - ACTIONS(4168), 1, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(4176), 1, - anon_sym_DOT, - ACTIONS(4178), 1, - anon_sym_DOT_DOT, - ACTIONS(4182), 1, - anon_sym_as, - ACTIONS(4210), 1, + ACTIONS(4232), 1, anon_sym_EQ, - ACTIONS(3860), 2, + ACTIONS(4238), 1, + anon_sym_DOT_DOT, + ACTIONS(3814), 2, anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4154), 2, + anon_sym_LBRACE, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4170), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4174), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4180), 2, + ACTIONS(4240), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1726), 2, + STATE(1714), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4172), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4208), 10, + ACTIONS(4230), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150066,37 +149818,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45632] = 5, + [44837] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1727), 2, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, + anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, + anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, + ACTIONS(4242), 1, + anon_sym_RPAREN, + ACTIONS(4244), 1, + anon_sym_COMMA, + ACTIONS(3932), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3938), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3954), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1715), 2, sym_line_comment, sym_block_comment, - ACTIONS(3812), 15, - anon_sym_PLUS, + ACTIONS(3934), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3948), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44926] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(297), 1, + anon_sym_RBRACE, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, + ACTIONS(4206), 1, + anon_sym_SEMI, + ACTIONS(3932), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3810), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1716), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3934), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150107,68 +149950,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45685] = 22, + [45015] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(1201), 1, + anon_sym_RPAREN, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4216), 1, - anon_sym_CARET, - ACTIONS(4218), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(4220), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(4222), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(4224), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(4230), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4236), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(3778), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4212), 2, + ACTIONS(4198), 1, + anon_sym_COMMA, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4226), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4234), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4238), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1728), 2, + STATE(1717), 2, sym_line_comment, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4232), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4228), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150179,15 +150016,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45772] = 5, + [45104] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1729), 2, + STATE(1718), 2, sym_line_comment, sym_block_comment, - ACTIONS(1045), 15, + ACTIONS(3602), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150203,7 +150040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1047), 23, + ACTIONS(3600), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150227,15 +150064,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45825] = 5, + [45157] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1730), 2, + STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(1033), 15, + ACTIONS(3618), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150251,7 +150088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1035), 23, + ACTIONS(3616), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150275,15 +150112,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45878] = 5, + [45210] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1731), 2, + STATE(1720), 2, sym_line_comment, sym_block_comment, - ACTIONS(1289), 15, + ACTIONS(3622), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150299,7 +150136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1291), 23, + ACTIONS(3620), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150323,15 +150160,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45931] = 5, + [45263] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1732), 2, + STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(3754), 15, + ACTIONS(3760), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150347,7 +150184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3752), 23, + ACTIONS(3758), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150371,61 +150208,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45984] = 22, + [45316] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, + STATE(1722), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3598), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4240), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1733), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3954), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3596), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150436,40 +150249,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46071] = 8, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [45369] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(4158), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(4176), 1, + ACTIONS(3736), 1, anon_sym_DOT, - STATE(1734), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3658), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(4218), 1, anon_sym_CARET, + ACTIONS(4220), 1, anon_sym_AMP, + ACTIONS(4222), 1, anon_sym_PIPE, + ACTIONS(4224), 1, + anon_sym_AMP_AMP, + ACTIONS(4226), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4232), 1, + anon_sym_EQ, + ACTIONS(4246), 1, + anon_sym_LBRACE, + ACTIONS(4248), 1, + anon_sym_DOT_DOT, + STATE(1336), 1, + sym_match_block, + ACTIONS(4214), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3654), 21, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4250), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1723), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4216), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4234), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4230), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150480,28 +150322,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46130] = 8, + [45458] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, - anon_sym_LBRACK, - ACTIONS(4158), 1, - anon_sym_QMARK, - ACTIONS(4176), 1, - anon_sym_DOT, - STATE(1735), 2, + STATE(1724), 2, sym_line_comment, sym_block_comment, - ACTIONS(3674), 14, + ACTIONS(3610), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150515,10 +150344,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3672), 21, + ACTIONS(3608), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150538,15 +150370,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46189] = 5, + [45511] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1736), 2, + STATE(1725), 2, sym_line_comment, sym_block_comment, - ACTIONS(3710), 15, + ACTIONS(3246), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150562,7 +150394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3708), 23, + ACTIONS(3248), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150586,62 +150418,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46242] = 23, + [45564] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4242), 1, - anon_sym_RPAREN, - ACTIONS(4244), 1, - anon_sym_COMMA, - ACTIONS(3922), 2, + ACTIONS(4252), 1, + anon_sym_SEMI, + ACTIONS(4254), 1, + anon_sym_else, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1737), 2, + STATE(1726), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150652,62 +150484,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46331] = 23, + [45653] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(293), 1, + ACTIONS(337), 1, anon_sym_RBRACE, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4184), 1, + ACTIONS(4206), 1, anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1738), 2, + STATE(1727), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150718,15 +150550,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46420] = 5, + [45742] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1739), 2, + STATE(1728), 2, sym_line_comment, sym_block_comment, - ACTIONS(3732), 15, + ACTIONS(3752), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150742,7 +150574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3730), 23, + ACTIONS(3750), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150766,15 +150598,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46473] = 5, + [45795] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1740), 2, + STATE(1729), 2, sym_line_comment, sym_block_comment, - ACTIONS(3570), 15, + ACTIONS(3318), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150790,7 +150622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3568), 23, + ACTIONS(3316), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150814,15 +150646,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46526] = 5, + [45848] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1741), 2, + STATE(1730), 2, sym_line_comment, sym_block_comment, - ACTIONS(3238), 15, + ACTIONS(3828), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150838,7 +150670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3240), 23, + ACTIONS(3824), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150862,62 +150694,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46579] = 23, + [45901] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4216), 1, - anon_sym_CARET, - ACTIONS(4218), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(4220), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(4222), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(4224), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(4230), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4246), 1, - anon_sym_LBRACE, - ACTIONS(4248), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - STATE(1101), 1, - sym_match_block, - ACTIONS(4212), 2, + ACTIONS(4256), 1, + anon_sym_RBRACE, + ACTIONS(4258), 1, + anon_sym_COMMA, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4226), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4234), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4250), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1742), 2, + STATE(1731), 2, sym_line_comment, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4232), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4228), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150928,15 +150760,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46668] = 5, + [45990] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1743), 2, + STATE(1732), 2, sym_line_comment, sym_block_comment, - ACTIONS(3306), 15, + ACTIONS(3780), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150952,7 +150784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3304), 23, + ACTIONS(3778), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150976,15 +150808,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46721] = 5, + [46043] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1744), 2, + STATE(1733), 2, sym_line_comment, sym_block_comment, - ACTIONS(1289), 15, + ACTIONS(3784), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151000,7 +150832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1291), 23, + ACTIONS(3782), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151024,128 +150856,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46774] = 23, + [46096] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(295), 1, - anon_sym_RBRACE, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, - anon_sym_AMP, - ACTIONS(3930), 1, - anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, - ACTIONS(4184), 1, - anon_sym_SEMI, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3942), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1745), 2, + STATE(1734), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3346), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3954), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [46863] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, anon_sym_CARET, - ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, - ACTIONS(4252), 1, - anon_sym_SEMI, - ACTIONS(4254), 1, - anon_sym_else, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1746), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3954), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3344), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151156,62 +150897,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46952] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [46149] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(1209), 1, + anon_sym_RPAREN, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4256), 1, - anon_sym_RBRACE, - ACTIONS(4258), 1, + ACTIONS(4198), 1, anon_sym_COMMA, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1747), 2, + STATE(1735), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151222,15 +150970,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47041] = 5, + [46238] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1748), 2, + STATE(1736), 2, sym_line_comment, sym_block_comment, - ACTIONS(3634), 15, + ACTIONS(3840), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151246,7 +150994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3632), 23, + ACTIONS(3838), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151270,15 +151018,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47094] = 5, + [46291] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1749), 2, + STATE(1737), 2, sym_line_comment, sym_block_comment, - ACTIONS(3816), 15, + ACTIONS(3886), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151294,7 +151042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3814), 23, + ACTIONS(3884), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151318,62 +151066,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47147] = 23, + [46344] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1073), 1, - anon_sym_RPAREN, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, + ACTIONS(3966), 1, + anon_sym_EQ, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(4224), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4238), 1, anon_sym_DOT_DOT, - ACTIONS(4150), 1, - anon_sym_COMMA, - ACTIONS(3922), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4240), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1750), 2, + STATE(1738), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3964), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151384,37 +151130,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47236] = 5, + [46429] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1751), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3330), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, + ACTIONS(4260), 1, + anon_sym_SEMI, + ACTIONS(4262), 1, + anon_sym_else, + ACTIONS(3932), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3328), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1739), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3934), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151425,22 +151196,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47289] = 5, + [46518] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1752), 2, + STATE(1740), 2, sym_line_comment, sym_block_comment, - ACTIONS(3788), 15, + ACTIONS(3890), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151456,7 +151220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3786), 23, + ACTIONS(3888), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151480,62 +151244,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47342] = 23, + [46571] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(299), 1, + anon_sym_RBRACE, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4260), 1, + ACTIONS(4206), 1, anon_sym_SEMI, - ACTIONS(4262), 1, - anon_sym_else, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1753), 2, + STATE(1741), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151546,37 +151310,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47431] = 5, + [46660] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1754), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3884), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(1211), 1, + anon_sym_RPAREN, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, + ACTIONS(4198), 1, + anon_sym_COMMA, + ACTIONS(3932), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3882), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1742), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3934), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151587,69 +151376,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47484] = 23, + [46749] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(297), 1, - anon_sym_RBRACE, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4184), 1, + ACTIONS(4264), 1, anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(4266), 1, + anon_sym_else, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1755), 2, + STATE(1743), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151660,62 +151442,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47573] = 23, + [46838] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1063), 1, - anon_sym_RPAREN, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(4224), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(4232), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4238), 1, anon_sym_DOT_DOT, - ACTIONS(4150), 1, - anon_sym_COMMA, - ACTIONS(3922), 2, + ACTIONS(3766), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4240), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1756), 2, + STATE(1744), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(4230), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151726,37 +151507,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47662] = 5, + [46925] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1757), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3736), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, + ACTIONS(4268), 1, + anon_sym_RBRACE, + ACTIONS(4270), 1, + anon_sym_COMMA, + ACTIONS(3932), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3734), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1745), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3934), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151767,69 +151573,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47715] = 23, + [47014] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4264), 1, + ACTIONS(4272), 1, anon_sym_SEMI, - ACTIONS(4266), 1, + ACTIONS(4274), 1, anon_sym_else, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1758), 2, + STATE(1746), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151840,62 +151639,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47804] = 23, + [47103] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(4224), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(4232), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4248), 1, anon_sym_DOT_DOT, - ACTIONS(4184), 1, - anon_sym_SEMI, - ACTIONS(4268), 1, - anon_sym_RBRACE, - ACTIONS(3922), 2, + ACTIONS(4276), 1, + anon_sym_LBRACE, + STATE(382), 1, + sym_match_block, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4250), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1759), 2, + STATE(1747), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(4230), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151906,37 +151705,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47893] = 5, + [47192] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1760), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3820), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, + ACTIONS(4206), 1, + anon_sym_SEMI, + ACTIONS(4278), 1, + anon_sym_RBRACE, + ACTIONS(3932), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3818), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1748), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3934), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151947,69 +151771,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47946] = 23, + [47281] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4150), 1, + ACTIONS(4198), 1, anon_sym_COMMA, - ACTIONS(4270), 1, + ACTIONS(4280), 1, anon_sym_RPAREN, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1761), 2, + STATE(1749), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152020,56 +151837,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48035] = 19, + [47370] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(4158), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(4160), 1, - anon_sym_CARET, - ACTIONS(4162), 1, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(4164), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(4166), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(4168), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(4176), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_as, - ACTIONS(387), 2, + ACTIONS(3950), 1, anon_sym_EQ, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4154), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4170), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4174), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - STATE(1762), 2, + ACTIONS(4044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4282), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1750), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4172), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(385), 14, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152080,63 +151902,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48116] = 22, + [47457] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4272), 2, + ACTIONS(4284), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1763), 2, + STATE(1751), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152147,61 +151967,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48203] = 22, + [47544] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(3922), 2, + ACTIONS(4206), 1, + anon_sym_SEMI, + ACTIONS(4286), 1, + anon_sym_RBRACE, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4274), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1764), 2, + STATE(1752), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152212,23 +152033,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48290] = 9, + [47633] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + STATE(1753), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3772), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3770), 23, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(4158), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(4176), 1, - anon_sym_DOT, - ACTIONS(4182), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_as, - STATE(1765), 2, + [47686] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1754), 2, sym_line_comment, sym_block_comment, - ACTIONS(3740), 14, + ACTIONS(3776), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152242,10 +152103,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3738), 20, + ACTIONS(3774), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -152264,62 +152128,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [48351] = 23, + anon_sym_as, + [47739] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4276), 1, + ACTIONS(4288), 1, anon_sym_SEMI, - ACTIONS(4278), 1, + ACTIONS(4290), 1, anon_sym_else, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1766), 2, + STATE(1755), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152330,62 +152195,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48440] = 23, + [47828] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(287), 1, - anon_sym_RBRACE, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, + STATE(1756), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4216), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3844), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, - ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, - ACTIONS(4184), 1, - anon_sym_SEMI, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + anon_sym_DOT_DOT, + ACTIONS(3842), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1767), 2, + [47891] = 13, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(4220), 1, + anon_sym_AMP, + ACTIONS(4214), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1757), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3844), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3842), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152396,35 +152298,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48529] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [47960] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1768), 2, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(4214), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1758), 2, sym_line_comment, sym_block_comment, - ACTIONS(3694), 15, - anon_sym_PLUS, + ACTIONS(4216), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3844), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3692), 23, + ACTIONS(3842), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -152443,61 +152359,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48582] = 21, + [48027] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3990), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_CARET, ACTIONS(4218), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(4220), 1, + anon_sym_AMP, + ACTIONS(4214), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1759), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4216), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3844), 5, anon_sym_PIPE, - ACTIONS(4222), 1, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3842), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_AMP_AMP, - ACTIONS(4224), 1, anon_sym_PIPE_PIPE, - ACTIONS(4236), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [48098] = 17, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(4218), 1, + anon_sym_CARET, + ACTIONS(4220), 1, + anon_sym_AMP, + ACTIONS(4222), 1, + anon_sym_PIPE, + ACTIONS(3844), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4212), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4226), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4234), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4238), 2, + STATE(1760), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4216), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4234), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3842), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1769), 2, + [48175] = 18, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(4218), 1, + anon_sym_CARET, + ACTIONS(4220), 1, + anon_sym_AMP, + ACTIONS(4222), 1, + anon_sym_PIPE, + ACTIONS(4224), 1, + anon_sym_AMP_AMP, + ACTIONS(3844), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4214), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4236), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1761), 2, sym_line_comment, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4232), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3988), 12, + ACTIONS(3842), 15, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152508,20 +152535,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48667] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [48254] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1770), 2, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(4214), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1762), 2, sym_line_comment, sym_block_comment, - ACTIONS(3702), 15, - anon_sym_PLUS, + ACTIONS(4216), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3844), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -152530,13 +152569,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3700), 23, + ACTIONS(3842), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -152555,63 +152591,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48720] = 23, + [48319] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4280), 1, + ACTIONS(4292), 1, anon_sym_SEMI, - ACTIONS(4282), 1, + ACTIONS(4294), 1, anon_sym_else, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1771), 2, + STATE(1763), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152622,62 +152657,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48809] = 23, + [48408] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(301), 1, - anon_sym_RBRACE, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4184), 1, - anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1772), 2, + ACTIONS(4296), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1764), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152688,35 +152722,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48898] = 5, + [48495] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1773), 2, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3980), 1, + anon_sym_EQ, + ACTIONS(4218), 1, + anon_sym_CARET, + ACTIONS(4220), 1, + anon_sym_AMP, + ACTIONS(4222), 1, + anon_sym_PIPE, + ACTIONS(4224), 1, + anon_sym_AMP_AMP, + ACTIONS(4226), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4238), 1, + anon_sym_DOT_DOT, + ACTIONS(4214), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4228), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4236), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4240), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1765), 2, sym_line_comment, sym_block_comment, - ACTIONS(3792), 15, - anon_sym_PLUS, + ACTIONS(4216), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4234), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3978), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [48580] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(303), 1, + anon_sym_RBRACE, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, + anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, + anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, + ACTIONS(4206), 1, + anon_sym_SEMI, + ACTIONS(3932), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3938), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3954), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1766), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3934), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3948), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [48669] = 15, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(4218), 1, anon_sym_CARET, + ACTIONS(4220), 1, anon_sym_AMP, + ACTIONS(4222), 1, anon_sym_PIPE, + ACTIONS(4214), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1767), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4216), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3844), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3790), 23, + ACTIONS(3842), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -152735,62 +152910,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48951] = 22, + [48742] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(4224), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3992), 2, anon_sym_EQ, - ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(3922), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4284), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1774), 2, + STATE(1768), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3990), 14, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [48823] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1769), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3788), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3786), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152801,54 +153013,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49038] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [48876] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4216), 1, - anon_sym_CARET, ACTIONS(4218), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(4220), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(4222), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE, ACTIONS(4224), 1, + anon_sym_AMP_AMP, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(387), 2, + ACTIONS(393), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4212), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4226), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4234), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - STATE(1775), 2, + STATE(1770), 2, sym_line_comment, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4232), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(385), 14, + ACTIONS(391), 14, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -152863,53 +153082,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [49119] = 21, + [48957] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(347), 1, anon_sym_EQ, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4216), 1, - anon_sym_CARET, ACTIONS(4218), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(4220), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(4222), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE, ACTIONS(4224), 1, + anon_sym_AMP_AMP, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(4236), 1, + ACTIONS(4238), 1, anon_sym_DOT_DOT, - ACTIONS(4212), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4226), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4234), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4238), 2, + ACTIONS(4240), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1776), 2, + STATE(1771), 2, sym_line_comment, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4232), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -152927,62 +153146,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49204] = 23, + [49042] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4216), 1, - anon_sym_CARET, ACTIONS(4218), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(4220), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(4222), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE, ACTIONS(4224), 1, + anon_sym_AMP_AMP, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(4230), 1, + ACTIONS(4232), 1, anon_sym_EQ, ACTIONS(4248), 1, anon_sym_DOT_DOT, - ACTIONS(4286), 1, + ACTIONS(4298), 1, anon_sym_LBRACE, - STATE(467), 1, + STATE(480), 1, sym_match_block, - ACTIONS(4212), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4226), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4234), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, ACTIONS(4250), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1777), 2, + STATE(1772), 2, sym_line_comment, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4232), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4228), 10, + ACTIONS(4230), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152993,58 +153212,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49293] = 21, + [49131] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3976), 1, + ACTIONS(3988), 1, anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_CARET, ACTIONS(4218), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(4220), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(4222), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE, ACTIONS(4224), 1, + anon_sym_AMP_AMP, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(4236), 1, + ACTIONS(4238), 1, anon_sym_DOT_DOT, - ACTIONS(4212), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4226), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4234), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4238), 2, + ACTIONS(4240), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1778), 2, + STATE(1773), 2, sym_line_comment, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4232), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3974), 12, + ACTIONS(3986), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -153057,58 +153276,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49378] = 21, + [49216] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3964), 1, + ACTIONS(3962), 1, anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_CARET, ACTIONS(4218), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(4220), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(4222), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE, ACTIONS(4224), 1, + anon_sym_AMP_AMP, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(4236), 1, + ACTIONS(4238), 1, anon_sym_DOT_DOT, - ACTIONS(4212), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4226), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4234), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4238), 2, + ACTIONS(4240), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1779), 2, + STATE(1774), 2, sym_line_comment, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4232), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3962), 12, + ACTIONS(3960), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -153121,62 +153340,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49463] = 23, + [49301] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(303), 1, + ACTIONS(305), 1, anon_sym_RBRACE, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4184), 1, + ACTIONS(4206), 1, anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1780), 2, + STATE(1775), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153187,61 +153406,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49552] = 22, + [49390] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4216), 1, + ACTIONS(4056), 1, anon_sym_CARET, - ACTIONS(4218), 1, + ACTIONS(4058), 1, anon_sym_AMP, - ACTIONS(4220), 1, + ACTIONS(4060), 1, anon_sym_PIPE, - ACTIONS(4222), 1, - anon_sym_AMP_AMP, - ACTIONS(4224), 1, + ACTIONS(4064), 1, anon_sym_PIPE_PIPE, - ACTIONS(4230), 1, + ACTIONS(4070), 1, anon_sym_EQ, - ACTIONS(4236), 1, + ACTIONS(4076), 1, anon_sym_DOT_DOT, - ACTIONS(3596), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4212), 2, + ACTIONS(4052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4226), 2, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4234), 2, + ACTIONS(4074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4238), 2, + ACTIONS(4078), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1781), 2, + STATE(1776), 2, sym_line_comment, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(4054), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4232), 4, + ACTIONS(4300), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4072), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4228), 10, + ACTIONS(4068), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153252,61 +153470,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49639] = 22, + [49475] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(3922), 2, + ACTIONS(4302), 1, + anon_sym_SEMI, + ACTIONS(4304), 1, + anon_sym_else, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4288), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1782), 2, + STATE(1777), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153317,60 +153536,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49726] = 21, + [49564] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(4164), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(4170), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(4188), 1, anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(4052), 1, + STATE(1778), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3898), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4054), 1, anon_sym_AMP, - ACTIONS(4056), 1, anon_sym_PIPE, - ACTIONS(4060), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4066), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4072), 1, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(4048), 2, + ACTIONS(3896), 21, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [49623] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1779), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3902), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4062), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4070), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4074), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3900), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1783), 2, + anon_sym_as, + [49676] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1780), 2, sym_line_comment, sym_block_comment, - ACTIONS(4050), 3, + ACTIONS(3582), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4290), 3, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3580), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4068), 4, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4064), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [49729] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1781), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3586), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3584), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153381,62 +153724,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49811] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [49782] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(305), 1, + ACTIONS(307), 1, anon_sym_RBRACE, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4184), 1, + ACTIONS(4206), 1, anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1784), 2, + STATE(1782), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153447,60 +153797,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49900] = 21, + [49871] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(289), 1, + anon_sym_RBRACE, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4052), 1, - anon_sym_CARET, - ACTIONS(4054), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(4056), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(4060), 1, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(4066), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4072), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4048), 2, + ACTIONS(4206), 1, + anon_sym_SEMI, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4062), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4070), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4074), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1785), 2, + STATE(1783), 2, sym_line_comment, sym_block_comment, - ACTIONS(4050), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4292), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4068), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4064), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153511,62 +153863,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49985] = 23, + [49960] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4184), 1, + ACTIONS(4206), 1, anon_sym_SEMI, - ACTIONS(4294), 1, + ACTIONS(4306), 1, anon_sym_RBRACE, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1786), 2, + STATE(1784), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153577,15 +153929,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50074] = 5, + [50049] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1787), 2, + STATE(1785), 2, sym_line_comment, sym_block_comment, - ACTIONS(3796), 15, + ACTIONS(3792), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153601,7 +153953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3794), 23, + ACTIONS(3790), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153625,60 +153977,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50127] = 21, + [50102] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(4152), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(4158), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(4160), 1, - anon_sym_CARET, - ACTIONS(4162), 1, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(4164), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(4166), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(4168), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(4176), 1, - anon_sym_DOT, - ACTIONS(4178), 1, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4182), 1, - anon_sym_as, - ACTIONS(4154), 2, + ACTIONS(4308), 1, + anon_sym_SEMI, + ACTIONS(4310), 1, + anon_sym_else, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4170), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4174), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4180), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1788), 2, + STATE(1786), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4172), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153689,62 +154043,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50212] = 23, + [50191] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(309), 1, - anon_sym_RBRACE, - ACTIONS(3656), 1, + ACTIONS(1221), 1, + anon_sym_RPAREN, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4184), 1, - anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(4198), 1, + anon_sym_COMMA, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1789), 2, + STATE(1787), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153755,29 +154109,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50301] = 10, + [50280] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + STATE(1788), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3808), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3806), 23, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3660), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_as, - STATE(1790), 2, + [50333] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1789), 2, sym_line_comment, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(3606), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -153786,10 +154179,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3738), 20, + ACTIONS(3604), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -153808,62 +154204,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [50364] = 23, + anon_sym_as, + [50386] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(311), 1, + anon_sym_RBRACE, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4216), 1, - anon_sym_CARET, - ACTIONS(4218), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(4220), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(4222), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(4224), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(4230), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4248), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4296), 1, - anon_sym_LBRACE, - STATE(1686), 1, - sym_match_block, - ACTIONS(4212), 2, + ACTIONS(4206), 1, + anon_sym_SEMI, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4226), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4234), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4250), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1791), 2, + STATE(1790), 2, sym_line_comment, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4232), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4228), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153874,62 +154271,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50453] = 23, + [50475] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(311), 1, - anon_sym_RBRACE, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(4224), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(4232), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4248), 1, anon_sym_DOT_DOT, - ACTIONS(4184), 1, - anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(4312), 1, + anon_sym_LBRACE, + STATE(1662), 1, + sym_match_block, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4250), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1792), 2, + STATE(1791), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(4230), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153940,44 +154337,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50542] = 13, + [50564] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(313), 1, + anon_sym_RBRACE, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4218), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(4212), 2, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, + anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, + ACTIONS(4206), 1, + anon_sym_SEMI, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4226), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3954), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1792), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3934), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3948), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [50653] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, STATE(1793), 2, sym_line_comment, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(3606), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 6, anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3738), 20, + ACTIONS(3604), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -153996,43 +154450,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [50611] = 12, + anon_sym_as, + [50706] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(4212), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4226), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, STATE(1794), 2, sym_line_comment, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(3812), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3738), 20, + ACTIONS(3810), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -154051,45 +154498,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [50678] = 14, + anon_sym_as, + [50759] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(4164), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(4170), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(4188), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(4194), 1, anon_sym_as, - ACTIONS(4216), 1, - anon_sym_CARET, - ACTIONS(4218), 1, - anon_sym_AMP, - ACTIONS(4212), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4226), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, STATE(1795), 2, sym_line_comment, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(3844), 14, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 5, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3738), 20, + ACTIONS(3842), 20, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -154108,54 +154551,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [50749] = 17, + [50820] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(315), 1, + anon_sym_RBRACE, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4216), 1, - anon_sym_CARET, - ACTIONS(4218), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(4220), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3740), 2, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, anon_sym_EQ, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4212), 2, + ACTIONS(4206), 1, + anon_sym_SEMI, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4226), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4234), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(1796), 2, sym_line_comment, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4232), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3738), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154166,64 +154617,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [50826] = 23, + [50909] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_RBRACE, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4184), 1, + ACTIONS(4206), 1, anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(4314), 1, + anon_sym_RBRACE, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1797), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154234,62 +154683,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50915] = 23, + [50998] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(319), 1, + anon_sym_RBRACE, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4184), 1, + ACTIONS(4206), 1, anon_sym_SEMI, - ACTIONS(4298), 1, - anon_sym_RBRACE, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1798), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154300,55 +154749,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51004] = 18, + [51087] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(321), 1, + anon_sym_RBRACE, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4216), 1, - anon_sym_CARET, - ACTIONS(4218), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(4220), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(4222), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3740), 2, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, anon_sym_EQ, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4212), 2, + ACTIONS(4206), 1, + anon_sym_SEMI, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4226), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4234), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(1799), 2, sym_line_comment, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4232), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3738), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154359,64 +154815,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [51083] = 23, + [51176] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(317), 1, + ACTIONS(127), 1, anon_sym_RBRACE, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4184), 1, + ACTIONS(4206), 1, anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1800), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154427,62 +154881,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51172] = 23, + [51265] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(319), 1, - anon_sym_RBRACE, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, + ACTIONS(4218), 1, anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(4220), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(4222), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(4224), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(4232), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4238), 1, anon_sym_DOT_DOT, - ACTIONS(4184), 1, - anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(3716), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4240), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1801), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(4230), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154493,44 +154946,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51261] = 11, + [51352] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(323), 1, + anon_sym_RBRACE, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4212), 2, + ACTIONS(3936), 1, + anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, + anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, + ACTIONS(4206), 1, + anon_sym_SEMI, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3938), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3954), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(1802), 2, sym_line_comment, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 9, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3738), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154541,68 +155012,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [51326] = 23, + [51441] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(321), 1, - anon_sym_RBRACE, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4184), 1, + ACTIONS(4206), 1, anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(4316), 1, + anon_sym_RBRACE, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1803), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154613,61 +155078,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51415] = 22, + [51530] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(327), 1, + anon_sym_RBRACE, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(3922), 2, + ACTIONS(4206), 1, + anon_sym_SEMI, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4300), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(1804), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154678,62 +155144,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51502] = 23, + [51619] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(329), 1, + anon_sym_RBRACE, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4184), 1, + ACTIONS(4206), 1, anon_sym_SEMI, - ACTIONS(4302), 1, - anon_sym_RBRACE, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1805), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154744,7 +155210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51591] = 5, + [51708] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -154752,7 +155218,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1806), 2, sym_line_comment, sym_block_comment, - ACTIONS(3720), 15, + ACTIONS(3718), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154768,7 +155234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3718), 23, + ACTIONS(3716), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154792,62 +155258,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51644] = 23, + [51761] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(325), 1, - anon_sym_RBRACE, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, + STATE(1807), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3626), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, - ACTIONS(4184), 1, - anon_sym_SEMI, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1807), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3954), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3624), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154858,62 +155299,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51733] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [51814] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + ACTIONS(331), 1, anon_sym_RBRACE, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4184), 1, + ACTIONS(4206), 1, anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1808), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154924,61 +155372,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51822] = 22, + [51903] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(3922), 2, + ACTIONS(4206), 1, + anon_sym_SEMI, + ACTIONS(4318), 1, + anon_sym_RBRACE, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4304), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(1809), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154989,60 +155438,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51909] = 21, + [51992] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(335), 1, + anon_sym_RBRACE, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3952), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_CARET, - ACTIONS(4218), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(4220), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(4222), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(4224), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(4236), 1, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4212), 2, + ACTIONS(4206), 1, + anon_sym_SEMI, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4226), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4234), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4238), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1810), 2, sym_line_comment, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4232), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3950), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155053,60 +155504,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51994] = 21, + [52081] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(123), 1, + anon_sym_RBRACE, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3938), 1, - anon_sym_EQ, - ACTIONS(4216), 1, - anon_sym_CARET, - ACTIONS(4218), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(4220), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(4222), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(4224), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(4236), 1, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4212), 2, + ACTIONS(4206), 1, + anon_sym_SEMI, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4226), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4234), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4238), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1811), 2, sym_line_comment, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4232), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3920), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155117,46 +155570,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52079] = 15, + [52170] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(4216), 1, - anon_sym_CARET, - ACTIONS(4218), 1, - anon_sym_AMP, - ACTIONS(4220), 1, - anon_sym_PIPE, - ACTIONS(4212), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4226), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, STATE(1812), 2, sym_line_comment, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(3638), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3740), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3738), 20, + ACTIONS(3636), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -155175,62 +155617,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [52152] = 23, + anon_sym_as, + [52223] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(329), 1, + ACTIONS(119), 1, anon_sym_RBRACE, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4184), 1, + ACTIONS(4206), 1, anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1813), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155241,62 +155684,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52241] = 23, + [52312] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4184), 1, + ACTIONS(4206), 1, anon_sym_SEMI, - ACTIONS(4306), 1, + ACTIONS(4320), 1, anon_sym_RBRACE, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1814), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155307,62 +155750,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52330] = 23, + [52401] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, - anon_sym_RBRACE, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, + STATE(1815), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3322), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, - ACTIONS(4184), 1, - anon_sym_SEMI, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1815), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3954), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3320), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155373,56 +155791,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52419] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52454] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(4216), 1, + STATE(1816), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1325), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4218), 1, anon_sym_AMP, - ACTIONS(4220), 1, anon_sym_PIPE, - ACTIONS(4222), 1, - anon_sym_AMP_AMP, - ACTIONS(4224), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3960), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4212), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4226), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4234), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1816), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4214), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4232), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3958), 14, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1327), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155433,64 +155839,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [52500] = 23, + anon_sym_as, + [52507] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(335), 1, - anon_sym_RBRACE, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, + STATE(1817), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3714), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, - ACTIONS(4184), 1, - anon_sym_SEMI, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1817), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3954), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3712), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155501,62 +155887,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52589] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52560] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(123), 1, - anon_sym_RBRACE, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, + STATE(1818), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3642), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, - ACTIONS(4184), 1, - anon_sym_SEMI, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1818), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3954), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3640), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155567,62 +155935,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52678] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52613] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, + STATE(1819), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1325), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, - ACTIONS(4308), 1, - anon_sym_SEMI, - ACTIONS(4310), 1, - anon_sym_else, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1819), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3954), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1327), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155633,62 +155983,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52767] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52666] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, + STATE(1820), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3650), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, - ACTIONS(4184), 1, - anon_sym_SEMI, - ACTIONS(4312), 1, - anon_sym_RBRACE, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1820), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3954), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3648), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155699,62 +156031,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52856] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52719] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(337), 1, - anon_sym_RBRACE, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, + STATE(1821), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3495), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, - ACTIONS(4184), 1, - anon_sym_SEMI, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1821), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3954), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3491), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155765,7 +156079,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52945] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [52772] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -155773,7 +156094,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1822), 2, sym_line_comment, sym_block_comment, - ACTIONS(3746), 15, + ACTIONS(3646), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155789,7 +156110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3744), 23, + ACTIONS(3644), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155813,7 +156134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52998] = 5, + [52825] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -155821,7 +156142,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1823), 2, sym_line_comment, sym_block_comment, - ACTIONS(3598), 15, + ACTIONS(3804), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155837,7 +156158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3596), 23, + ACTIONS(3802), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155861,7 +156182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53051] = 5, + [52878] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -155869,7 +156190,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1824), 2, sym_line_comment, sym_block_comment, - ACTIONS(3896), 15, + ACTIONS(1325), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155885,7 +156206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3894), 23, + ACTIONS(1327), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155909,7 +156230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53104] = 5, + [52931] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -155917,7 +156238,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1825), 2, sym_line_comment, sym_block_comment, - ACTIONS(3574), 15, + ACTIONS(3710), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155933,7 +156254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3572), 23, + ACTIONS(3708), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155957,15 +156278,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53157] = 5, + [52984] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4164), 1, + anon_sym_LBRACK, + ACTIONS(4170), 1, + anon_sym_QMARK, + ACTIONS(4188), 1, + anon_sym_DOT, STATE(1826), 2, sym_line_comment, sym_block_comment, - ACTIONS(3578), 15, + ACTIONS(3732), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155979,13 +156306,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3576), 23, + ACTIONS(3728), 21, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -156005,21 +156329,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53210] = 8, + [53043] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(4164), 1, anon_sym_LBRACK, - ACTIONS(4158), 1, + ACTIONS(4170), 1, anon_sym_QMARK, - ACTIONS(4176), 1, + ACTIONS(4188), 1, anon_sym_DOT, STATE(1827), 2, sym_line_comment, sym_block_comment, - ACTIONS(3828), 14, + ACTIONS(3744), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156034,7 +156358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3826), 21, + ACTIONS(3742), 21, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -156056,62 +156380,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53269] = 23, + [53102] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, + STATE(1828), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3912), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, - ACTIONS(4314), 1, - anon_sym_SEMI, - ACTIONS(4316), 1, - anon_sym_else, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1828), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3954), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3910), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156122,15 +156421,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53358] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [53155] = 18, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4322), 1, + sym_identifier, + ACTIONS(4324), 1, + anon_sym_LBRACE, + ACTIONS(4326), 1, + anon_sym_RBRACE, + ACTIONS(4328), 1, + anon_sym_STAR, + ACTIONS(4332), 1, + anon_sym_COMMA, + ACTIONS(4334), 1, + anon_sym_COLON_COLON, + ACTIONS(4338), 1, + sym_metavariable, + STATE(2469), 1, + sym_scoped_identifier, + STATE(2828), 1, + sym__use_clause, + STATE(3389), 1, + sym_bracketed_type, + STATE(3577), 1, + sym_generic_type_with_turbofish, STATE(1829), 2, sym_line_comment, sym_block_comment, - ACTIONS(3594), 15, + ACTIONS(4336), 3, + sym_self, + sym_super, + sym_crate, + STATE(2812), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4330), 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, + [53234] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1830), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3656), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156146,7 +156513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3592), 23, + ACTIONS(3654), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156170,62 +156537,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53411] = 23, + [53287] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(4164), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(4170), 1, anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, + ACTIONS(4172), 1, anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(4174), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(4176), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(4178), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4180), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(4188), 1, + anon_sym_DOT, + ACTIONS(4194), 1, + anon_sym_as, + ACTIONS(393), 2, anon_sym_EQ, - ACTIONS(4038), 1, anon_sym_DOT_DOT, - ACTIONS(4318), 1, - anon_sym_SEMI, - ACTIONS(4320), 1, - anon_sym_else, - ACTIONS(3922), 2, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(4182), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1830), 2, + STATE(1831), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(4168), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(391), 14, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156236,15 +156597,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53500] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53368] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1831), 2, + STATE(1832), 2, sym_line_comment, sym_block_comment, - ACTIONS(3594), 15, + ACTIONS(3660), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156260,7 +156623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3592), 23, + ACTIONS(3658), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156284,15 +156647,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53553] = 5, + [53421] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1832), 2, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(4164), 1, + anon_sym_LBRACK, + ACTIONS(4170), 1, + anon_sym_QMARK, + ACTIONS(4172), 1, + anon_sym_CARET, + ACTIONS(4174), 1, + anon_sym_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE, + ACTIONS(4178), 1, + anon_sym_AMP_AMP, + ACTIONS(4180), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4188), 1, + anon_sym_DOT, + ACTIONS(4190), 1, + anon_sym_DOT_DOT, + ACTIONS(4194), 1, + anon_sym_as, + ACTIONS(4166), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4182), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4186), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4192), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1833), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4168), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(341), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [53506] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1834), 2, sym_line_comment, sym_block_comment, - ACTIONS(3762), 15, + ACTIONS(3664), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156308,7 +156735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3760), 23, + ACTIONS(3662), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156332,15 +156759,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53606] = 5, + [53559] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1833), 2, + STATE(1835), 2, sym_line_comment, sym_block_comment, - ACTIONS(3706), 15, + ACTIONS(3634), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156356,7 +156783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3704), 23, + ACTIONS(3632), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156380,62 +156807,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53659] = 23, + [53612] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4322), 1, - anon_sym_RBRACE, - ACTIONS(4324), 1, - anon_sym_COMMA, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1834), 2, + ACTIONS(4340), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1836), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156446,37 +156872,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53748] = 5, + [53699] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1835), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3716), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, + ACTIONS(3932), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3712), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4342), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1837), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3934), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156487,22 +156937,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [53801] = 5, + [53786] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1836), 2, + STATE(1838), 2, sym_line_comment, sym_block_comment, - ACTIONS(3698), 15, + ACTIONS(3668), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156518,7 +156961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3696), 23, + ACTIONS(3666), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156542,61 +156985,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53854] = 22, + [53839] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3988), 1, + anon_sym_EQ, + ACTIONS(4164), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(4170), 1, anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, + ACTIONS(4172), 1, anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(4174), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(4176), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(4178), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4180), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4188), 1, + anon_sym_DOT, + ACTIONS(4190), 1, anon_sym_DOT_DOT, - ACTIONS(3922), 2, + ACTIONS(4194), 1, + anon_sym_as, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(4182), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4192), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4326), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1837), 2, + STATE(1839), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(4168), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3986), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156607,15 +157049,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53941] = 5, + [53924] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1838), 2, + STATE(1840), 2, sym_line_comment, sym_block_comment, - ACTIONS(3776), 15, + ACTIONS(3672), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156631,7 +157073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3774), 23, + ACTIONS(3670), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156655,15 +157097,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53994] = 5, + [53977] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1839), 2, + ACTIONS(3962), 1, + anon_sym_EQ, + ACTIONS(4164), 1, + anon_sym_LBRACK, + ACTIONS(4170), 1, + anon_sym_QMARK, + ACTIONS(4172), 1, + anon_sym_CARET, + ACTIONS(4174), 1, + anon_sym_AMP, + ACTIONS(4176), 1, + anon_sym_PIPE, + ACTIONS(4178), 1, + anon_sym_AMP_AMP, + ACTIONS(4180), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4188), 1, + anon_sym_DOT, + ACTIONS(4190), 1, + anon_sym_DOT_DOT, + ACTIONS(4194), 1, + anon_sym_as, + ACTIONS(4166), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4182), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4186), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4192), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1841), 2, sym_line_comment, sym_block_comment, - ACTIONS(3784), 15, + ACTIONS(4168), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3960), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [54062] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1842), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3726), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156679,7 +157185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3782), 23, + ACTIONS(3724), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156703,61 +157209,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54047] = 22, + [54115] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4052), 1, - anon_sym_CARET, - ACTIONS(4054), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(4056), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(4060), 1, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(4066), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4072), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4330), 1, - anon_sym_AMP_AMP, - ACTIONS(4048), 2, + ACTIONS(4344), 1, + anon_sym_RPAREN, + ACTIONS(4346), 1, + anon_sym_COMMA, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4062), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4070), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4074), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4328), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(1840), 2, + STATE(1843), 2, sym_line_comment, sym_block_comment, - ACTIONS(4050), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4068), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4064), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156768,61 +157275,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54134] = 22, + [54204] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, + ACTIONS(4056), 1, anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(4058), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(4060), 1, anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4064), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(4070), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4076), 1, anon_sym_DOT_DOT, - ACTIONS(3922), 2, + ACTIONS(4350), 1, + anon_sym_AMP_AMP, + ACTIONS(4052), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(4066), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(4074), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4078), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4332), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1841), 2, + ACTIONS(4348), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(1844), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(4054), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(4072), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(4068), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156833,15 +157340,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54221] = 5, + [54291] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1842), 2, + STATE(1845), 2, sym_line_comment, sym_block_comment, - ACTIONS(1289), 15, + ACTIONS(3748), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156857,7 +157364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1291), 23, + ACTIONS(3746), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156881,15 +157388,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54274] = 5, + [54344] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1843), 2, + STATE(1846), 2, sym_line_comment, sym_block_comment, - ACTIONS(3728), 15, + ACTIONS(3756), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156905,7 +157412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3726), 23, + ACTIONS(3754), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156929,15 +157436,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54327] = 5, + [54397] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1844), 2, + STATE(1847), 2, sym_line_comment, sym_block_comment, - ACTIONS(3824), 15, + ACTIONS(3676), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156953,7 +157460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3822), 23, + ACTIONS(3674), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156977,61 +157484,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54380] = 22, + [54450] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(4216), 1, + STATE(1848), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3764), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4218), 1, anon_sym_AMP, - ACTIONS(4220), 1, anon_sym_PIPE, - ACTIONS(4222), 1, - anon_sym_AMP_AMP, - ACTIONS(4224), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4230), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4236), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3860), 2, + ACTIONS(3762), 23, anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4212), 2, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54503] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1849), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3816), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4226), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4234), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4238), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3814), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1845), 2, + anon_sym_as, + [54556] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1850), 2, sym_line_comment, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(1325), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4232), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4228), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1327), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157042,62 +157621,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54467] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54609] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(289), 1, - anon_sym_RBRACE, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, + STATE(1851), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3836), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, - ACTIONS(4184), 1, - anon_sym_SEMI, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3834), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1846), 2, + anon_sym_as, + [54662] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1852), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3870), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3954), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3868), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157108,62 +157717,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54556] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54715] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(4164), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(4170), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(4188), 1, anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, + STATE(1853), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3894), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3928), 1, anon_sym_AMP, - ACTIONS(3930), 1, anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, - ACTIONS(4334), 1, - anon_sym_RPAREN, - ACTIONS(4336), 1, - anon_sym_COMMA, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + anon_sym_DOT_DOT, + ACTIONS(3892), 21, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1847), 2, + anon_sym_as, + [54774] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1854), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3740), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3954), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3738), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157174,62 +157816,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54645] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54827] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(4216), 1, - anon_sym_CARET, + ACTIONS(3976), 1, + anon_sym_EQ, ACTIONS(4218), 1, - anon_sym_AMP, + anon_sym_CARET, ACTIONS(4220), 1, - anon_sym_PIPE, + anon_sym_AMP, ACTIONS(4222), 1, - anon_sym_AMP_AMP, + anon_sym_PIPE, ACTIONS(4224), 1, + anon_sym_AMP_AMP, + ACTIONS(4226), 1, anon_sym_PIPE_PIPE, - ACTIONS(4230), 1, - anon_sym_EQ, - ACTIONS(4248), 1, + ACTIONS(4238), 1, anon_sym_DOT_DOT, - ACTIONS(4338), 1, - anon_sym_LBRACE, - STATE(383), 1, - sym_match_block, - ACTIONS(4212), 2, + ACTIONS(4214), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4226), 2, + ACTIONS(4228), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4234), 2, + ACTIONS(4236), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4250), 2, + ACTIONS(4240), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1848), 2, + STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(4214), 3, + ACTIONS(4216), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4232), 4, + ACTIONS(4234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4228), 10, + ACTIONS(3974), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157240,37 +157887,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54734] = 5, + [54912] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1849), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3880), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4164), 1, + anon_sym_LBRACK, + ACTIONS(4170), 1, + anon_sym_QMARK, + ACTIONS(4172), 1, anon_sym_CARET, + ACTIONS(4174), 1, anon_sym_AMP, + ACTIONS(4176), 1, anon_sym_PIPE, + ACTIONS(4180), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4188), 1, + anon_sym_DOT, + ACTIONS(4194), 1, + anon_sym_as, + ACTIONS(4204), 1, + anon_sym_EQ, + ACTIONS(4352), 1, + anon_sym_DOT_DOT, + ACTIONS(4166), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4182), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3878), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4300), 2, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4354), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1856), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4168), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4202), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157281,67 +157950,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [54787] = 22, + [54996] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4340), 1, + ACTIONS(4356), 1, anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1850), 2, + STATE(1857), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157352,60 +158014,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54873] = 22, + [55082] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4342), 1, - anon_sym_COMMA, - ACTIONS(3922), 2, + ACTIONS(4358), 1, + anon_sym_RBRACK, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1851), 2, + STATE(1858), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157416,60 +158078,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54959] = 22, + [55168] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4344), 1, + ACTIONS(4360), 1, anon_sym_RBRACK, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1852), 2, + STATE(1859), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157480,60 +158142,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55045] = 22, + [55254] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(4158), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(4160), 1, - anon_sym_CARET, - ACTIONS(4162), 1, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(4164), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(4168), 1, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(4176), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_as, - ACTIONS(4210), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4328), 1, - anon_sym_EQ_GT, - ACTIONS(4346), 1, - anon_sym_AMP_AMP, - ACTIONS(4348), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4154), 2, + ACTIONS(4362), 1, + anon_sym_SEMI, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4170), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4174), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4350), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1853), 2, + STATE(1860), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4172), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4208), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157544,60 +158206,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55131] = 22, + [55340] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4352), 1, - anon_sym_RBRACK, - ACTIONS(3922), 2, + ACTIONS(4364), 1, + anon_sym_SEMI, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1854), 2, + STATE(1861), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157608,60 +158270,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55217] = 22, + [55426] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4354), 1, - anon_sym_RBRACK, - ACTIONS(3922), 2, + ACTIONS(4366), 1, + anon_sym_SEMI, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1855), 2, + STATE(1862), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157672,60 +158334,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55303] = 22, + [55512] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4356), 1, - anon_sym_RBRACK, - ACTIONS(3922), 2, + ACTIONS(4368), 1, + anon_sym_SEMI, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1856), 2, + STATE(1863), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157736,60 +158398,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55389] = 22, + [55598] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4150), 1, + ACTIONS(4370), 1, anon_sym_COMMA, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1857), 2, + STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157800,124 +158462,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55475] = 22, + [55684] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, - anon_sym_LBRACK, - ACTIONS(3660), 1, - anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, - anon_sym_AMP, - ACTIONS(3930), 1, - anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, - anon_sym_EQ, - ACTIONS(4038), 1, - anon_sym_DOT_DOT, - ACTIONS(4358), 1, - anon_sym_RBRACK, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3942), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1858), 2, + ACTIONS(4322), 1, + sym_identifier, + ACTIONS(4324), 1, + anon_sym_LBRACE, + ACTIONS(4328), 1, + anon_sym_STAR, + ACTIONS(4334), 1, + anon_sym_COLON_COLON, + ACTIONS(4338), 1, + sym_metavariable, + ACTIONS(4372), 1, + anon_sym_RBRACE, + STATE(2469), 1, + sym_scoped_identifier, + STATE(3104), 1, + sym__use_clause, + STATE(3389), 1, + sym_bracketed_type, + STATE(3577), 1, + sym_generic_type_with_turbofish, + STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3954), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [55561] = 22, + ACTIONS(4336), 3, + sym_self, + sym_super, + sym_crate, + STATE(2812), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4330), 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, + [55760] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4360), 1, + ACTIONS(4374), 1, anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1859), 2, + STATE(1866), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157928,60 +158585,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55647] = 22, + [55846] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4362), 1, - anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(4376), 1, + anon_sym_COMMA, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1860), 2, + STATE(1867), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157992,60 +158649,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55733] = 22, + [55932] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4364), 1, - anon_sym_COMMA, - ACTIONS(3922), 2, + ACTIONS(4378), 1, + anon_sym_SEMI, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1861), 2, + STATE(1868), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158056,60 +158713,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55819] = 22, + [56018] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4366), 1, - anon_sym_RBRACK, - ACTIONS(3922), 2, + ACTIONS(4380), 1, + anon_sym_COMMA, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1862), 2, + STATE(1869), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158120,60 +158777,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55905] = 22, + [56104] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4368), 1, - anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(4382), 1, + anon_sym_RBRACK, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1863), 2, + STATE(1870), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158184,60 +158841,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55991] = 22, + [56190] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4370), 1, - anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(4384), 1, + anon_sym_RBRACK, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1864), 2, + STATE(1871), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158248,60 +158905,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56077] = 22, + [56276] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4372), 1, - anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(4198), 1, + anon_sym_COMMA, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1865), 2, + STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158312,60 +158969,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56163] = 22, + [56362] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4374), 1, + ACTIONS(4386), 1, anon_sym_RBRACK, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1866), 2, + STATE(1873), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158376,60 +159033,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56249] = 22, + [56448] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4376), 1, - anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(4388), 1, + anon_sym_RBRACK, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1867), 2, + STATE(1874), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158440,46 +159097,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56335] = 17, + [56534] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4188), 1, + ACTIONS(4322), 1, sym_identifier, - ACTIONS(4190), 1, + ACTIONS(4324), 1, anon_sym_LBRACE, - ACTIONS(4194), 1, + ACTIONS(4328), 1, anon_sym_STAR, - ACTIONS(4200), 1, + ACTIONS(4334), 1, anon_sym_COLON_COLON, - ACTIONS(4204), 1, + ACTIONS(4338), 1, sym_metavariable, - ACTIONS(4378), 1, + ACTIONS(4390), 1, anon_sym_RBRACE, - STATE(2457), 1, + STATE(2469), 1, sym_scoped_identifier, - STATE(3102), 1, + STATE(3104), 1, sym__use_clause, - STATE(3343), 1, + STATE(3389), 1, sym_bracketed_type, - STATE(3461), 1, + STATE(3577), 1, sym_generic_type_with_turbofish, - STATE(1868), 2, + STATE(1875), 2, sym_line_comment, sym_block_comment, - ACTIONS(4202), 3, + ACTIONS(4336), 3, sym_self, sym_super, sym_crate, - STATE(3036), 4, + STATE(2812), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4196), 19, + ACTIONS(4330), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158499,60 +159156,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [56411] = 22, + [56610] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4380), 1, - anon_sym_COMMA, - ACTIONS(3922), 2, + ACTIONS(4392), 1, + anon_sym_RBRACK, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1869), 2, + STATE(1876), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158563,59 +159220,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56497] = 21, + [56696] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4152), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(4158), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(4160), 1, - anon_sym_CARET, - ACTIONS(4162), 1, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(4164), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(4168), 1, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(4176), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_as, - ACTIONS(4210), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4348), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4154), 2, + ACTIONS(4394), 1, + anon_sym_RBRACK, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4170), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4174), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4292), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4350), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1870), 2, + STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4172), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4208), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158626,60 +159284,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56581] = 22, + [56782] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4382), 1, + ACTIONS(4396), 1, anon_sym_RBRACK, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1871), 2, + STATE(1878), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158690,60 +159348,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56667] = 22, + [56868] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(4164), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(4170), 1, anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, + ACTIONS(4172), 1, anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(4174), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(4176), 1, anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4180), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(4188), 1, + anon_sym_DOT, + ACTIONS(4194), 1, + anon_sym_as, + ACTIONS(4204), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4348), 1, + anon_sym_EQ_GT, + ACTIONS(4352), 1, anon_sym_DOT_DOT, - ACTIONS(4384), 1, - anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(4398), 1, + anon_sym_AMP_AMP, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(4182), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4354), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1872), 2, + STATE(1879), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(4168), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(4202), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158754,60 +159412,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56753] = 22, + [56954] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4386), 1, + ACTIONS(4400), 1, anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1873), 2, + STATE(1880), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158818,60 +159476,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56839] = 22, + [57040] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4388), 1, + ACTIONS(4402), 1, anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1874), 2, + STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158882,119 +159540,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56925] = 17, - ACTIONS(29), 1, - anon_sym_LT, + [57126] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4188), 1, - sym_identifier, - ACTIONS(4190), 1, - anon_sym_LBRACE, - ACTIONS(4194), 1, - anon_sym_STAR, - ACTIONS(4200), 1, - anon_sym_COLON_COLON, - ACTIONS(4204), 1, - sym_metavariable, - ACTIONS(4390), 1, - anon_sym_RBRACE, - STATE(2457), 1, - sym_scoped_identifier, - STATE(3102), 1, - sym__use_clause, - STATE(3343), 1, - sym_bracketed_type, - STATE(3461), 1, - sym_generic_type_with_turbofish, - STATE(1875), 2, + ACTIONS(3730), 1, + anon_sym_LBRACK, + ACTIONS(3734), 1, + anon_sym_QMARK, + ACTIONS(3736), 1, + anon_sym_DOT, + ACTIONS(3846), 1, + anon_sym_as, + ACTIONS(3936), 1, + anon_sym_AMP, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, + anon_sym_PIPE, + ACTIONS(3944), 1, + anon_sym_AMP_AMP, + ACTIONS(3946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3950), 1, + anon_sym_EQ, + ACTIONS(4042), 1, + anon_sym_DOT_DOT, + ACTIONS(4206), 1, + anon_sym_SEMI, + ACTIONS(3932), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3938), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3954), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4044), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1882), 2, sym_line_comment, sym_block_comment, - ACTIONS(4202), 3, - sym_self, - sym_super, - sym_crate, - STATE(3036), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4196), 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, - [57001] = 22, + ACTIONS(3934), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3952), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3948), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [57212] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4184), 1, - anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(4404), 1, + anon_sym_RBRACK, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1876), 2, + STATE(1883), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159005,60 +159668,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57087] = 22, + [57298] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(4164), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(4170), 1, anon_sym_QMARK, - ACTIONS(3662), 1, - anon_sym_DOT, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3926), 1, + ACTIONS(4172), 1, anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(4174), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(4176), 1, anon_sym_PIPE, - ACTIONS(3932), 1, - anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(4180), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(4188), 1, + anon_sym_DOT, + ACTIONS(4194), 1, + anon_sym_as, + ACTIONS(4204), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4352), 1, anon_sym_DOT_DOT, - ACTIONS(4392), 1, - anon_sym_RBRACK, - ACTIONS(3922), 2, + ACTIONS(4166), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(4182), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(4186), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4208), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4354), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1877), 2, + STATE(1884), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(4168), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(4184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(4202), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159069,60 +159731,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57173] = 22, + [57382] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4394), 1, - anon_sym_RBRACK, - ACTIONS(3922), 2, + ACTIONS(4406), 1, + anon_sym_SEMI, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1878), 2, + STATE(1885), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159133,60 +159795,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57259] = 22, + [57468] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4396), 1, + ACTIONS(4408), 1, anon_sym_COMMA, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1879), 2, + STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159197,123 +159859,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57345] = 22, + [57554] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4398), 1, + ACTIONS(4410), 1, anon_sym_SEMI, - ACTIONS(3922), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3936), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3942), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4040), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1880), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3924), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3940), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3954), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [57431] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4152), 1, - anon_sym_LBRACK, - ACTIONS(4158), 1, - anon_sym_QMARK, - ACTIONS(4160), 1, - anon_sym_CARET, - ACTIONS(4162), 1, - anon_sym_AMP, - ACTIONS(4164), 1, - anon_sym_PIPE, - ACTIONS(4168), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4176), 1, - anon_sym_DOT, - ACTIONS(4182), 1, - anon_sym_as, - ACTIONS(4210), 1, - anon_sym_EQ, - ACTIONS(4348), 1, - anon_sym_DOT_DOT, - ACTIONS(4154), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4170), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4174), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4290), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4350), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1881), 2, + STATE(1887), 2, sym_line_comment, sym_block_comment, - ACTIONS(4156), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4172), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4208), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159324,60 +159923,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57515] = 22, + [57640] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4400), 1, + ACTIONS(4412), 1, anon_sym_SEMI, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1882), 2, + STATE(1888), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159388,60 +159987,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57601] = 22, + [57726] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3656), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3660), 1, + ACTIONS(3734), 1, anon_sym_QMARK, - ACTIONS(3662), 1, + ACTIONS(3736), 1, anon_sym_DOT, - ACTIONS(3742), 1, + ACTIONS(3846), 1, anon_sym_as, - ACTIONS(3926), 1, - anon_sym_CARET, - ACTIONS(3928), 1, + ACTIONS(3936), 1, anon_sym_AMP, - ACTIONS(3930), 1, + ACTIONS(3940), 1, + anon_sym_CARET, + ACTIONS(3942), 1, anon_sym_PIPE, - ACTIONS(3932), 1, + ACTIONS(3944), 1, anon_sym_AMP_AMP, - ACTIONS(3934), 1, + ACTIONS(3946), 1, anon_sym_PIPE_PIPE, - ACTIONS(3956), 1, + ACTIONS(3950), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4042), 1, anon_sym_DOT_DOT, - ACTIONS(4402), 1, + ACTIONS(4414), 1, anon_sym_RBRACK, - ACTIONS(3922), 2, + ACTIONS(3932), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3936), 2, + ACTIONS(3938), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3942), 2, + ACTIONS(3954), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4040), 2, + ACTIONS(4044), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1883), 2, + STATE(1889), 2, sym_line_comment, sym_block_comment, - ACTIONS(3924), 3, + ACTIONS(3934), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3940), 4, + ACTIONS(3952), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3954), 10, + ACTIONS(3948), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159452,44 +160051,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57687] = 16, + [57812] = 16, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4188), 1, + ACTIONS(4322), 1, sym_identifier, - ACTIONS(4190), 1, + ACTIONS(4324), 1, anon_sym_LBRACE, - ACTIONS(4194), 1, + ACTIONS(4328), 1, anon_sym_STAR, - ACTIONS(4200), 1, + ACTIONS(4334), 1, anon_sym_COLON_COLON, - ACTIONS(4204), 1, + ACTIONS(4338), 1, sym_metavariable, - STATE(2457), 1, + STATE(2469), 1, sym_scoped_identifier, - STATE(3343), 1, + STATE(3104), 1, + sym__use_clause, + STATE(3389), 1, sym_bracketed_type, - STATE(3461), 1, + STATE(3577), 1, sym_generic_type_with_turbofish, - STATE(3587), 1, - sym__use_clause, - STATE(1884), 2, + STATE(1890), 2, sym_line_comment, sym_block_comment, - ACTIONS(4202), 3, + ACTIONS(4336), 3, sym_self, sym_super, sym_crate, - STATE(3036), 4, + STATE(2812), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4196), 19, + ACTIONS(4330), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159509,44 +160108,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [57760] = 16, + [57885] = 16, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4188), 1, + ACTIONS(4322), 1, sym_identifier, - ACTIONS(4190), 1, + ACTIONS(4324), 1, anon_sym_LBRACE, - ACTIONS(4194), 1, + ACTIONS(4328), 1, anon_sym_STAR, - ACTIONS(4200), 1, + ACTIONS(4334), 1, anon_sym_COLON_COLON, - ACTIONS(4204), 1, + ACTIONS(4338), 1, sym_metavariable, - STATE(2457), 1, + STATE(2469), 1, sym_scoped_identifier, - STATE(3343), 1, + STATE(3361), 1, + sym__use_clause, + STATE(3389), 1, sym_bracketed_type, - STATE(3461), 1, + STATE(3577), 1, sym_generic_type_with_turbofish, - STATE(3594), 1, - sym__use_clause, - STATE(1885), 2, + STATE(1891), 2, sym_line_comment, sym_block_comment, - ACTIONS(4202), 3, + ACTIONS(4336), 3, sym_self, sym_super, sym_crate, - STATE(3036), 4, + STATE(2812), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4196), 19, + ACTIONS(4330), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159566,44 +160165,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [57833] = 16, + [57958] = 16, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4188), 1, + ACTIONS(4322), 1, sym_identifier, - ACTIONS(4190), 1, + ACTIONS(4324), 1, anon_sym_LBRACE, - ACTIONS(4194), 1, + ACTIONS(4328), 1, anon_sym_STAR, - ACTIONS(4200), 1, + ACTIONS(4334), 1, anon_sym_COLON_COLON, - ACTIONS(4204), 1, + ACTIONS(4338), 1, sym_metavariable, - STATE(2457), 1, + STATE(2469), 1, sym_scoped_identifier, - STATE(3343), 1, + STATE(3389), 1, sym_bracketed_type, - STATE(3438), 1, + STATE(3488), 1, sym__use_clause, - STATE(3461), 1, + STATE(3577), 1, sym_generic_type_with_turbofish, - STATE(1886), 2, + STATE(1892), 2, sym_line_comment, sym_block_comment, - ACTIONS(4202), 3, + ACTIONS(4336), 3, sym_self, sym_super, sym_crate, - STATE(3036), 4, + STATE(2812), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4196), 19, + ACTIONS(4330), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159623,44 +160222,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [57906] = 16, + [58031] = 16, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4188), 1, + ACTIONS(4322), 1, sym_identifier, - ACTIONS(4190), 1, + ACTIONS(4324), 1, anon_sym_LBRACE, - ACTIONS(4194), 1, + ACTIONS(4328), 1, anon_sym_STAR, - ACTIONS(4200), 1, + ACTIONS(4334), 1, anon_sym_COLON_COLON, - ACTIONS(4204), 1, + ACTIONS(4338), 1, sym_metavariable, - STATE(2457), 1, + STATE(2469), 1, sym_scoped_identifier, - STATE(3102), 1, - sym__use_clause, - STATE(3343), 1, + STATE(3389), 1, sym_bracketed_type, - STATE(3461), 1, + STATE(3496), 1, + sym__use_clause, + STATE(3577), 1, sym_generic_type_with_turbofish, - STATE(1887), 2, + STATE(1893), 2, sym_line_comment, sym_block_comment, - ACTIONS(4202), 3, + ACTIONS(4336), 3, sym_self, sym_super, sym_crate, - STATE(3036), 4, + STATE(2812), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4196), 19, + ACTIONS(4330), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159680,44 +160279,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [57979] = 16, + [58104] = 16, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4188), 1, + ACTIONS(4322), 1, sym_identifier, - ACTIONS(4190), 1, + ACTIONS(4324), 1, anon_sym_LBRACE, - ACTIONS(4194), 1, + ACTIONS(4328), 1, anon_sym_STAR, - ACTIONS(4200), 1, + ACTIONS(4334), 1, anon_sym_COLON_COLON, - ACTIONS(4204), 1, + ACTIONS(4338), 1, sym_metavariable, - STATE(2457), 1, + STATE(2469), 1, sym_scoped_identifier, - STATE(3343), 1, + STATE(3387), 1, + sym__use_clause, + STATE(3389), 1, sym_bracketed_type, - STATE(3461), 1, + STATE(3577), 1, sym_generic_type_with_turbofish, - STATE(3517), 1, - sym__use_clause, - STATE(1888), 2, + STATE(1894), 2, sym_line_comment, sym_block_comment, - ACTIONS(4202), 3, + ACTIONS(4336), 3, sym_self, sym_super, sym_crate, - STATE(3036), 4, + STATE(2812), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4196), 19, + ACTIONS(4330), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159737,46 +160336,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [58052] = 17, + [58177] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3706), 1, + ACTIONS(3908), 1, anon_sym_where, - ACTIONS(4404), 1, + ACTIONS(4416), 1, sym_identifier, - ACTIONS(4408), 1, + ACTIONS(4420), 1, anon_sym_COLON_COLON, - ACTIONS(4414), 1, + ACTIONS(4426), 1, sym_metavariable, - STATE(2881), 1, + STATE(3039), 1, sym_scoped_type_identifier, - STATE(3147), 1, + STATE(3310), 1, sym_generic_type, - STATE(3386), 1, + STATE(3395), 1, sym_scoped_identifier, - STATE(3491), 1, + STATE(3504), 1, sym_generic_type_with_turbofish, - STATE(3518), 1, + STATE(3530), 1, sym_bracketed_type, - ACTIONS(4410), 2, + ACTIONS(4422), 2, anon_sym_default, anon_sym_union, - STATE(1889), 2, + STATE(1895), 2, sym_line_comment, sym_block_comment, - ACTIONS(3704), 3, + ACTIONS(3906), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4412), 3, + ACTIONS(4424), 3, sym_self, sym_super, sym_crate, - ACTIONS(4406), 17, + ACTIONS(4418), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159794,46 +160393,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58126] = 17, + [58251] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3706), 1, + ACTIONS(3908), 1, anon_sym_where, - ACTIONS(4408), 1, + ACTIONS(4420), 1, anon_sym_COLON_COLON, - ACTIONS(4414), 1, + ACTIONS(4426), 1, sym_metavariable, - ACTIONS(4416), 1, + ACTIONS(4428), 1, sym_identifier, - STATE(2775), 1, + STATE(2894), 1, sym_scoped_type_identifier, - STATE(3117), 1, + STATE(3071), 1, sym_generic_type, - STATE(3386), 1, + STATE(3395), 1, sym_scoped_identifier, - STATE(3491), 1, + STATE(3504), 1, sym_generic_type_with_turbofish, - STATE(3518), 1, + STATE(3530), 1, sym_bracketed_type, - ACTIONS(4410), 2, + ACTIONS(4422), 2, anon_sym_default, anon_sym_union, - STATE(1890), 2, + STATE(1896), 2, sym_line_comment, sym_block_comment, - ACTIONS(3704), 3, + ACTIONS(3906), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4412), 3, + ACTIONS(4424), 3, sym_self, sym_super, sym_crate, - ACTIONS(4406), 17, + ACTIONS(4418), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159851,46 +160450,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58200] = 17, + [58325] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3706), 1, + ACTIONS(3908), 1, anon_sym_where, - ACTIONS(4408), 1, + ACTIONS(4420), 1, anon_sym_COLON_COLON, - ACTIONS(4414), 1, + ACTIONS(4426), 1, sym_metavariable, - ACTIONS(4418), 1, + ACTIONS(4430), 1, sym_identifier, - STATE(2989), 1, + STATE(2765), 1, sym_scoped_type_identifier, - STATE(3261), 1, + STATE(3331), 1, sym_generic_type, - STATE(3386), 1, + STATE(3395), 1, sym_scoped_identifier, - STATE(3491), 1, + STATE(3504), 1, sym_generic_type_with_turbofish, - STATE(3518), 1, + STATE(3530), 1, sym_bracketed_type, - ACTIONS(4410), 2, + ACTIONS(4422), 2, anon_sym_default, anon_sym_union, - STATE(1891), 2, + STATE(1897), 2, sym_line_comment, sym_block_comment, - ACTIONS(3704), 3, + ACTIONS(3906), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4412), 3, + ACTIONS(4424), 3, sym_self, sym_super, sym_crate, - ACTIONS(4406), 17, + ACTIONS(4418), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159908,46 +160507,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58274] = 17, + [58399] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3706), 1, + ACTIONS(3908), 1, anon_sym_where, - ACTIONS(4408), 1, + ACTIONS(4420), 1, anon_sym_COLON_COLON, - ACTIONS(4414), 1, + ACTIONS(4426), 1, sym_metavariable, - ACTIONS(4420), 1, + ACTIONS(4432), 1, sym_identifier, - STATE(3039), 1, + STATE(2960), 1, sym_scoped_type_identifier, - STATE(3307), 1, + STATE(3163), 1, sym_generic_type, - STATE(3386), 1, + STATE(3395), 1, sym_scoped_identifier, - STATE(3491), 1, + STATE(3504), 1, sym_generic_type_with_turbofish, - STATE(3518), 1, + STATE(3530), 1, sym_bracketed_type, - ACTIONS(4410), 2, + ACTIONS(4422), 2, anon_sym_default, anon_sym_union, - STATE(1892), 2, + STATE(1898), 2, sym_line_comment, sym_block_comment, - ACTIONS(3704), 3, + ACTIONS(3906), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4412), 3, + ACTIONS(4424), 3, sym_self, sym_super, sym_crate, - ACTIONS(4406), 17, + ACTIONS(4418), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -159965,46 +160564,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58348] = 17, + [58473] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3706), 1, + ACTIONS(3908), 1, anon_sym_where, - ACTIONS(4408), 1, + ACTIONS(4420), 1, anon_sym_COLON_COLON, - ACTIONS(4414), 1, + ACTIONS(4426), 1, sym_metavariable, - ACTIONS(4422), 1, + ACTIONS(4434), 1, sym_identifier, - STATE(3034), 1, + STATE(2938), 1, sym_scoped_type_identifier, - STATE(3299), 1, + STATE(3108), 1, sym_generic_type, - STATE(3386), 1, + STATE(3395), 1, sym_scoped_identifier, - STATE(3491), 1, + STATE(3504), 1, sym_generic_type_with_turbofish, - STATE(3518), 1, + STATE(3530), 1, sym_bracketed_type, - ACTIONS(4410), 2, + ACTIONS(4422), 2, anon_sym_default, anon_sym_union, - STATE(1893), 2, + STATE(1899), 2, sym_line_comment, sym_block_comment, - ACTIONS(3704), 3, + ACTIONS(3906), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4412), 3, + ACTIONS(4424), 3, sym_self, sym_super, sym_crate, - ACTIONS(4406), 17, + ACTIONS(4418), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160022,46 +160621,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58422] = 17, + [58547] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3706), 1, + ACTIONS(3908), 1, anon_sym_where, - ACTIONS(4408), 1, + ACTIONS(4420), 1, anon_sym_COLON_COLON, - ACTIONS(4414), 1, + ACTIONS(4426), 1, sym_metavariable, - ACTIONS(4424), 1, + ACTIONS(4436), 1, sym_identifier, - STATE(3041), 1, + STATE(3046), 1, sym_scoped_type_identifier, - STATE(3310), 1, + STATE(3314), 1, sym_generic_type, - STATE(3386), 1, + STATE(3395), 1, sym_scoped_identifier, - STATE(3491), 1, + STATE(3504), 1, sym_generic_type_with_turbofish, - STATE(3518), 1, + STATE(3530), 1, sym_bracketed_type, - ACTIONS(4410), 2, + ACTIONS(4422), 2, anon_sym_default, anon_sym_union, - STATE(1894), 2, + STATE(1900), 2, sym_line_comment, sym_block_comment, - ACTIONS(3704), 3, + ACTIONS(3906), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4412), 3, + ACTIONS(4424), 3, sym_self, sym_super, sym_crate, - ACTIONS(4406), 17, + ACTIONS(4418), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160079,46 +160678,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58496] = 17, + [58621] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3706), 1, + ACTIONS(3908), 1, anon_sym_where, - ACTIONS(4408), 1, + ACTIONS(4420), 1, anon_sym_COLON_COLON, - ACTIONS(4414), 1, - sym_metavariable, ACTIONS(4426), 1, + sym_metavariable, + ACTIONS(4438), 1, sym_identifier, - STATE(2803), 1, + STATE(3047), 1, sym_scoped_type_identifier, - STATE(3257), 1, + STATE(3316), 1, sym_generic_type, - STATE(3386), 1, + STATE(3395), 1, sym_scoped_identifier, - STATE(3491), 1, + STATE(3504), 1, sym_generic_type_with_turbofish, - STATE(3518), 1, + STATE(3530), 1, sym_bracketed_type, - ACTIONS(4410), 2, + ACTIONS(4422), 2, anon_sym_default, anon_sym_union, - STATE(1895), 2, + STATE(1901), 2, sym_line_comment, sym_block_comment, - ACTIONS(3704), 3, + ACTIONS(3906), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4412), 3, + ACTIONS(4424), 3, sym_self, sym_super, sym_crate, - ACTIONS(4406), 17, + ACTIONS(4418), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160136,46 +160735,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58570] = 17, + [58695] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3706), 1, + ACTIONS(3908), 1, anon_sym_where, - ACTIONS(4408), 1, + ACTIONS(4420), 1, anon_sym_COLON_COLON, - ACTIONS(4414), 1, + ACTIONS(4426), 1, sym_metavariable, - ACTIONS(4428), 1, + ACTIONS(4440), 1, sym_identifier, - STATE(3043), 1, + STATE(3050), 1, sym_scoped_type_identifier, - STATE(3314), 1, + STATE(3320), 1, sym_generic_type, - STATE(3386), 1, + STATE(3395), 1, sym_scoped_identifier, - STATE(3491), 1, + STATE(3504), 1, sym_generic_type_with_turbofish, - STATE(3518), 1, + STATE(3530), 1, sym_bracketed_type, - ACTIONS(4410), 2, + ACTIONS(4422), 2, anon_sym_default, anon_sym_union, - STATE(1896), 2, + STATE(1902), 2, sym_line_comment, sym_block_comment, - ACTIONS(3704), 3, + ACTIONS(3906), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4412), 3, + ACTIONS(4424), 3, sym_self, sym_super, sym_crate, - ACTIONS(4406), 17, + ACTIONS(4418), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160193,19 +160792,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58644] = 5, + [58769] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1897), 2, + STATE(1903), 2, sym_line_comment, sym_block_comment, - ACTIONS(4432), 3, + ACTIONS(4444), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4430), 28, + ACTIONS(4442), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160234,19 +160833,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [58690] = 5, + [58815] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1898), 2, + STATE(1904), 2, sym_line_comment, sym_block_comment, - ACTIONS(4436), 3, + ACTIONS(4448), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4434), 28, + ACTIONS(4446), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160275,19 +160874,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [58736] = 5, + [58861] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1899), 2, + STATE(1905), 2, sym_line_comment, sym_block_comment, - ACTIONS(4440), 3, + ACTIONS(4452), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4438), 28, + ACTIONS(4450), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160316,35 +160915,35 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [58782] = 13, + [58907] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2898), 1, + ACTIONS(2757), 1, anon_sym_COLON_COLON, - ACTIONS(4442), 1, + ACTIONS(4454), 1, sym_identifier, - ACTIONS(4448), 1, + ACTIONS(4460), 1, sym_metavariable, - STATE(2273), 1, + STATE(2246), 1, sym_scoped_identifier, - STATE(3340), 1, + STATE(3350), 1, sym_bracketed_type, - STATE(3366), 1, + STATE(3375), 1, sym_generic_type_with_turbofish, - STATE(3529), 1, + STATE(3443), 1, sym_attribute, - STATE(1900), 2, + STATE(1906), 2, sym_line_comment, sym_block_comment, - ACTIONS(4446), 3, + ACTIONS(4458), 3, sym_self, sym_super, sym_crate, - ACTIONS(4444), 19, + ACTIONS(4456), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160364,35 +160963,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [58843] = 13, + [58968] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2898), 1, + ACTIONS(2757), 1, anon_sym_COLON_COLON, - ACTIONS(4442), 1, + ACTIONS(4454), 1, sym_identifier, - ACTIONS(4448), 1, + ACTIONS(4460), 1, sym_metavariable, - STATE(2273), 1, + STATE(2246), 1, sym_scoped_identifier, - STATE(3340), 1, + STATE(3350), 1, sym_bracketed_type, - STATE(3366), 1, + STATE(3375), 1, sym_generic_type_with_turbofish, - STATE(3627), 1, + STATE(3405), 1, sym_attribute, - STATE(1901), 2, + STATE(1907), 2, sym_line_comment, sym_block_comment, - ACTIONS(4446), 3, + ACTIONS(4458), 3, sym_self, sym_super, sym_crate, - ACTIONS(4444), 19, + ACTIONS(4456), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160412,35 +161011,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [58904] = 13, + [59029] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2898), 1, + ACTIONS(2757), 1, anon_sym_COLON_COLON, - ACTIONS(4442), 1, + ACTIONS(4454), 1, sym_identifier, - ACTIONS(4448), 1, + ACTIONS(4460), 1, sym_metavariable, - STATE(2273), 1, + STATE(2246), 1, sym_scoped_identifier, - STATE(3340), 1, + STATE(3350), 1, sym_bracketed_type, - STATE(3366), 1, + STATE(3375), 1, sym_generic_type_with_turbofish, - STATE(3604), 1, + STATE(3562), 1, sym_attribute, - STATE(1902), 2, + STATE(1908), 2, sym_line_comment, sym_block_comment, - ACTIONS(4446), 3, + ACTIONS(4458), 3, sym_self, sym_super, sym_crate, - ACTIONS(4444), 19, + ACTIONS(4456), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160460,35 +161059,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [58965] = 13, + [59090] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2898), 1, + ACTIONS(2757), 1, anon_sym_COLON_COLON, - ACTIONS(4442), 1, + ACTIONS(4454), 1, sym_identifier, - ACTIONS(4448), 1, + ACTIONS(4460), 1, sym_metavariable, - STATE(2273), 1, + STATE(2246), 1, sym_scoped_identifier, - STATE(3340), 1, - sym_bracketed_type, - STATE(3353), 1, + STATE(3346), 1, sym_attribute, - STATE(3366), 1, + STATE(3350), 1, + sym_bracketed_type, + STATE(3375), 1, sym_generic_type_with_turbofish, - STATE(1903), 2, + STATE(1909), 2, sym_line_comment, sym_block_comment, - ACTIONS(4446), 3, + ACTIONS(4458), 3, sym_self, sym_super, sym_crate, - ACTIONS(4444), 19, + ACTIONS(4456), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160508,35 +161107,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59026] = 13, + [59151] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2898), 1, + ACTIONS(2757), 1, anon_sym_COLON_COLON, - ACTIONS(4442), 1, + ACTIONS(4454), 1, sym_identifier, - ACTIONS(4448), 1, + ACTIONS(4460), 1, sym_metavariable, - STATE(2273), 1, + STATE(2246), 1, sym_scoped_identifier, - STATE(3339), 1, - sym_attribute, - STATE(3340), 1, + STATE(3350), 1, sym_bracketed_type, - STATE(3366), 1, + STATE(3375), 1, sym_generic_type_with_turbofish, - STATE(1904), 2, + STATE(3538), 1, + sym_attribute, + STATE(1910), 2, sym_line_comment, sym_block_comment, - ACTIONS(4446), 3, + ACTIONS(4458), 3, sym_self, sym_super, sym_crate, - ACTIONS(4444), 19, + ACTIONS(4456), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160556,35 +161155,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59087] = 13, + [59212] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2898), 1, + ACTIONS(2757), 1, anon_sym_COLON_COLON, - ACTIONS(4442), 1, + ACTIONS(4454), 1, sym_identifier, - ACTIONS(4448), 1, + ACTIONS(4460), 1, sym_metavariable, - STATE(2273), 1, + STATE(2246), 1, sym_scoped_identifier, - STATE(3340), 1, + STATE(3350), 1, sym_bracketed_type, - STATE(3366), 1, - sym_generic_type_with_turbofish, - STATE(3430), 1, + STATE(3364), 1, sym_attribute, - STATE(1905), 2, + STATE(3375), 1, + sym_generic_type_with_turbofish, + STATE(1911), 2, sym_line_comment, sym_block_comment, - ACTIONS(4446), 3, + ACTIONS(4458), 3, sym_self, sym_super, sym_crate, - ACTIONS(4444), 19, + ACTIONS(4456), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160604,35 +161203,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59148] = 13, + [59273] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2898), 1, + ACTIONS(2757), 1, anon_sym_COLON_COLON, - ACTIONS(4442), 1, + ACTIONS(4454), 1, sym_identifier, - ACTIONS(4448), 1, + ACTIONS(4460), 1, sym_metavariable, - STATE(2273), 1, + STATE(2246), 1, sym_scoped_identifier, - STATE(3340), 1, + STATE(3350), 1, sym_bracketed_type, - STATE(3366), 1, - sym_generic_type_with_turbofish, - STATE(3404), 1, + STATE(3368), 1, sym_attribute, - STATE(1906), 2, + STATE(3375), 1, + sym_generic_type_with_turbofish, + STATE(1912), 2, sym_line_comment, sym_block_comment, - ACTIONS(4446), 3, + ACTIONS(4458), 3, sym_self, sym_super, sym_crate, - ACTIONS(4444), 19, + ACTIONS(4456), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160652,35 +161251,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59209] = 13, + [59334] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2898), 1, + ACTIONS(2757), 1, anon_sym_COLON_COLON, - ACTIONS(4442), 1, + ACTIONS(4454), 1, sym_identifier, - ACTIONS(4448), 1, + ACTIONS(4460), 1, sym_metavariable, - STATE(2273), 1, + STATE(2246), 1, sym_scoped_identifier, - STATE(3340), 1, + STATE(3350), 1, sym_bracketed_type, - STATE(3366), 1, + STATE(3375), 1, sym_generic_type_with_turbofish, - STATE(3394), 1, + STATE(3447), 1, sym_attribute, - STATE(1907), 2, + STATE(1913), 2, sym_line_comment, sym_block_comment, - ACTIONS(4446), 3, + ACTIONS(4458), 3, sym_self, sym_super, sym_crate, - ACTIONS(4444), 19, + ACTIONS(4456), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160700,33 +161299,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59270] = 12, + [59395] = 12, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4450), 1, + ACTIONS(4462), 1, sym_identifier, - ACTIONS(4454), 1, + ACTIONS(4466), 1, anon_sym_COLON_COLON, - ACTIONS(4458), 1, + ACTIONS(4470), 1, sym_metavariable, - STATE(3106), 1, + STATE(3253), 1, sym_scoped_identifier, - STATE(3343), 1, + STATE(3389), 1, sym_bracketed_type, - STATE(3461), 1, + STATE(3577), 1, sym_generic_type_with_turbofish, - STATE(1908), 2, + STATE(1914), 2, sym_line_comment, sym_block_comment, - ACTIONS(4456), 3, + ACTIONS(4468), 3, sym_self, sym_super, sym_crate, - ACTIONS(4452), 19, + ACTIONS(4464), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160746,33 +161345,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59328] = 12, + [59453] = 12, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4454), 1, + ACTIONS(4466), 1, anon_sym_COLON_COLON, - ACTIONS(4460), 1, + ACTIONS(4472), 1, sym_identifier, - ACTIONS(4466), 1, + ACTIONS(4478), 1, sym_metavariable, - STATE(3178), 1, + STATE(3234), 1, sym_scoped_identifier, - STATE(3343), 1, + STATE(3389), 1, sym_bracketed_type, - STATE(3461), 1, + STATE(3577), 1, sym_generic_type_with_turbofish, - STATE(1909), 2, + STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(4464), 3, + ACTIONS(4476), 3, sym_self, sym_super, sym_crate, - ACTIONS(4462), 19, + ACTIONS(4474), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160792,48 +161391,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59386] = 5, + [59511] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(969), 1, - anon_sym_DOT_DOT, - STATE(1910), 2, + ACTIONS(3278), 1, + anon_sym_COLON, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4482), 1, + anon_sym_BANG, + ACTIONS(4484), 1, + anon_sym_COLON_COLON, + ACTIONS(4486), 1, + anon_sym_LT2, + STATE(1946), 1, + sym_type_arguments, + STATE(1968), 1, + sym_parameters, + STATE(1916), 2, sym_line_comment, sym_block_comment, - ACTIONS(971), 20, + ACTIONS(3274), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, anon_sym_else, - anon_sym_in, - [59422] = 5, + [59559] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(977), 1, + ACTIONS(989), 1, anon_sym_DOT_DOT, - STATE(1911), 2, + STATE(1917), 2, sym_line_comment, sym_block_comment, - ACTIONS(979), 20, + ACTIONS(991), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160854,57 +161459,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [59458] = 11, + [59595] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3270), 1, - anon_sym_COLON, - ACTIONS(4468), 1, - anon_sym_LPAREN, - ACTIONS(4470), 1, - anon_sym_BANG, - ACTIONS(4472), 1, - anon_sym_COLON_COLON, - ACTIONS(4474), 1, - anon_sym_LT2, - STATE(1940), 1, - sym_type_arguments, - STATE(1967), 1, - sym_parameters, - STATE(1912), 2, + ACTIONS(979), 1, + anon_sym_DOT_DOT, + STATE(1918), 2, sym_line_comment, sym_block_comment, - ACTIONS(3266), 14, + ACTIONS(981), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, anon_sym_else, - [59506] = 6, + anon_sym_in, + [59631] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3318), 1, + ACTIONS(3310), 1, anon_sym_COLON, - ACTIONS(3322), 2, + ACTIONS(3314), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1913), 2, + STATE(1919), 2, sym_line_comment, sym_block_comment, - ACTIONS(3316), 17, + ACTIONS(3308), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -160922,27 +161521,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [59543] = 10, + [59668] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3286), 1, + ACTIONS(3288), 1, anon_sym_COLON, - ACTIONS(4468), 1, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(4476), 1, + ACTIONS(4488), 1, anon_sym_COLON_COLON, - STATE(1940), 1, + STATE(1946), 1, sym_type_arguments, - STATE(1967), 1, + STATE(1968), 1, sym_parameters, - STATE(1914), 2, + STATE(1920), 2, sym_line_comment, sym_block_comment, - ACTIONS(3284), 14, + ACTIONS(3286), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160957,20 +161556,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [59588] = 6, + [59713] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3310), 1, + ACTIONS(3326), 1, anon_sym_COLON, - ACTIONS(3314), 2, + ACTIONS(3330), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1915), 2, + STATE(1921), 2, sym_line_comment, sym_block_comment, - ACTIONS(3308), 17, + ACTIONS(3324), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -160988,27 +161587,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [59625] = 10, + [59750] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3280), 1, + ACTIONS(3298), 1, anon_sym_COLON, - ACTIONS(4468), 1, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(4476), 1, + ACTIONS(4488), 1, anon_sym_COLON_COLON, - STATE(1940), 1, + STATE(1946), 1, sym_type_arguments, - STATE(1967), 1, + STATE(1968), 1, sym_parameters, - STATE(1916), 2, + STATE(1922), 2, sym_line_comment, sym_block_comment, - ACTIONS(3278), 14, + ACTIONS(3296), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161023,36 +161622,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [59670] = 14, + [59795] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4470), 1, + ACTIONS(4482), 1, anon_sym_BANG, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(4480), 1, + ACTIONS(4492), 1, anon_sym_LPAREN, - ACTIONS(4482), 1, + ACTIONS(4494), 1, anon_sym_LBRACE, - ACTIONS(4484), 1, + ACTIONS(4496), 1, anon_sym_COLON, - ACTIONS(4486), 1, + ACTIONS(4498), 1, anon_sym_AT, - ACTIONS(4488), 1, + ACTIONS(4500), 1, anon_sym_DOT_DOT, - ACTIONS(4492), 1, + ACTIONS(4504), 1, anon_sym_COLON_COLON, - STATE(1940), 1, + STATE(1946), 1, sym_type_arguments, - ACTIONS(4490), 2, + ACTIONS(4502), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1917), 2, + STATE(1923), 2, sym_line_comment, sym_block_comment, - ACTIONS(4478), 9, + ACTIONS(4490), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161062,22 +161661,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [59723] = 6, + [59848] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3334), 1, + ACTIONS(3294), 1, anon_sym_COLON, - ACTIONS(3338), 2, - anon_sym_BANG, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4488), 1, anon_sym_COLON_COLON, - STATE(1918), 2, + STATE(1946), 1, + sym_type_arguments, + STATE(1968), 1, + sym_parameters, + STATE(1924), 2, sym_line_comment, sym_block_comment, - ACTIONS(3332), 17, + ACTIONS(3292), 14, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -161089,24 +161694,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_LT2, - [59760] = 6, + [59893] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3298), 1, + ACTIONS(3302), 1, anon_sym_COLON, - ACTIONS(3302), 2, + ACTIONS(3306), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1919), 2, + STATE(1925), 2, sym_line_comment, sym_block_comment, - ACTIONS(3296), 17, + ACTIONS(3300), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -161124,28 +161727,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [59797] = 10, + [59930] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3290), 1, + ACTIONS(3338), 1, anon_sym_COLON, - ACTIONS(4468), 1, - anon_sym_LPAREN, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4476), 1, + ACTIONS(3342), 2, + anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1940), 1, - sym_type_arguments, - STATE(1967), 1, - sym_parameters, - STATE(1920), 2, + STATE(1926), 2, sym_line_comment, sym_block_comment, - ACTIONS(3288), 14, + ACTIONS(3336), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -161157,55 +161754,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [59842] = 6, + anon_sym_LT2, + [59967] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3320), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1921), 2, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4486), 1, + anon_sym_LT2, + STATE(1945), 1, + sym_type_arguments, + STATE(1953), 1, + sym_parameters, + STATE(1927), 2, sym_line_comment, sym_block_comment, - ACTIONS(3316), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3322), 14, + ACTIONS(3332), 15, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, anon_sym_else, - anon_sym_in, - [59878] = 8, + [60007] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - STATE(1939), 1, + STATE(1945), 1, sym_type_arguments, - STATE(1956), 1, + STATE(1953), 1, sym_parameters, - STATE(1922), 2, + STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(3328), 15, + ACTIONS(3316), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161221,55 +161822,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [59918] = 8, + [60047] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - ACTIONS(4474), 1, - anon_sym_LT2, - STATE(1939), 1, - sym_type_arguments, - STATE(1956), 1, - sym_parameters, - STATE(1923), 2, + ACTIONS(3340), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(3324), 15, + ACTIONS(3336), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3342), 14, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, + anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, + anon_sym_COLON_COLON, anon_sym_else, - [59958] = 8, + anon_sym_in, + [60083] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - STATE(1939), 1, + STATE(1945), 1, sym_type_arguments, - STATE(1956), 1, + STATE(1953), 1, sym_parameters, - STATE(1924), 2, + STATE(1930), 2, sym_line_comment, sym_block_comment, - ACTIONS(3304), 15, + ACTIONS(3344), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161285,7 +161884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [59998] = 6, + [60123] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -161293,7 +161892,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3312), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1925), 2, + STATE(1931), 2, sym_line_comment, sym_block_comment, ACTIONS(3308), 3, @@ -161315,52 +161914,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [60034] = 6, + [60159] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3336), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1926), 2, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4486), 1, + anon_sym_LT2, + STATE(1945), 1, + sym_type_arguments, + STATE(1953), 1, + sym_parameters, + STATE(1932), 2, sym_line_comment, sym_block_comment, - ACTIONS(3332), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3338), 14, + ACTIONS(3320), 15, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, anon_sym_else, - anon_sym_in, - [60070] = 6, + [60199] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3300), 2, + ACTIONS(3328), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1927), 2, + STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(3296), 3, + ACTIONS(3324), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3302), 14, + ACTIONS(3330), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -161375,49 +161976,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [60106] = 8, + [60235] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - ACTIONS(4474), 1, - anon_sym_LT2, - STATE(1939), 1, - sym_type_arguments, - STATE(1956), 1, - sym_parameters, - STATE(1928), 2, + ACTIONS(3304), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(1934), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 15, + ACTIONS(3300), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3306), 14, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, + anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, + anon_sym_COLON_COLON, anon_sym_else, - [60146] = 5, + anon_sym_in, + [60271] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3474), 1, + ACTIONS(3471), 1, anon_sym_COLON, - STATE(1929), 2, + STATE(1935), 2, sym_line_comment, sym_block_comment, - ACTIONS(3472), 17, + ACTIONS(3469), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -161435,102 +162034,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [60179] = 5, + [60304] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3466), 1, + ACTIONS(3340), 2, anon_sym_COLON, - STATE(1930), 2, + anon_sym_DOT_DOT, + STATE(1936), 2, sym_line_comment, sym_block_comment, - ACTIONS(3464), 17, + ACTIONS(3342), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - [60212] = 5, + anon_sym_in, + [60337] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3452), 1, + ACTIONS(3328), 2, anon_sym_COLON, - STATE(1931), 2, + anon_sym_DOT_DOT, + STATE(1937), 2, sym_line_comment, sym_block_comment, - ACTIONS(3450), 17, + ACTIONS(3330), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - [60245] = 5, + anon_sym_in, + [60370] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3336), 2, + ACTIONS(3437), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1932), 2, + STATE(1938), 2, sym_line_comment, sym_block_comment, - ACTIONS(3338), 16, + ACTIONS(3435), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, - anon_sym_in, - [60278] = 5, + [60403] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3300), 2, + ACTIONS(3312), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1933), 2, + STATE(1939), 2, sym_line_comment, sym_block_comment, - ACTIONS(3302), 16, + ACTIONS(3314), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -161547,74 +162146,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [60311] = 5, + [60436] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3312), 2, + ACTIONS(3463), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1934), 2, + STATE(1940), 2, sym_line_comment, sym_block_comment, - ACTIONS(3314), 16, + ACTIONS(3461), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, - anon_sym_in, - [60344] = 5, + [60469] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3482), 1, - anon_sym_COLON, - STATE(1935), 2, + STATE(1941), 2, sym_line_comment, sym_block_comment, - ACTIONS(3480), 17, + ACTIONS(3308), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_for, anon_sym_where, anon_sym_else, - [60377] = 5, + anon_sym_LT2, + [60500] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3320), 2, + ACTIONS(3304), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1936), 2, + STATE(1942), 2, sym_line_comment, sym_block_comment, - ACTIONS(3322), 16, + ACTIONS(3306), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -161631,78 +162229,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [60410] = 4, + [60533] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1937), 2, + ACTIONS(3455), 1, + anon_sym_COLON, + STATE(1943), 2, sym_line_comment, sym_block_comment, - ACTIONS(3296), 18, + ACTIONS(3453), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_LT2, - [60441] = 12, + [60566] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4496), 1, + ACTIONS(3568), 1, anon_sym_COLON, - ACTIONS(4498), 1, - anon_sym_BANG, - ACTIONS(4500), 1, - anon_sym_DOT_DOT, - ACTIONS(4504), 1, - anon_sym_COLON_COLON, - STATE(1943), 1, - sym_type_arguments, - ACTIONS(4502), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1938), 2, + STATE(1944), 2, sym_line_comment, sym_block_comment, - ACTIONS(4494), 3, + ACTIONS(3566), 16, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(3359), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [60487] = 5, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + [60598] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3386), 1, + ACTIONS(3373), 1, anon_sym_COLON, - STATE(1939), 2, + STATE(1945), 2, sym_line_comment, sym_block_comment, - ACTIONS(3384), 16, + ACTIONS(3371), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161719,17 +162311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [60519] = 5, + [60630] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, + ACTIONS(3451), 1, anon_sym_COLON, - STATE(1940), 2, + STATE(1946), 2, sym_line_comment, sym_block_comment, - ACTIONS(3380), 16, + ACTIONS(3449), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161746,71 +162338,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [60551] = 19, + [60662] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4486), 1, + anon_sym_LT2, ACTIONS(4508), 1, - anon_sym_const, + anon_sym_COLON, ACTIONS(4510), 1, - anon_sym_enum, + anon_sym_BANG, ACTIONS(4512), 1, + anon_sym_DOT_DOT, + ACTIONS(4516), 1, + anon_sym_COLON_COLON, + STATE(1944), 1, + sym_type_arguments, + ACTIONS(4514), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1947), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4506), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(3367), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [60708] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4520), 1, + anon_sym_const, + ACTIONS(4522), 1, + anon_sym_enum, + ACTIONS(4524), 1, anon_sym_fn, - ACTIONS(4514), 1, + ACTIONS(4526), 1, anon_sym_mod, - ACTIONS(4516), 1, + ACTIONS(4528), 1, anon_sym_static, - ACTIONS(4518), 1, + ACTIONS(4530), 1, anon_sym_struct, - ACTIONS(4520), 1, + ACTIONS(4532), 1, anon_sym_trait, - ACTIONS(4522), 1, + ACTIONS(4534), 1, anon_sym_type, - ACTIONS(4524), 1, + ACTIONS(4536), 1, anon_sym_union, - ACTIONS(4526), 1, + ACTIONS(4538), 1, anon_sym_unsafe, - ACTIONS(4528), 1, + ACTIONS(4540), 1, anon_sym_use, - ACTIONS(4530), 1, + ACTIONS(4542), 1, anon_sym_extern, - STATE(2157), 1, + STATE(2166), 1, sym_extern_modifier, - STATE(2222), 1, + STATE(2233), 1, aux_sym_function_modifiers_repeat1, - STATE(3364), 1, + STATE(3338), 1, sym_function_modifiers, - ACTIONS(4506), 2, + ACTIONS(4518), 2, anon_sym_async, anon_sym_default, - STATE(1941), 2, + STATE(1948), 2, sym_line_comment, sym_block_comment, - [60611] = 11, + [60768] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(4496), 1, + ACTIONS(4508), 1, anon_sym_COLON, - ACTIONS(4498), 1, + ACTIONS(4510), 1, anon_sym_BANG, - ACTIONS(4500), 1, + ACTIONS(4512), 1, anon_sym_DOT_DOT, - ACTIONS(4532), 1, + ACTIONS(4544), 1, anon_sym_COLON_COLON, - STATE(1943), 1, + STATE(1944), 1, sym_type_arguments, - ACTIONS(4502), 2, + ACTIONS(4514), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1942), 2, + STATE(1949), 2, sym_line_comment, sym_block_comment, - ACTIONS(4494), 9, + ACTIONS(4506), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161820,121 +162446,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [60655] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3378), 1, - anon_sym_COLON, - STATE(1943), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3376), 16, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - [60687] = 19, + [60812] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4534), 1, + ACTIONS(4546), 1, anon_sym_const, - ACTIONS(4536), 1, + ACTIONS(4548), 1, anon_sym_enum, - ACTIONS(4538), 1, + ACTIONS(4550), 1, anon_sym_fn, - ACTIONS(4540), 1, + ACTIONS(4552), 1, anon_sym_mod, - ACTIONS(4542), 1, + ACTIONS(4554), 1, anon_sym_static, - ACTIONS(4544), 1, + ACTIONS(4556), 1, anon_sym_struct, - ACTIONS(4546), 1, + ACTIONS(4558), 1, anon_sym_trait, - ACTIONS(4548), 1, + ACTIONS(4560), 1, anon_sym_type, - ACTIONS(4550), 1, + ACTIONS(4562), 1, anon_sym_union, - ACTIONS(4552), 1, + ACTIONS(4564), 1, anon_sym_unsafe, - ACTIONS(4554), 1, + ACTIONS(4566), 1, anon_sym_use, - ACTIONS(4556), 1, + ACTIONS(4568), 1, anon_sym_extern, - STATE(2175), 1, + STATE(2154), 1, sym_extern_modifier, - STATE(2222), 1, + STATE(2233), 1, aux_sym_function_modifiers_repeat1, - STATE(3616), 1, + STATE(3582), 1, sym_function_modifiers, - ACTIONS(4506), 2, + ACTIONS(4518), 2, anon_sym_async, anon_sym_default, - STATE(1944), 2, + STATE(1950), 2, sym_line_comment, sym_block_comment, - [60747] = 17, + [60872] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3266), 1, + STATE(1951), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3473), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, - ACTIONS(4470), 1, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [60901] = 16, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4482), 1, anon_sym_BANG, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(4478), 1, + ACTIONS(4490), 1, anon_sym_PIPE, - ACTIONS(4482), 1, + ACTIONS(4494), 1, anon_sym_LBRACE, - ACTIONS(4484), 1, + ACTIONS(4496), 1, anon_sym_COLON, - ACTIONS(4486), 1, + ACTIONS(4498), 1, anon_sym_AT, - ACTIONS(4488), 1, + ACTIONS(4500), 1, anon_sym_DOT_DOT, - ACTIONS(4558), 1, + ACTIONS(4570), 1, anon_sym_LPAREN, - ACTIONS(4563), 1, + ACTIONS(4572), 1, anon_sym_COLON_COLON, - STATE(1940), 1, + STATE(1946), 1, sym_type_arguments, - STATE(1967), 1, + STATE(1968), 1, sym_parameters, - ACTIONS(4490), 2, + ACTIONS(4502), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4560), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(1945), 2, + STATE(1952), 2, sym_line_comment, sym_block_comment, - [60802] = 4, + ACTIONS(3274), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [60954] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1946), 2, + ACTIONS(4574), 1, + anon_sym_DASH_GT, + STATE(1953), 2, sym_line_comment, sym_block_comment, - ACTIONS(3476), 16, + ACTIONS(3405), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161946,53 +162571,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [60831] = 6, + [60985] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3326), 1, - anon_sym_COLON, - ACTIONS(4565), 1, - anon_sym_COLON_COLON, - STATE(1947), 2, + STATE(1954), 2, sym_line_comment, sym_block_comment, - ACTIONS(3324), 14, + ACTIONS(3445), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [60864] = 4, + [61014] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1948), 2, + ACTIONS(3346), 1, + anon_sym_COLON, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(1317), 16, + ACTIONS(3344), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -162002,25 +162627,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [60893] = 6, + [61047] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3306), 1, - anon_sym_COLON, - ACTIONS(4565), 1, - anon_sym_COLON_COLON, - STATE(1949), 2, + STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(3304), 14, + ACTIONS(1293), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -162030,21 +162651,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60926] = 4, + anon_sym_in, + [61076] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1950), 2, + ACTIONS(3334), 1, + anon_sym_COLON, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + STATE(1957), 2, sym_line_comment, sym_block_comment, - ACTIONS(1047), 16, + ACTIONS(3332), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -162054,16 +162679,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [60955] = 4, + [61109] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1951), 2, + STATE(1958), 2, sym_line_comment, sym_block_comment, - ACTIONS(3468), 16, + ACTIONS(1043), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162075,22 +162699,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [60984] = 5, + anon_sym_in, + [61138] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4567), 1, + ACTIONS(4578), 1, anon_sym_LPAREN, - STATE(1952), 2, + STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(4004), 15, + ACTIONS(4026), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -162106,133 +162730,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [61015] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1953), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3454), 16, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [61044] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4498), 1, - anon_sym_BANG, - ACTIONS(4500), 1, - anon_sym_DOT_DOT, - ACTIONS(4569), 1, - anon_sym_COLON_COLON, - STATE(1943), 1, - sym_type_arguments, - ACTIONS(4502), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1954), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4494), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(3359), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [61087] = 6, + [61169] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3294), 1, + ACTIONS(3322), 1, anon_sym_COLON, - ACTIONS(4571), 1, + ACTIONS(4576), 1, anon_sym_COLON_COLON, - STATE(1955), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3292), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [61120] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4573), 1, - anon_sym_DASH_GT, - STATE(1956), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3424), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [61151] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4575), 1, - anon_sym_DASH_GT, - STATE(1957), 2, + STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 15, + ACTIONS(3320), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -162242,52 +162757,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61182] = 16, + [61202] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4470), 1, - anon_sym_BANG, - ACTIONS(4474), 1, - anon_sym_LT2, ACTIONS(4482), 1, - anon_sym_LBRACE, - ACTIONS(4486), 1, - anon_sym_AT, - ACTIONS(4488), 1, - anon_sym_DOT_DOT, - ACTIONS(4560), 1, - anon_sym_RBRACK, - ACTIONS(4577), 1, + anon_sym_BANG, + ACTIONS(4492), 1, anon_sym_LPAREN, - ACTIONS(4579), 1, + ACTIONS(4496), 1, + anon_sym_COLON, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(4580), 1, anon_sym_COLON_COLON, - STATE(1940), 1, - sym_type_arguments, - STATE(1967), 1, - sym_parameters, - ACTIONS(3266), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4478), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4490), 2, + ACTIONS(4502), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1958), 2, + STATE(1961), 2, sym_line_comment, sym_block_comment, - [61235] = 4, + ACTIONS(4490), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [61243] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1959), 2, + ACTIONS(4582), 1, + anon_sym_DASH_GT, + STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(3432), 16, + ACTIONS(3570), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162299,29 +162810,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61264] = 6, + [61274] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3294), 1, - anon_sym_COLON, - ACTIONS(4581), 1, - anon_sym_COLON_COLON, - STATE(1960), 2, + ACTIONS(4584), 1, + anon_sym_DASH_GT, + STATE(1963), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 14, + ACTIONS(3415), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -162331,24 +162840,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61297] = 6, + [61305] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3330), 1, - anon_sym_COLON, - ACTIONS(4565), 1, - anon_sym_COLON_COLON, - STATE(1961), 2, + ACTIONS(4586), 1, + anon_sym_DASH_GT, + STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(3328), 14, + ACTIONS(3427), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -162358,17 +162866,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61330] = 5, + [61336] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4583), 1, - anon_sym_DASH_GT, - STATE(1962), 2, + STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 15, + ACTIONS(1365), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162384,19 +162890,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61361] = 6, + anon_sym_in, + [61365] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3294), 1, + ACTIONS(3334), 1, anon_sym_COLON, - ACTIONS(4565), 1, + ACTIONS(4588), 1, anon_sym_COLON_COLON, - STATE(1963), 2, + STATE(1966), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 14, + ACTIONS(3332), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162411,17 +162918,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61394] = 5, + [61398] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4585), 1, - anon_sym_DASH_GT, - STATE(1964), 2, + STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(3412), 15, + ACTIONS(1047), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162437,15 +162942,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61425] = 4, + anon_sym_in, + [61427] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1965), 2, + ACTIONS(4590), 1, + anon_sym_DASH_GT, + STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(1035), 16, + ACTIONS(3399), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162461,55 +162969,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [61454] = 16, + [61458] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4470), 1, + ACTIONS(3274), 1, + anon_sym_PLUS, + ACTIONS(4482), 1, anon_sym_BANG, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(4478), 1, + ACTIONS(4490), 1, anon_sym_PIPE, - ACTIONS(4482), 1, + ACTIONS(4494), 1, anon_sym_LBRACE, - ACTIONS(4484), 1, + ACTIONS(4496), 1, anon_sym_COLON, - ACTIONS(4486), 1, + ACTIONS(4498), 1, anon_sym_AT, - ACTIONS(4488), 1, + ACTIONS(4500), 1, anon_sym_DOT_DOT, - ACTIONS(4587), 1, + ACTIONS(4592), 1, anon_sym_LPAREN, - ACTIONS(4589), 1, + ACTIONS(4597), 1, anon_sym_COLON_COLON, - STATE(1940), 1, + STATE(1946), 1, sym_type_arguments, - STATE(1967), 1, + STATE(1968), 1, sym_parameters, - ACTIONS(4490), 2, + ACTIONS(4502), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1966), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3266), 3, + ACTIONS(4594), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [61507] = 5, + STATE(1969), 2, + sym_line_comment, + sym_block_comment, + [61513] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4591), 1, + ACTIONS(4599), 1, anon_sym_DASH_GT, - STATE(1967), 2, + STATE(1970), 2, sym_line_comment, sym_block_comment, - ACTIONS(3418), 15, + ACTIONS(3375), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162525,15 +163033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61538] = 4, + [61544] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1968), 2, + STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(3484), 16, + ACTIONS(3465), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162550,23 +163058,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61567] = 5, + [61573] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4593), 1, - anon_sym_DASH_GT, - STATE(1969), 2, + ACTIONS(3318), 1, + anon_sym_COLON, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + STATE(1972), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 15, + ACTIONS(3316), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -162576,17 +163085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61598] = 5, + [61606] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_DASH_GT, - STATE(1970), 2, + STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 15, + ACTIONS(3411), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162598,50 +163105,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61629] = 10, + [61635] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4470), 1, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4510), 1, anon_sym_BANG, - ACTIONS(4480), 1, - anon_sym_LPAREN, - ACTIONS(4484), 1, - anon_sym_COLON, - ACTIONS(4488), 1, + ACTIONS(4512), 1, anon_sym_DOT_DOT, - ACTIONS(4597), 1, + ACTIONS(4601), 1, anon_sym_COLON_COLON, - ACTIONS(4490), 2, + STATE(1944), 1, + sym_type_arguments, + ACTIONS(4514), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1971), 2, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(4478), 9, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4506), 3, anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [61670] = 4, + ACTIONS(3367), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [61678] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1972), 2, + ACTIONS(4603), 1, + anon_sym_DASH_GT, + STATE(1975), 2, sym_line_comment, sym_block_comment, - ACTIONS(1341), 16, + ACTIONS(3421), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162657,40 +163168,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [61699] = 4, + [61709] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1973), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3646), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4482), 1, + anon_sym_BANG, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4494), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(4498), 1, + anon_sym_AT, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(4594), 1, + anon_sym_RBRACK, + ACTIONS(4605), 1, + anon_sym_LPAREN, + ACTIONS(4607), 1, + anon_sym_COLON_COLON, + STATE(1946), 1, + sym_type_arguments, + STATE(1968), 1, + sym_parameters, + ACTIONS(3274), 2, + anon_sym_SEMI, anon_sym_PLUS, + ACTIONS(4490), 2, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [61727] = 4, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1976), 2, + sym_line_comment, + sym_block_comment, + [61762] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1974), 2, + STATE(1977), 2, sym_line_comment, sym_block_comment, - ACTIONS(3328), 15, + ACTIONS(3457), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162702,25 +163225,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61755] = 4, + [61791] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1975), 2, + ACTIONS(3334), 1, + anon_sym_COLON, + ACTIONS(4609), 1, + anon_sym_COLON_COLON, + STATE(1978), 2, sym_line_comment, sym_block_comment, - ACTIONS(3572), 15, + ACTIONS(3332), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -162730,15 +163257,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61783] = 4, + [61824] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1976), 2, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(3576), 15, + ACTIONS(3662), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162754,15 +163281,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61811] = 4, + [61852] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1977), 2, + STATE(1980), 2, sym_line_comment, sym_block_comment, - ACTIONS(3584), 15, + ACTIONS(3608), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162778,15 +163305,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61839] = 4, + [61880] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1978), 2, + STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(3704), 15, + ACTIONS(3654), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162802,15 +163329,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61867] = 4, + [61908] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1979), 2, + STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(3628), 15, + ACTIONS(3344), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162826,47 +163353,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61895] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4494), 1, - anon_sym_PIPE, - ACTIONS(4496), 1, - anon_sym_COLON, - ACTIONS(4498), 1, - anon_sym_BANG, - ACTIONS(4500), 1, - anon_sym_DOT_DOT, - ACTIONS(4599), 1, - anon_sym_COLON_COLON, - STATE(1943), 1, - sym_type_arguments, - ACTIONS(4502), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1980), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3359), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [61939] = 4, + [61936] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1981), 2, + STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(3620), 15, + ACTIONS(3316), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162882,39 +163377,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61967] = 4, + [61964] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1982), 2, + STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(3592), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [61995] = 4, + ACTIONS(4014), 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, + [61992] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1983), 2, + STATE(1985), 2, sym_line_comment, sym_block_comment, - ACTIONS(3592), 15, + ACTIONS(3674), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162930,15 +163425,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62023] = 4, + [62020] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1984), 2, + STATE(1986), 2, sym_line_comment, sym_block_comment, - ACTIONS(3612), 15, + ACTIONS(3666), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162954,15 +163449,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62051] = 4, + [62048] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1985), 2, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 15, + ACTIONS(3580), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162978,15 +163473,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62079] = 4, + [62076] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1986), 2, + STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(3616), 15, + ACTIONS(3576), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163002,15 +163497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62107] = 4, + [62104] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1987), 2, + STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(3324), 15, + ACTIONS(3906), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163026,17 +163521,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62135] = 5, + [62132] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 1, + ACTIONS(3922), 1, anon_sym_COLON_COLON, - STATE(1988), 2, + STATE(1990), 2, sym_line_comment, sym_block_comment, - ACTIONS(4009), 14, + ACTIONS(4028), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -163051,39 +163546,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [62165] = 4, + [62162] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1989), 2, + STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(4011), 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, - [62193] = 4, + ACTIONS(3658), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [62190] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1990), 2, + STATE(1992), 2, sym_line_comment, sym_block_comment, - ACTIONS(4015), 15, + ACTIONS(4018), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -163099,15 +163594,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [62221] = 4, + [62218] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1991), 2, + STATE(1993), 2, sym_line_comment, sym_block_comment, - ACTIONS(3650), 15, + ACTIONS(3320), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163123,15 +163618,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62249] = 4, + [62246] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1992), 2, + STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(3906), 15, + ACTIONS(3628), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163147,15 +163642,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62277] = 4, + [62274] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1993), 2, + STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(3766), 15, + ACTIONS(3584), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163171,15 +163666,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62305] = 4, + [62302] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1994), 2, + STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(3624), 15, + ACTIONS(3588), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163195,40 +163690,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62333] = 5, + [62330] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4601), 1, - anon_sym_COLON_COLON, - STATE(1995), 2, + STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(4009), 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, - [62363] = 4, + ACTIONS(3592), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [62358] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1996), 2, + STATE(1998), 2, sym_line_comment, sym_block_comment, - ACTIONS(3708), 15, + ACTIONS(3604), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163244,15 +163738,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62391] = 4, + [62386] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1997), 2, + STATE(1999), 2, sym_line_comment, sym_block_comment, - ACTIONS(3664), 15, + ACTIONS(3670), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163268,15 +163762,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62419] = 4, + [62414] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1998), 2, + STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(3668), 15, + ACTIONS(3596), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163292,15 +163786,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62447] = 4, + [62442] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1999), 2, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4506), 1, + anon_sym_PIPE, + ACTIONS(4508), 1, + anon_sym_COLON, + ACTIONS(4510), 1, + anon_sym_BANG, + ACTIONS(4512), 1, + anon_sym_DOT_DOT, + ACTIONS(4611), 1, + anon_sym_COLON_COLON, + STATE(1944), 1, + sym_type_arguments, + ACTIONS(4514), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(3730), 15, + ACTIONS(3367), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [62486] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2002), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3720), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163316,15 +163842,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62475] = 4, + [62514] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2000), 2, + STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(3676), 15, + ACTIONS(3640), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163340,15 +163866,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62503] = 4, + [62542] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2001), 2, + ACTIONS(4613), 1, + anon_sym_COLON_COLON, + STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(4019), 15, + ACTIONS(4028), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -163363,16 +163891,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [62531] = 4, + [62572] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2002), 2, + STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(3748), 15, + ACTIONS(3636), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163388,15 +163915,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62559] = 4, + [62600] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2003), 2, + STATE(2006), 2, sym_line_comment, sym_block_comment, - ACTIONS(3304), 15, + ACTIONS(3648), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163412,15 +163939,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62587] = 4, + [62628] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2004), 2, + STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(3580), 15, + ACTIONS(4022), 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, + [62656] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2008), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3332), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163436,67 +163987,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62615] = 5, + [62684] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(973), 1, - anon_sym_DOT_DOT, - STATE(2005), 2, + STATE(2009), 2, sym_line_comment, sym_block_comment, - ACTIONS(975), 13, + ACTIONS(3624), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, anon_sym_else, - anon_sym_in, - [62644] = 5, + [62712] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(965), 1, - anon_sym_DOT_DOT, - STATE(2006), 2, + STATE(2010), 2, sym_line_comment, sym_block_comment, - ACTIONS(967), 13, + ACTIONS(3604), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, anon_sym_else, - anon_sym_in, - [62673] = 6, + [62740] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4605), 1, + ACTIONS(4617), 1, anon_sym_pat, - STATE(148), 1, + STATE(174), 1, sym_fragment_specifier, - STATE(2007), 2, + STATE(2011), 2, sym_line_comment, sym_block_comment, - ACTIONS(4603), 12, + ACTIONS(4615), 12, anon_sym_block, anon_sym_expr, anon_sym_ident, @@ -163509,59 +164060,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_tt, anon_sym_ty, anon_sym_vis, - [62704] = 16, + [62771] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(897), 1, + anon_sym_DOT_DOT, + STATE(2012), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(899), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [62800] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(985), 1, + anon_sym_DOT_DOT, + STATE(2013), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(987), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [62829] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4470), 1, + ACTIONS(4482), 1, anon_sym_BANG, - ACTIONS(4472), 1, + ACTIONS(4484), 1, anon_sym_COLON_COLON, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(4607), 1, + ACTIONS(4619), 1, anon_sym_COLON, - ACTIONS(4609), 1, + ACTIONS(4621), 1, anon_sym_EQ, - ACTIONS(4611), 1, + ACTIONS(4623), 1, anon_sym_GT, - ACTIONS(4613), 1, + ACTIONS(4625), 1, anon_sym_COMMA, - STATE(1940), 1, + STATE(1946), 1, sym_type_arguments, - STATE(1967), 1, + STATE(1968), 1, sym_parameters, - STATE(2765), 1, - aux_sym_type_parameters_repeat1, - STATE(3026), 1, + STATE(2830), 1, sym_trait_bounds, - ACTIONS(3266), 2, + STATE(2831), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3274), 2, anon_sym_PLUS, anon_sym_as, - STATE(2008), 2, + STATE(2014), 2, sym_line_comment, sym_block_comment, - [62755] = 8, + [62880] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4496), 1, + ACTIONS(4508), 1, anon_sym_COLON, - ACTIONS(4500), 1, + ACTIONS(4512), 1, anon_sym_DOT_DOT, - ACTIONS(4532), 1, + ACTIONS(4544), 1, anon_sym_COLON_COLON, - ACTIONS(4502), 2, + ACTIONS(4514), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2009), 2, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(4494), 9, + ACTIONS(4506), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163571,92 +164170,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [62790] = 7, + [62915] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3336), 2, + ACTIONS(3304), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2010), 2, + STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(3332), 3, + ACTIONS(3300), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4615), 3, + ACTIONS(4627), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3338), 5, + ACTIONS(3306), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [62822] = 7, + [62947] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4618), 1, - anon_sym_LPAREN, - ACTIONS(3300), 2, - anon_sym_COLON, + ACTIONS(3340), 1, anon_sym_DOT_DOT, - STATE(2011), 2, + ACTIONS(4630), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2017), 2, sym_line_comment, sym_block_comment, - ACTIONS(3296), 5, - anon_sym_RPAREN, + ACTIONS(3336), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3302), 5, + ACTIONS(3342), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [62854] = 7, + [62979] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3312), 2, - anon_sym_COLON, + ACTIONS(4500), 1, anon_sym_DOT_DOT, - STATE(2012), 2, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2018), 2, sym_line_comment, sym_block_comment, - ACTIONS(3308), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4621), 3, - anon_sym_LPAREN, + ACTIONS(4490), 10, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3314), 5, - anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [62886] = 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [63009] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4621), 1, + ACTIONS(4633), 1, anon_sym_LPAREN, ACTIONS(3312), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2013), 2, + STATE(2019), 2, sym_line_comment, sym_block_comment, ACTIONS(3308), 5, @@ -163671,67 +164269,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [62918] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3320), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2014), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3316), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4624), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3322), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [62950] = 7, + [63041] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3300), 2, + ACTIONS(3340), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2015), 2, + STATE(2020), 2, sym_line_comment, sym_block_comment, - ACTIONS(3296), 3, + ACTIONS(3336), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4618), 3, + ACTIONS(4630), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3302), 5, + ACTIONS(3342), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [62982] = 5, + [63073] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4629), 1, + ACTIONS(4638), 1, anon_sym_DOT_DOT, - STATE(2016), 2, + STATE(2021), 2, sym_line_comment, sym_block_comment, - ACTIONS(4627), 12, + ACTIONS(4636), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163744,832 +164317,794 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [63010] = 6, + [63101] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4488), 1, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4640), 1, + anon_sym_LPAREN, + ACTIONS(4642), 1, + anon_sym_LBRACE, + ACTIONS(4644), 1, + anon_sym_BANG, + ACTIONS(4646), 1, + anon_sym_AT, + ACTIONS(4648), 1, anon_sym_DOT_DOT, - ACTIONS(4490), 2, + ACTIONS(4652), 1, + anon_sym_COLON_COLON, + STATE(1946), 1, + sym_type_arguments, + ACTIONS(4650), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2017), 2, + STATE(2022), 2, sym_line_comment, sym_block_comment, - ACTIONS(4478), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(4490), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [63040] = 7, + anon_sym_if, + [63145] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4624), 1, + ACTIONS(4654), 1, anon_sym_LPAREN, - ACTIONS(3320), 2, + ACTIONS(3328), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2018), 2, + STATE(2023), 2, sym_line_comment, sym_block_comment, - ACTIONS(3316), 5, + ACTIONS(3324), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3322), 5, + ACTIONS(3330), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63072] = 5, + [63177] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4633), 1, + ACTIONS(4627), 1, + anon_sym_LPAREN, + ACTIONS(3304), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2019), 2, + STATE(2024), 2, sym_line_comment, sym_block_comment, - ACTIONS(4631), 12, - anon_sym_SEMI, + ACTIONS(3300), 5, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3306), 5, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [63100] = 7, + anon_sym_COLON_COLON, + [63209] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3312), 1, + ACTIONS(3304), 1, anon_sym_DOT_DOT, - ACTIONS(4621), 2, + ACTIONS(4627), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2020), 2, + STATE(2025), 2, sym_line_comment, sym_block_comment, - ACTIONS(3308), 4, + ACTIONS(3300), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3314), 6, + ACTIONS(3306), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [63132] = 7, + [63241] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3300), 1, + ACTIONS(3312), 1, anon_sym_DOT_DOT, - ACTIONS(4618), 2, + ACTIONS(4633), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2021), 2, + STATE(2026), 2, sym_line_comment, sym_block_comment, - ACTIONS(3296), 4, + ACTIONS(3308), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3302), 6, + ACTIONS(3314), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [63164] = 13, + [63273] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, + ACTIONS(3312), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2027), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3308), 3, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4635), 1, + ACTIONS(4633), 3, anon_sym_LPAREN, - ACTIONS(4637), 1, - anon_sym_LBRACE, - ACTIONS(4639), 1, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3314), 5, anon_sym_BANG, - ACTIONS(4641), 1, - anon_sym_AT, - ACTIONS(4643), 1, - anon_sym_DOT_DOT, - ACTIONS(4647), 1, - anon_sym_COLON_COLON, - STATE(1940), 1, - sym_type_arguments, - ACTIONS(4645), 2, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2022), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4478), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [63208] = 7, + anon_sym_COLON_COLON, + [63305] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3320), 1, + ACTIONS(3328), 1, anon_sym_DOT_DOT, - ACTIONS(4624), 2, + ACTIONS(4654), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2023), 2, + STATE(2028), 2, sym_line_comment, sym_block_comment, - ACTIONS(3316), 4, + ACTIONS(3324), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3322), 6, + ACTIONS(3330), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [63240] = 7, + [63337] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3336), 1, - anon_sym_DOT_DOT, - ACTIONS(4615), 2, + ACTIONS(4630), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2024), 2, + ACTIONS(3340), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2029), 2, sym_line_comment, sym_block_comment, - ACTIONS(3332), 4, - anon_sym_SEMI, + ACTIONS(3336), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3338), 6, + ACTIONS(3342), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [63272] = 7, + [63369] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4615), 1, - anon_sym_LPAREN, - ACTIONS(3336), 2, + ACTIONS(3328), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2025), 2, + STATE(2030), 2, sym_line_comment, sym_block_comment, - ACTIONS(3332), 5, - anon_sym_RPAREN, + ACTIONS(3324), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3338), 5, + ACTIONS(4654), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3330), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63304] = 14, + [63401] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, - anon_sym_POUND, - ACTIONS(2982), 1, - anon_sym_SQUOTE, - ACTIONS(4649), 1, - sym_identifier, - ACTIONS(4651), 1, - anon_sym_GT, - ACTIONS(4653), 1, - anon_sym_const, - ACTIONS(4655), 1, - sym_metavariable, - STATE(1479), 1, - sym_attribute_item, - STATE(2048), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2701), 1, - sym_lifetime, - STATE(2969), 1, - sym_constrained_type_parameter, - STATE(2026), 2, + ACTIONS(4659), 1, + anon_sym_DOT_DOT, + STATE(2031), 2, sym_line_comment, sym_block_comment, - STATE(3248), 2, - sym_const_parameter, - sym_optional_type_parameter, - [63349] = 14, + ACTIONS(4657), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [63429] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(2982), 1, + ACTIONS(3002), 1, anon_sym_SQUOTE, - ACTIONS(4649), 1, + ACTIONS(4661), 1, sym_identifier, - ACTIONS(4653), 1, - anon_sym_const, - ACTIONS(4655), 1, - sym_metavariable, - ACTIONS(4657), 1, + ACTIONS(4663), 1, anon_sym_GT, - STATE(1479), 1, - sym_attribute_item, - STATE(2048), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2701), 1, - sym_lifetime, - STATE(2969), 1, - sym_constrained_type_parameter, - STATE(2027), 2, - sym_line_comment, - sym_block_comment, - STATE(3248), 2, - sym_const_parameter, - sym_optional_type_parameter, - [63394] = 14, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(2980), 1, - anon_sym_POUND, - ACTIONS(2982), 1, - anon_sym_SQUOTE, - ACTIONS(4649), 1, - sym_identifier, - ACTIONS(4653), 1, + ACTIONS(4665), 1, anon_sym_const, - ACTIONS(4655), 1, + ACTIONS(4667), 1, sym_metavariable, - ACTIONS(4659), 1, - anon_sym_GT, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2048), 1, + STATE(2071), 1, aux_sym_enum_variant_list_repeat1, - STATE(2701), 1, + STATE(2666), 1, sym_lifetime, - STATE(2969), 1, + STATE(2993), 1, sym_constrained_type_parameter, - STATE(2028), 2, + STATE(2032), 2, sym_line_comment, sym_block_comment, - STATE(3248), 2, + STATE(3245), 2, sym_const_parameter, sym_optional_type_parameter, - [63439] = 14, + [63474] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(2982), 1, + ACTIONS(3002), 1, anon_sym_SQUOTE, - ACTIONS(4649), 1, + ACTIONS(4661), 1, sym_identifier, - ACTIONS(4653), 1, + ACTIONS(4665), 1, anon_sym_const, - ACTIONS(4655), 1, + ACTIONS(4667), 1, sym_metavariable, - ACTIONS(4661), 1, + ACTIONS(4669), 1, anon_sym_GT, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2048), 1, + STATE(2071), 1, aux_sym_enum_variant_list_repeat1, - STATE(2701), 1, + STATE(2666), 1, sym_lifetime, - STATE(2969), 1, + STATE(2993), 1, sym_constrained_type_parameter, - STATE(2029), 2, + STATE(2033), 2, sym_line_comment, sym_block_comment, - STATE(3248), 2, + STATE(3245), 2, sym_const_parameter, sym_optional_type_parameter, - [63484] = 14, + [63519] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(2982), 1, + ACTIONS(3002), 1, anon_sym_SQUOTE, - ACTIONS(4649), 1, + ACTIONS(4661), 1, sym_identifier, - ACTIONS(4653), 1, + ACTIONS(4665), 1, anon_sym_const, - ACTIONS(4655), 1, + ACTIONS(4667), 1, sym_metavariable, - ACTIONS(4663), 1, + ACTIONS(4671), 1, anon_sym_GT, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2048), 1, + STATE(2071), 1, aux_sym_enum_variant_list_repeat1, - STATE(2701), 1, + STATE(2666), 1, sym_lifetime, - STATE(2969), 1, + STATE(2993), 1, sym_constrained_type_parameter, - STATE(2030), 2, + STATE(2034), 2, sym_line_comment, sym_block_comment, - STATE(3248), 2, + STATE(3245), 2, sym_const_parameter, sym_optional_type_parameter, - [63529] = 14, + [63564] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(2982), 1, + ACTIONS(3002), 1, anon_sym_SQUOTE, - ACTIONS(4649), 1, + ACTIONS(4661), 1, sym_identifier, - ACTIONS(4653), 1, + ACTIONS(4665), 1, anon_sym_const, - ACTIONS(4655), 1, + ACTIONS(4667), 1, sym_metavariable, - ACTIONS(4665), 1, + ACTIONS(4673), 1, anon_sym_GT, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2048), 1, + STATE(2071), 1, aux_sym_enum_variant_list_repeat1, - STATE(2701), 1, + STATE(2666), 1, sym_lifetime, - STATE(2969), 1, + STATE(2993), 1, sym_constrained_type_parameter, - STATE(2031), 2, + STATE(2035), 2, sym_line_comment, sym_block_comment, - STATE(3248), 2, + STATE(3245), 2, sym_const_parameter, sym_optional_type_parameter, - [63574] = 14, + [63609] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(2982), 1, + ACTIONS(3002), 1, anon_sym_SQUOTE, - ACTIONS(4649), 1, + ACTIONS(4661), 1, sym_identifier, - ACTIONS(4653), 1, + ACTIONS(4665), 1, anon_sym_const, - ACTIONS(4655), 1, - sym_metavariable, ACTIONS(4667), 1, + sym_metavariable, + ACTIONS(4675), 1, anon_sym_GT, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2048), 1, + STATE(2071), 1, aux_sym_enum_variant_list_repeat1, - STATE(2701), 1, + STATE(2666), 1, sym_lifetime, - STATE(2969), 1, + STATE(2993), 1, sym_constrained_type_parameter, - STATE(2032), 2, + STATE(2036), 2, sym_line_comment, sym_block_comment, - STATE(3248), 2, + STATE(3245), 2, sym_const_parameter, sym_optional_type_parameter, - [63619] = 14, + [63654] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(2982), 1, + ACTIONS(3002), 1, anon_sym_SQUOTE, - ACTIONS(4649), 1, + ACTIONS(4661), 1, sym_identifier, - ACTIONS(4653), 1, + ACTIONS(4665), 1, anon_sym_const, - ACTIONS(4655), 1, + ACTIONS(4667), 1, sym_metavariable, - ACTIONS(4669), 1, + ACTIONS(4677), 1, anon_sym_GT, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2048), 1, + STATE(2071), 1, aux_sym_enum_variant_list_repeat1, - STATE(2701), 1, + STATE(2666), 1, sym_lifetime, - STATE(2969), 1, + STATE(2993), 1, sym_constrained_type_parameter, - STATE(2033), 2, + STATE(2037), 2, sym_line_comment, sym_block_comment, - STATE(3248), 2, + STATE(3245), 2, sym_const_parameter, sym_optional_type_parameter, - [63664] = 14, + [63699] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(2982), 1, + ACTIONS(3002), 1, anon_sym_SQUOTE, - ACTIONS(4649), 1, + ACTIONS(4661), 1, sym_identifier, - ACTIONS(4653), 1, + ACTIONS(4665), 1, anon_sym_const, - ACTIONS(4655), 1, + ACTIONS(4667), 1, sym_metavariable, - ACTIONS(4671), 1, + ACTIONS(4679), 1, anon_sym_GT, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2048), 1, + STATE(2071), 1, aux_sym_enum_variant_list_repeat1, - STATE(2577), 1, + STATE(2666), 1, sym_lifetime, - STATE(2969), 1, + STATE(2993), 1, sym_constrained_type_parameter, - STATE(2034), 2, + STATE(2038), 2, sym_line_comment, sym_block_comment, - STATE(3248), 2, + STATE(3245), 2, sym_const_parameter, sym_optional_type_parameter, - [63709] = 14, + [63744] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(2982), 1, + ACTIONS(3002), 1, anon_sym_SQUOTE, - ACTIONS(4649), 1, + ACTIONS(4661), 1, sym_identifier, - ACTIONS(4653), 1, + ACTIONS(4665), 1, anon_sym_const, - ACTIONS(4655), 1, + ACTIONS(4667), 1, sym_metavariable, - ACTIONS(4673), 1, + ACTIONS(4681), 1, anon_sym_GT, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2048), 1, + STATE(2071), 1, aux_sym_enum_variant_list_repeat1, - STATE(2701), 1, + STATE(2666), 1, sym_lifetime, - STATE(2969), 1, + STATE(2993), 1, sym_constrained_type_parameter, - STATE(2035), 2, + STATE(2039), 2, sym_line_comment, sym_block_comment, - STATE(3248), 2, + STATE(3245), 2, sym_const_parameter, sym_optional_type_parameter, - [63754] = 14, + [63789] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(2982), 1, + ACTIONS(3002), 1, anon_sym_SQUOTE, - ACTIONS(4649), 1, + ACTIONS(4661), 1, sym_identifier, - ACTIONS(4653), 1, + ACTIONS(4665), 1, anon_sym_const, - ACTIONS(4655), 1, + ACTIONS(4667), 1, sym_metavariable, - ACTIONS(4675), 1, + ACTIONS(4683), 1, anon_sym_GT, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2048), 1, + STATE(2071), 1, aux_sym_enum_variant_list_repeat1, - STATE(2701), 1, + STATE(2666), 1, sym_lifetime, - STATE(2969), 1, + STATE(2993), 1, sym_constrained_type_parameter, - STATE(2036), 2, + STATE(2040), 2, sym_line_comment, sym_block_comment, - STATE(3248), 2, + STATE(3245), 2, sym_const_parameter, sym_optional_type_parameter, - [63799] = 10, + [63834] = 10, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(4520), 1, + ACTIONS(4558), 1, anon_sym_trait, - ACTIONS(4677), 1, + ACTIONS(4685), 1, anon_sym_impl, - STATE(390), 1, + STATE(391), 1, sym_block, - STATE(3569), 1, + STATE(3347), 1, sym_label, - STATE(2037), 2, + STATE(2041), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 6, + ACTIONS(3367), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [63836] = 14, + [63871] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(2982), 1, + ACTIONS(3002), 1, anon_sym_SQUOTE, - ACTIONS(4649), 1, + ACTIONS(4661), 1, sym_identifier, - ACTIONS(4653), 1, + ACTIONS(4665), 1, anon_sym_const, - ACTIONS(4655), 1, + ACTIONS(4667), 1, sym_metavariable, - ACTIONS(4679), 1, + ACTIONS(4687), 1, anon_sym_GT, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2048), 1, + STATE(2071), 1, aux_sym_enum_variant_list_repeat1, - STATE(2701), 1, + STATE(2666), 1, sym_lifetime, - STATE(2969), 1, + STATE(2993), 1, sym_constrained_type_parameter, - STATE(2038), 2, + STATE(2042), 2, sym_line_comment, sym_block_comment, - STATE(3248), 2, + STATE(3245), 2, sym_const_parameter, sym_optional_type_parameter, - [63881] = 14, + [63916] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(2982), 1, + ACTIONS(3002), 1, anon_sym_SQUOTE, - ACTIONS(4649), 1, + ACTIONS(4661), 1, sym_identifier, - ACTIONS(4653), 1, + ACTIONS(4665), 1, anon_sym_const, - ACTIONS(4655), 1, + ACTIONS(4667), 1, sym_metavariable, - ACTIONS(4681), 1, + ACTIONS(4689), 1, anon_sym_GT, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2048), 1, + STATE(2071), 1, aux_sym_enum_variant_list_repeat1, - STATE(2701), 1, + STATE(2666), 1, sym_lifetime, - STATE(2969), 1, + STATE(2993), 1, sym_constrained_type_parameter, - STATE(2039), 2, + STATE(2043), 2, sym_line_comment, sym_block_comment, - STATE(3248), 2, + STATE(3245), 2, sym_const_parameter, sym_optional_type_parameter, - [63926] = 14, + [63961] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(2982), 1, + ACTIONS(3002), 1, anon_sym_SQUOTE, - ACTIONS(4649), 1, + ACTIONS(4661), 1, sym_identifier, - ACTIONS(4653), 1, + ACTIONS(4665), 1, anon_sym_const, - ACTIONS(4655), 1, + ACTIONS(4667), 1, sym_metavariable, - ACTIONS(4683), 1, + ACTIONS(4691), 1, anon_sym_GT, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2048), 1, + STATE(2071), 1, aux_sym_enum_variant_list_repeat1, - STATE(2701), 1, + STATE(2666), 1, sym_lifetime, - STATE(2969), 1, + STATE(2993), 1, sym_constrained_type_parameter, - STATE(2040), 2, + STATE(2044), 2, sym_line_comment, sym_block_comment, - STATE(3248), 2, + STATE(3245), 2, sym_const_parameter, sym_optional_type_parameter, - [63971] = 14, + [64006] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(2982), 1, + ACTIONS(3002), 1, anon_sym_SQUOTE, - ACTIONS(4649), 1, + ACTIONS(4661), 1, sym_identifier, - ACTIONS(4653), 1, + ACTIONS(4665), 1, anon_sym_const, - ACTIONS(4655), 1, + ACTIONS(4667), 1, sym_metavariable, - ACTIONS(4685), 1, + ACTIONS(4693), 1, anon_sym_GT, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2048), 1, + STATE(2071), 1, aux_sym_enum_variant_list_repeat1, - STATE(2701), 1, + STATE(2666), 1, sym_lifetime, - STATE(2969), 1, + STATE(2993), 1, sym_constrained_type_parameter, - STATE(2041), 2, + STATE(2045), 2, sym_line_comment, sym_block_comment, - STATE(3248), 2, + STATE(3245), 2, sym_const_parameter, sym_optional_type_parameter, - [64016] = 4, + [64051] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2042), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1245), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(2992), 1, + anon_sym_POUND, + ACTIONS(3002), 1, + anon_sym_SQUOTE, + ACTIONS(4661), 1, + sym_identifier, + ACTIONS(4665), 1, + anon_sym_const, + ACTIONS(4667), 1, + sym_metavariable, + ACTIONS(4695), 1, anon_sym_GT, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64040] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4689), 1, - anon_sym_COLON, - ACTIONS(4691), 1, - anon_sym_COLON_COLON, - STATE(2043), 2, + STATE(1490), 1, + sym_attribute_item, + STATE(2071), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2518), 1, + sym_lifetime, + STATE(2993), 1, + sym_constrained_type_parameter, + STATE(2046), 2, sym_line_comment, sym_block_comment, - ACTIONS(4687), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64068] = 6, + STATE(3245), 2, + sym_const_parameter, + sym_optional_type_parameter, + [64096] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4695), 1, - anon_sym_COLON, + ACTIONS(2992), 1, + anon_sym_POUND, + ACTIONS(3002), 1, + anon_sym_SQUOTE, + ACTIONS(4661), 1, + sym_identifier, + ACTIONS(4665), 1, + anon_sym_const, + ACTIONS(4667), 1, + sym_metavariable, ACTIONS(4697), 1, - anon_sym_COLON_COLON, - STATE(2044), 2, + anon_sym_GT, + STATE(1490), 1, + sym_attribute_item, + STATE(2071), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2666), 1, + sym_lifetime, + STATE(2993), 1, + sym_constrained_type_parameter, + STATE(2047), 2, sym_line_comment, sym_block_comment, - ACTIONS(4693), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64096] = 13, + STATE(3245), 2, + sym_const_parameter, + sym_optional_type_parameter, + [64141] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(2982), 1, + ACTIONS(3002), 1, anon_sym_SQUOTE, - ACTIONS(4653), 1, + ACTIONS(4665), 1, anon_sym_const, ACTIONS(4699), 1, sym_identifier, ACTIONS(4701), 1, sym_metavariable, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2047), 1, + STATE(2067), 1, aux_sym_enum_variant_list_repeat1, - STATE(2339), 1, + STATE(2440), 1, sym_lifetime, - STATE(2719), 1, + STATE(2711), 1, sym_constrained_type_parameter, - STATE(2045), 2, + STATE(2048), 2, sym_line_comment, sym_block_comment, - STATE(2999), 2, + STATE(3040), 2, sym_const_parameter, sym_optional_type_parameter, - [64138] = 6, + [64183] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4689), 1, + ACTIONS(4705), 1, anon_sym_COLON, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_COLON_COLON, - STATE(2046), 2, + STATE(2049), 2, sym_line_comment, sym_block_comment, - ACTIONS(4687), 9, + ACTIONS(4703), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164579,147 +165114,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64166] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(2980), 1, - anon_sym_POUND, - ACTIONS(2982), 1, - anon_sym_SQUOTE, - ACTIONS(4653), 1, - anon_sym_const, - ACTIONS(4705), 1, - sym_identifier, - ACTIONS(4707), 1, - sym_metavariable, - STATE(1052), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1479), 1, - sym_attribute_item, - STATE(2406), 1, - sym_lifetime, - STATE(2563), 1, - sym_constrained_type_parameter, - STATE(2047), 2, - sym_line_comment, - sym_block_comment, - STATE(2817), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64208] = 13, + [64211] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(2982), 1, + ACTIONS(3002), 1, anon_sym_SQUOTE, - ACTIONS(4653), 1, + ACTIONS(4665), 1, anon_sym_const, ACTIONS(4709), 1, sym_identifier, ACTIONS(4711), 1, sym_metavariable, - STATE(1052), 1, + STATE(1096), 1, aux_sym_enum_variant_list_repeat1, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2581), 1, + STATE(2486), 1, sym_lifetime, - STATE(2924), 1, + STATE(2688), 1, sym_constrained_type_parameter, - STATE(2048), 2, - sym_line_comment, - sym_block_comment, - STATE(3295), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64250] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1421), 1, - aux_sym_string_literal_token1, - ACTIONS(4715), 1, - sym_crate, - STATE(2229), 1, - sym_string_literal, - STATE(2049), 2, + STATE(2050), 2, sym_line_comment, sym_block_comment, - ACTIONS(4713), 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, - [64280] = 12, + STATE(2889), 2, + sym_const_parameter, + sym_optional_type_parameter, + [64253] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3270), 1, + ACTIONS(3278), 1, anon_sym_COLON, - ACTIONS(4468), 1, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4470), 1, + ACTIONS(4482), 1, anon_sym_BANG, - ACTIONS(4472), 1, + ACTIONS(4484), 1, anon_sym_COLON_COLON, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(4717), 1, + ACTIONS(4713), 1, anon_sym_EQ, - STATE(1967), 1, + STATE(1968), 1, sym_parameters, - STATE(2310), 1, + STATE(2356), 1, sym_type_arguments, - STATE(2050), 2, + STATE(2051), 2, sym_line_comment, sym_block_comment, - ACTIONS(3266), 3, + ACTIONS(3274), 3, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, - [64320] = 7, + [64293] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1421), 1, - aux_sym_string_literal_token1, - ACTIONS(4719), 1, - sym_crate, - STATE(2229), 1, - sym_string_literal, - STATE(2051), 2, + STATE(2052), 2, sym_line_comment, sym_block_comment, - ACTIONS(4713), 8, + ACTIONS(1253), 11, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64350] = 4, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [64317] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2052), 2, + STATE(2053), 2, sym_line_comment, sym_block_comment, - ACTIONS(1249), 11, + ACTIONS(1261), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164731,150 +165211,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64374] = 13, + [64341] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(2982), 1, + ACTIONS(3002), 1, anon_sym_SQUOTE, - ACTIONS(4653), 1, + ACTIONS(4665), 1, anon_sym_const, - ACTIONS(4721), 1, + ACTIONS(4715), 1, sym_identifier, - ACTIONS(4723), 1, + ACTIONS(4717), 1, sym_metavariable, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2054), 1, + STATE(2050), 1, aux_sym_enum_variant_list_repeat1, - STATE(2439), 1, + STATE(2313), 1, sym_lifetime, - STATE(2712), 1, + STATE(2520), 1, sym_constrained_type_parameter, - STATE(2053), 2, + STATE(2054), 2, sym_line_comment, sym_block_comment, - STATE(2790), 2, + STATE(2796), 2, sym_const_parameter, sym_optional_type_parameter, - [64416] = 13, + [64383] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, - anon_sym_POUND, - ACTIONS(2982), 1, - anon_sym_SQUOTE, - ACTIONS(4653), 1, + ACTIONS(1429), 1, + aux_sym_string_literal_token1, + ACTIONS(4721), 1, + sym_crate, + STATE(2214), 1, + sym_string_literal, + STATE(2055), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4719), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, anon_sym_const, - ACTIONS(4725), 1, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64413] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2992), 1, + anon_sym_POUND, + ACTIONS(4723), 1, sym_identifier, + ACTIONS(4725), 1, + anon_sym_RBRACE, ACTIONS(4727), 1, - sym_metavariable, - STATE(1052), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1479), 1, + anon_sym_DOT_DOT, + ACTIONS(4729), 1, + anon_sym_COMMA, + ACTIONS(4731), 1, + sym_integer_literal, + STATE(1490), 1, sym_attribute_item, - STATE(2441), 1, - sym_lifetime, - STATE(2522), 1, - sym_constrained_type_parameter, - STATE(2054), 2, + STATE(2500), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2056), 2, sym_line_comment, sym_block_comment, - STATE(2888), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64458] = 11, + STATE(2754), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [64453] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4470), 1, + ACTIONS(4482), 1, anon_sym_BANG, - ACTIONS(4472), 1, + ACTIONS(4484), 1, anon_sym_COLON_COLON, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(4729), 1, + ACTIONS(4733), 1, anon_sym_for, - STATE(1940), 1, + STATE(1946), 1, sym_type_arguments, - STATE(1967), 1, + STATE(1968), 1, sym_parameters, - STATE(2055), 2, + STATE(2057), 2, sym_line_comment, sym_block_comment, - ACTIONS(3266), 4, + ACTIONS(3274), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [64496] = 9, + [64491] = 9, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(4731), 1, - sym_identifier, + ACTIONS(4735), 1, + anon_sym_move, STATE(386), 1, sym_block, - STATE(3569), 1, + STATE(3347), 1, sym_label, - STATE(2056), 2, + STATE(2058), 2, sym_line_comment, sym_block_comment, - ACTIONS(4733), 6, + ACTIONS(3367), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [64530] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, + [64525] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(4735), 1, - anon_sym_move, - STATE(373), 1, - sym_block, - STATE(3569), 1, - sym_label, - STATE(2057), 2, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4482), 1, + anon_sym_BANG, + ACTIONS(4484), 1, + anon_sym_COLON_COLON, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4737), 1, + anon_sym_for, + STATE(1946), 1, + sym_type_arguments, + STATE(1968), 1, + sym_parameters, + STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64564] = 4, + ACTIONS(3274), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [64563] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2058), 2, + STATE(2060), 2, sym_line_comment, sym_block_comment, - ACTIONS(1257), 11, + ACTIONS(1269), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164886,111 +165390,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64588] = 6, + [64587] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4697), 1, - anon_sym_COLON_COLON, - ACTIONS(4739), 1, - anon_sym_COLON, - STATE(2059), 2, + STATE(2061), 2, sym_line_comment, sym_block_comment, - ACTIONS(4737), 9, + ACTIONS(1265), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64616] = 11, + [64611] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - ACTIONS(4470), 1, - anon_sym_BANG, - ACTIONS(4472), 1, - anon_sym_COLON_COLON, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4741), 1, - anon_sym_for, - STATE(1940), 1, - sym_type_arguments, - STATE(1967), 1, - sym_parameters, - STATE(2060), 2, + ACTIONS(2992), 1, + anon_sym_POUND, + ACTIONS(3002), 1, + anon_sym_SQUOTE, + ACTIONS(4661), 1, + sym_identifier, + ACTIONS(4665), 1, + anon_sym_const, + ACTIONS(4667), 1, + sym_metavariable, + STATE(1490), 1, + sym_attribute_item, + STATE(2071), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2666), 1, + sym_lifetime, + STATE(2993), 1, + sym_constrained_type_parameter, + STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(3266), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [64654] = 6, + STATE(3245), 2, + sym_const_parameter, + sym_optional_type_parameter, + [64653] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3312), 1, - anon_sym_DOT_DOT, - ACTIONS(3308), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2061), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3314), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4741), 1, + anon_sym_COLON, + ACTIONS(4743), 1, anon_sym_COLON_COLON, - anon_sym_if, - [64682] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2062), 2, + STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(1253), 11, + ACTIONS(4739), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64706] = 6, + [64681] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3300), 1, + ACTIONS(3340), 1, anon_sym_DOT_DOT, - ACTIONS(3296), 2, + ACTIONS(3336), 2, anon_sym_LBRACE, anon_sym_LT2, - STATE(2063), 2, + STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(3302), 8, + ACTIONS(3342), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -164999,20 +165483,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [64734] = 6, + [64709] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3320), 1, + ACTIONS(3304), 1, anon_sym_DOT_DOT, - ACTIONS(3316), 2, + ACTIONS(3300), 2, anon_sym_LBRACE, anon_sym_LT2, - STATE(2064), 2, + STATE(2065), 2, sym_line_comment, sym_block_comment, - ACTIONS(3322), 8, + ACTIONS(3306), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -165021,41 +165505,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [64762] = 6, + [64737] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4691), 1, - anon_sym_COLON_COLON, - ACTIONS(4745), 1, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4508), 1, anon_sym_COLON, - STATE(2065), 2, + ACTIONS(4510), 1, + anon_sym_BANG, + ACTIONS(4512), 1, + anon_sym_DOT_DOT, + ACTIONS(4516), 1, + anon_sym_COLON_COLON, + STATE(1944), 1, + sym_type_arguments, + ACTIONS(4514), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2066), 2, sym_line_comment, sym_block_comment, - ACTIONS(4743), 9, - anon_sym_SEMI, + ACTIONS(4506), 3, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64790] = 6, + [64775] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4601), 1, - anon_sym_COLON_COLON, + ACTIONS(2992), 1, + anon_sym_POUND, + ACTIONS(3002), 1, + anon_sym_SQUOTE, + ACTIONS(4665), 1, + anon_sym_const, ACTIONS(4745), 1, + sym_identifier, + ACTIONS(4747), 1, + sym_metavariable, + STATE(1096), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1490), 1, + sym_attribute_item, + STATE(2453), 1, + sym_lifetime, + STATE(2586), 1, + sym_constrained_type_parameter, + STATE(2067), 2, + sym_line_comment, + sym_block_comment, + STATE(2779), 2, + sym_const_parameter, + sym_optional_type_parameter, + [64817] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3312), 1, + anon_sym_DOT_DOT, + ACTIONS(3308), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2068), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3314), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [64845] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4613), 1, + anon_sym_COLON_COLON, + ACTIONS(4751), 1, anon_sym_COLON, - STATE(2066), 2, + STATE(2069), 2, sym_line_comment, sym_block_comment, - ACTIONS(4743), 9, + ACTIONS(4749), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165065,19 +165605,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64818] = 6, + [64873] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, + ACTIONS(4707), 1, anon_sym_COLON_COLON, - ACTIONS(4745), 1, + ACTIONS(4751), 1, anon_sym_COLON, - STATE(2067), 2, + STATE(2070), 2, sym_line_comment, sym_block_comment, - ACTIONS(4743), 9, + ACTIONS(4749), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165087,230 +165627,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64846] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(2980), 1, - anon_sym_POUND, - ACTIONS(4747), 1, - sym_identifier, - ACTIONS(4749), 1, - anon_sym_RBRACE, - ACTIONS(4751), 1, - anon_sym_DOT_DOT, - ACTIONS(4753), 1, - anon_sym_COMMA, - ACTIONS(4755), 1, - sym_integer_literal, - STATE(1479), 1, - sym_attribute_item, - STATE(2423), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2068), 2, - sym_line_comment, - sym_block_comment, - STATE(2880), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [64886] = 13, + [64901] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(2982), 1, + ACTIONS(3002), 1, anon_sym_SQUOTE, - ACTIONS(4649), 1, - sym_identifier, - ACTIONS(4653), 1, + ACTIONS(4665), 1, anon_sym_const, - ACTIONS(4655), 1, + ACTIONS(4753), 1, + sym_identifier, + ACTIONS(4755), 1, sym_metavariable, - STATE(1479), 1, - sym_attribute_item, - STATE(2048), 1, + STATE(1096), 1, aux_sym_enum_variant_list_repeat1, - STATE(2701), 1, + STATE(1490), 1, + sym_attribute_item, + STATE(2724), 1, sym_lifetime, - STATE(2969), 1, + STATE(3029), 1, sym_constrained_type_parameter, - STATE(2069), 2, + STATE(2071), 2, sym_line_comment, sym_block_comment, - STATE(3248), 2, + STATE(3295), 2, sym_const_parameter, sym_optional_type_parameter, - [64928] = 11, + [64943] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, + ACTIONS(3328), 1, + anon_sym_DOT_DOT, + ACTIONS(3324), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2072), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3330), 8, anon_sym_LPAREN, - ACTIONS(4470), 1, + anon_sym_EQ_GT, anon_sym_BANG, - ACTIONS(4472), 1, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - ACTIONS(4474), 1, - anon_sym_LT2, + anon_sym_if, + [64971] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1429), 1, + aux_sym_string_literal_token1, ACTIONS(4757), 1, - anon_sym_for, - STATE(1940), 1, - sym_type_arguments, - STATE(1967), 1, - sym_parameters, - STATE(2070), 2, + sym_crate, + STATE(2214), 1, + sym_string_literal, + STATE(2073), 2, sym_line_comment, sym_block_comment, - ACTIONS(3266), 4, + ACTIONS(4719), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [64966] = 11, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65001] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4496), 1, - anon_sym_COLON, - ACTIONS(4498), 1, - anon_sym_BANG, - ACTIONS(4500), 1, - anon_sym_DOT_DOT, - ACTIONS(4504), 1, - anon_sym_COLON_COLON, - STATE(1943), 1, - sym_type_arguments, - ACTIONS(4502), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2071), 2, + STATE(2074), 2, sym_line_comment, sym_block_comment, - ACTIONS(4494), 3, + ACTIONS(1257), 11, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - [65004] = 11, + anon_sym_else, + anon_sym_in, + [65025] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - ACTIONS(4470), 1, - anon_sym_BANG, - ACTIONS(4472), 1, + ACTIONS(4743), 1, anon_sym_COLON_COLON, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4759), 1, - anon_sym_for, - STATE(1940), 1, - sym_type_arguments, - STATE(1967), 1, - sym_parameters, - STATE(2072), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3266), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [65042] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2073), 2, + ACTIONS(4761), 1, + anon_sym_COLON, + STATE(2075), 2, sym_line_comment, sym_block_comment, - ACTIONS(1261), 11, + ACTIONS(4759), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65066] = 13, + [65053] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(2982), 1, + ACTIONS(3002), 1, anon_sym_SQUOTE, - ACTIONS(4653), 1, + ACTIONS(4665), 1, anon_sym_const, - ACTIONS(4699), 1, + ACTIONS(4715), 1, sym_identifier, - ACTIONS(4701), 1, + ACTIONS(4717), 1, sym_metavariable, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2047), 1, + STATE(2050), 1, aux_sym_enum_variant_list_repeat1, - STATE(2399), 1, + STATE(2503), 1, sym_lifetime, - STATE(2719), 1, + STATE(2520), 1, sym_constrained_type_parameter, - STATE(2074), 2, + STATE(2076), 2, sym_line_comment, sym_block_comment, - STATE(2999), 2, + STATE(2796), 2, sym_const_parameter, sym_optional_type_parameter, - [65108] = 6, + [65095] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4601), 1, + ACTIONS(2992), 1, + anon_sym_POUND, + ACTIONS(4723), 1, + sym_identifier, + ACTIONS(4727), 1, + anon_sym_DOT_DOT, + ACTIONS(4731), 1, + sym_integer_literal, + ACTIONS(4763), 1, + anon_sym_RBRACE, + ACTIONS(4765), 1, + anon_sym_COMMA, + STATE(1490), 1, + sym_attribute_item, + STATE(2500), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2077), 2, + sym_line_comment, + sym_block_comment, + STATE(2870), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [65135] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4482), 1, + anon_sym_BANG, + ACTIONS(4484), 1, anon_sym_COLON_COLON, - ACTIONS(4689), 1, - anon_sym_COLON, - STATE(2075), 2, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4767), 1, + anon_sym_for, + STATE(1946), 1, + sym_type_arguments, + STATE(1968), 1, + sym_parameters, + STATE(2078), 2, sym_line_comment, sym_block_comment, - ACTIONS(4687), 9, + ACTIONS(3274), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65136] = 7, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [65173] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1421), 1, + ACTIONS(1429), 1, aux_sym_string_literal_token1, - ACTIONS(4761), 1, + ACTIONS(4769), 1, sym_crate, - STATE(2229), 1, + STATE(2214), 1, sym_string_literal, - STATE(2076), 2, + STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(4713), 8, + ACTIONS(4719), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -165319,48 +165850,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [65166] = 11, + [65203] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4470), 1, + ACTIONS(4482), 1, anon_sym_BANG, - ACTIONS(4472), 1, + ACTIONS(4484), 1, anon_sym_COLON_COLON, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(4763), 1, + ACTIONS(4771), 1, anon_sym_for, - STATE(1940), 1, + STATE(1946), 1, sym_type_arguments, - STATE(1967), 1, + STATE(1968), 1, sym_parameters, - STATE(2077), 2, + STATE(2080), 2, sym_line_comment, sym_block_comment, - ACTIONS(3266), 4, + ACTIONS(3274), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [65204] = 7, + [65241] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1421), 1, + ACTIONS(1429), 1, aux_sym_string_literal_token1, - ACTIONS(4765), 1, + ACTIONS(4773), 1, sym_crate, - STATE(2229), 1, + STATE(2214), 1, sym_string_literal, - STATE(2078), 2, + STATE(2081), 2, sym_line_comment, sym_block_comment, - ACTIONS(4713), 8, + ACTIONS(4719), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -165369,218 +165900,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [65234] = 11, + [65271] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4470), 1, + ACTIONS(4482), 1, anon_sym_BANG, - ACTIONS(4472), 1, + ACTIONS(4484), 1, anon_sym_COLON_COLON, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(4767), 1, + ACTIONS(4775), 1, anon_sym_for, - STATE(1940), 1, + STATE(1946), 1, sym_type_arguments, - STATE(1967), 1, + STATE(1968), 1, sym_parameters, - STATE(2079), 2, + STATE(2082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3266), 4, + ACTIONS(3274), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [65272] = 11, + [65309] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4470), 1, + ACTIONS(4482), 1, anon_sym_BANG, - ACTIONS(4472), 1, + ACTIONS(4484), 1, anon_sym_COLON_COLON, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(4769), 1, + ACTIONS(4777), 1, anon_sym_for, - STATE(1940), 1, + STATE(1946), 1, sym_type_arguments, - STATE(1967), 1, + STATE(1968), 1, sym_parameters, - STATE(2080), 2, + STATE(2083), 2, sym_line_comment, sym_block_comment, - ACTIONS(3266), 4, + ACTIONS(3274), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [65310] = 11, + [65347] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4470), 1, + ACTIONS(4482), 1, anon_sym_BANG, - ACTIONS(4472), 1, + ACTIONS(4484), 1, anon_sym_COLON_COLON, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(4771), 1, + ACTIONS(4779), 1, anon_sym_for, - STATE(1940), 1, + STATE(1946), 1, sym_type_arguments, - STATE(1967), 1, + STATE(1968), 1, sym_parameters, - STATE(2081), 2, + STATE(2084), 2, sym_line_comment, sym_block_comment, - ACTIONS(3266), 4, + ACTIONS(3274), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [65348] = 12, + [65385] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, - anon_sym_POUND, - ACTIONS(4747), 1, - sym_identifier, - ACTIONS(4751), 1, - anon_sym_DOT_DOT, - ACTIONS(4755), 1, - sym_integer_literal, - ACTIONS(4773), 1, - anon_sym_RBRACE, - ACTIONS(4775), 1, - anon_sym_COMMA, - STATE(1479), 1, - sym_attribute_item, - STATE(2423), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2082), 2, + ACTIONS(4613), 1, + anon_sym_COLON_COLON, + ACTIONS(4705), 1, + anon_sym_COLON, + STATE(2085), 2, sym_line_comment, sym_block_comment, - STATE(2811), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [65388] = 6, + ACTIONS(4703), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [65413] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3336), 1, - anon_sym_DOT_DOT, - ACTIONS(3332), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2083), 2, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(4781), 1, + sym_identifier, + STATE(388), 1, + sym_block, + STATE(3347), 1, + sym_label, + STATE(2086), 2, sym_line_comment, sym_block_comment, - ACTIONS(3338), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [65416] = 10, + ACTIONS(4783), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65447] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4498), 1, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4482), 1, anon_sym_BANG, - ACTIONS(4500), 1, - anon_sym_DOT_DOT, - ACTIONS(4569), 1, + ACTIONS(4484), 1, anon_sym_COLON_COLON, - STATE(1943), 1, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4785), 1, + anon_sym_for, + STATE(1946), 1, sym_type_arguments, - ACTIONS(4502), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2084), 2, + STATE(1968), 1, + sym_parameters, + STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(4494), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - [65451] = 13, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(3274), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [65485] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, - anon_sym_POUND, - ACTIONS(4777), 1, - sym_identifier, - ACTIONS(4779), 1, - anon_sym_RBRACE, - ACTIONS(4781), 1, - anon_sym_COMMA, - ACTIONS(4783), 1, - sym_crate, - STATE(1479), 1, - sym_attribute_item, - STATE(2210), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2933), 1, - sym_field_declaration, - STATE(3566), 1, - sym_visibility_modifier, - STATE(2085), 2, + ACTIONS(4705), 1, + anon_sym_COLON, + ACTIONS(4787), 1, + anon_sym_COLON_COLON, + STATE(2088), 2, sym_line_comment, sym_block_comment, - [65492] = 4, + ACTIONS(4703), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [65513] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2086), 2, + ACTIONS(4751), 1, + anon_sym_COLON, + ACTIONS(4787), 1, + anon_sym_COLON_COLON, + STATE(2089), 2, sym_line_comment, sym_block_comment, - ACTIONS(4785), 10, + ACTIONS(4749), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65515] = 4, + [65541] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2087), 2, + STATE(2090), 2, sym_line_comment, sym_block_comment, - ACTIONS(4787), 10, + ACTIONS(4789), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165591,15 +166118,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65538] = 4, + [65564] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2088), 2, + STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(4789), 10, + ACTIONS(4791), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165610,15 +166137,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65561] = 4, + [65587] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2089), 2, + STATE(2092), 2, sym_line_comment, sym_block_comment, - ACTIONS(4791), 10, + ACTIONS(4793), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165629,15 +166156,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65584] = 4, + [65610] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2090), 2, + STATE(2093), 2, sym_line_comment, sym_block_comment, - ACTIONS(4793), 10, + ACTIONS(4795), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165648,15 +166175,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65607] = 4, + [65633] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2091), 2, + STATE(2094), 2, sym_line_comment, sym_block_comment, - ACTIONS(4795), 10, + ACTIONS(4490), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165667,12 +166194,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65630] = 4, + [65656] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2092), 2, + STATE(2095), 2, sym_line_comment, sym_block_comment, ACTIONS(4797), 10, @@ -165686,12 +166213,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65653] = 4, + [65679] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2093), 2, + STATE(2096), 2, sym_line_comment, sym_block_comment, ACTIONS(4799), 10, @@ -165705,35 +166232,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65676] = 8, + [65702] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3972), 1, - anon_sym_LT2, - ACTIONS(4110), 1, - anon_sym_COLON_COLON, + ACTIONS(2992), 1, + anon_sym_POUND, + ACTIONS(4723), 1, + sym_identifier, + ACTIONS(4727), 1, + anon_sym_DOT_DOT, + ACTIONS(4731), 1, + sym_integer_literal, ACTIONS(4801), 1, + anon_sym_RBRACE, + STATE(1490), 1, + sym_attribute_item, + STATE(2500), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2097), 2, + sym_line_comment, + sym_block_comment, + STATE(3111), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [65739] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4510), 1, anon_sym_BANG, - STATE(1606), 1, + ACTIONS(4588), 1, + anon_sym_COLON_COLON, + STATE(1944), 1, sym_type_arguments, - STATE(2094), 2, + STATE(2098), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 6, + ACTIONS(3367), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [65707] = 4, + [65770] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2095), 2, + STATE(2099), 2, sym_line_comment, sym_block_comment, ACTIONS(4803), 10, @@ -165747,31 +166300,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65730] = 4, + [65793] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2096), 2, + ACTIONS(4482), 1, + anon_sym_BANG, + ACTIONS(4492), 1, + anon_sym_LPAREN, + ACTIONS(4496), 1, + anon_sym_COLON, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(4805), 1, + anon_sym_COLON_COLON, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2100), 2, sym_line_comment, sym_block_comment, - ACTIONS(4805), 10, - anon_sym_SEMI, + ACTIONS(4490), 3, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65753] = 4, + [65828] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2097), 2, + STATE(2101), 2, sym_line_comment, sym_block_comment, ACTIONS(4807), 10, @@ -165785,34 +166344,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65776] = 4, + [65851] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2098), 2, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4809), 1, + anon_sym_BANG, + ACTIONS(4811), 1, + anon_sym_DOT_DOT, + ACTIONS(4815), 1, + anon_sym_COLON_COLON, + STATE(1944), 1, + sym_type_arguments, + ACTIONS(4813), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2102), 2, sym_line_comment, sym_block_comment, - ACTIONS(4809), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(4506), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65799] = 4, + anon_sym_if, + [65886] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2099), 2, + STATE(2103), 2, sym_line_comment, sym_block_comment, - ACTIONS(4811), 10, + ACTIONS(4817), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165823,15 +166388,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65822] = 4, + [65909] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2100), 2, + STATE(2104), 2, sym_line_comment, sym_block_comment, - ACTIONS(4813), 10, + ACTIONS(4819), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165842,108 +166407,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65845] = 8, + [65932] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2992), 1, + anon_sym_POUND, + ACTIONS(4821), 1, + sym_identifier, + ACTIONS(4823), 1, + anon_sym_RBRACE, + ACTIONS(4825), 1, + anon_sym_COMMA, + ACTIONS(4827), 1, + sym_crate, + STATE(1490), 1, + sym_attribute_item, + STATE(2235), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2773), 1, + sym_enum_variant, + STATE(3355), 1, + sym_visibility_modifier, + STATE(2105), 2, + sym_line_comment, + sym_block_comment, + [65973] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1589), 1, + ACTIONS(1597), 1, anon_sym_LBRACE, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - STATE(2113), 1, + STATE(2110), 1, sym_block, - STATE(3598), 1, + STATE(3608), 1, sym_label, - STATE(2101), 2, + STATE(2106), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 6, + ACTIONS(3367), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [65876] = 10, + [66004] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, + ACTIONS(3284), 1, anon_sym_LT2, - ACTIONS(4815), 1, - anon_sym_BANG, - ACTIONS(4817), 1, - anon_sym_DOT_DOT, - ACTIONS(4821), 1, + ACTIONS(3557), 1, anon_sym_COLON_COLON, - STATE(1943), 1, + ACTIONS(4829), 1, + anon_sym_BANG, + STATE(1097), 1, sym_type_arguments, - ACTIONS(4819), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2102), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4494), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [65911] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2103), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4823), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65934] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(2980), 1, - anon_sym_POUND, - ACTIONS(4747), 1, - sym_identifier, - ACTIONS(4751), 1, - anon_sym_DOT_DOT, - ACTIONS(4755), 1, - sym_integer_literal, - ACTIONS(4825), 1, - anon_sym_RBRACE, - STATE(1479), 1, - sym_attribute_item, - STATE(2423), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2104), 2, + STATE(2107), 2, sym_line_comment, sym_block_comment, - STATE(3143), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [65971] = 4, + ACTIONS(3367), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66035] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2105), 2, + STATE(2108), 2, sym_line_comment, sym_block_comment, - ACTIONS(4827), 10, + ACTIONS(4831), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165954,15 +166500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65994] = 4, + [66058] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2106), 2, + STATE(2109), 2, sym_line_comment, sym_block_comment, - ACTIONS(4829), 10, + ACTIONS(4833), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165973,15 +166519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66017] = 4, + [66081] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2107), 2, + STATE(2110), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 10, + ACTIONS(1329), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165992,15 +166538,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66040] = 4, + [66104] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2108), 2, + STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(4833), 10, + ACTIONS(4835), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166011,15 +166557,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66063] = 4, + [66127] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2109), 2, + STATE(2112), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 10, + ACTIONS(4837), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166030,15 +166576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66086] = 4, + [66150] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2110), 2, + STATE(2113), 2, sym_line_comment, sym_block_comment, - ACTIONS(4837), 10, + ACTIONS(4839), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166049,15 +166595,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66109] = 4, + [66173] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2111), 2, + STATE(2114), 2, sym_line_comment, sym_block_comment, - ACTIONS(4839), 10, + ACTIONS(4841), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166068,15 +166614,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66132] = 4, + [66196] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2112), 2, + STATE(2115), 2, sym_line_comment, sym_block_comment, - ACTIONS(4687), 10, + ACTIONS(4843), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166087,60 +166633,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66155] = 4, + [66219] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2113), 2, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4510), 1, + anon_sym_BANG, + ACTIONS(4512), 1, + anon_sym_DOT_DOT, + ACTIONS(4601), 1, + anon_sym_COLON_COLON, + STATE(1944), 1, + sym_type_arguments, + ACTIONS(4514), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2116), 2, sym_line_comment, sym_block_comment, - ACTIONS(1321), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4506), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66178] = 11, + [66254] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(4747), 1, + ACTIONS(4827), 1, + sym_crate, + ACTIONS(4845), 1, sym_identifier, - ACTIONS(4751), 1, - anon_sym_DOT_DOT, - ACTIONS(4755), 1, - sym_integer_literal, - ACTIONS(4841), 1, + ACTIONS(4847), 1, anon_sym_RBRACE, - STATE(1479), 1, + ACTIONS(4849), 1, + anon_sym_COMMA, + STATE(1490), 1, sym_attribute_item, - STATE(2423), 1, + STATE(2237), 1, aux_sym_enum_variant_list_repeat1, - STATE(2114), 2, + STATE(2787), 1, + sym_field_declaration, + STATE(3478), 1, + sym_visibility_modifier, + STATE(2117), 2, sym_line_comment, sym_block_comment, - STATE(3143), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66215] = 4, + [66295] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2115), 2, + STATE(2118), 2, sym_line_comment, sym_block_comment, - ACTIONS(4843), 10, + ACTIONS(4703), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166151,58 +166705,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66238] = 9, + [66318] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - ACTIONS(4474), 1, - anon_sym_LT2, + ACTIONS(2992), 1, + anon_sym_POUND, + ACTIONS(4827), 1, + sym_crate, ACTIONS(4845), 1, - anon_sym_LBRACE, - STATE(1939), 1, - sym_type_arguments, - STATE(1956), 1, - sym_parameters, - STATE(2116), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3292), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS, + sym_identifier, + ACTIONS(4851), 1, + anon_sym_RBRACE, + ACTIONS(4853), 1, anon_sym_COMMA, - [66271] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2117), 2, + STATE(1490), 1, + sym_attribute_item, + STATE(2197), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2856), 1, + sym_field_declaration, + STATE(3478), 1, + sym_visibility_modifier, + STATE(2119), 2, sym_line_comment, sym_block_comment, - ACTIONS(4847), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66294] = 4, + [66359] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2118), 2, + STATE(2120), 2, sym_line_comment, sym_block_comment, - ACTIONS(4849), 10, + ACTIONS(4855), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166213,15 +166752,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66317] = 4, + [66382] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2119), 2, + STATE(2121), 2, sym_line_comment, sym_block_comment, - ACTIONS(4851), 10, + ACTIONS(4857), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166232,15 +166771,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66340] = 4, + [66405] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2120), 2, + STATE(2122), 2, sym_line_comment, sym_block_comment, - ACTIONS(4853), 10, + ACTIONS(4859), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166251,56 +166790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66363] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4498), 1, - anon_sym_BANG, - ACTIONS(4581), 1, - anon_sym_COLON_COLON, - STATE(1943), 1, - sym_type_arguments, - STATE(2121), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3359), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66394] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(2980), 1, - anon_sym_POUND, - ACTIONS(4747), 1, - sym_identifier, - ACTIONS(4751), 1, - anon_sym_DOT_DOT, - ACTIONS(4755), 1, - sym_integer_literal, - ACTIONS(4855), 1, - anon_sym_RBRACE, - STATE(1479), 1, - sym_attribute_item, - STATE(2423), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2122), 2, - sym_line_comment, - sym_block_comment, - STATE(3143), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66431] = 4, + [66428] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -166308,7 +166798,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2123), 2, sym_line_comment, sym_block_comment, - ACTIONS(4743), 10, + ACTIONS(4861), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166319,7 +166809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66454] = 4, + [66451] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -166327,7 +166817,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2124), 2, sym_line_comment, sym_block_comment, - ACTIONS(4478), 10, + ACTIONS(4863), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166338,116 +166828,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66477] = 13, - ACTIONS(69), 1, - anon_sym_pub, + [66474] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, - anon_sym_POUND, - ACTIONS(4783), 1, - sym_crate, - ACTIONS(4857), 1, - sym_identifier, - ACTIONS(4859), 1, - anon_sym_RBRACE, - ACTIONS(4861), 1, - anon_sym_COMMA, - STATE(1479), 1, - sym_attribute_item, - STATE(2215), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2872), 1, - sym_enum_variant, - STATE(3446), 1, - sym_visibility_modifier, STATE(2125), 2, sym_line_comment, sym_block_comment, - [66518] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4470), 1, - anon_sym_BANG, - ACTIONS(4480), 1, - anon_sym_LPAREN, - ACTIONS(4484), 1, - anon_sym_COLON, - ACTIONS(4488), 1, - anon_sym_DOT_DOT, - ACTIONS(4863), 1, - anon_sym_COLON_COLON, - ACTIONS(4490), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2126), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4478), 3, + ACTIONS(4865), 10, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - [66553] = 13, - ACTIONS(69), 1, - anon_sym_pub, + anon_sym_else, + anon_sym_in, + [66497] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, - anon_sym_POUND, - ACTIONS(4783), 1, - sym_crate, - ACTIONS(4857), 1, - sym_identifier, - ACTIONS(4865), 1, - anon_sym_RBRACE, - ACTIONS(4867), 1, - anon_sym_COMMA, - STATE(1479), 1, - sym_attribute_item, - STATE(2217), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2954), 1, - sym_enum_variant, - STATE(3446), 1, - sym_visibility_modifier, - STATE(2127), 2, + STATE(2126), 2, sym_line_comment, sym_block_comment, - [66594] = 8, + ACTIONS(4867), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66520] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3276), 1, + ACTIONS(4000), 1, anon_sym_LT2, - ACTIONS(3367), 1, + ACTIONS(4118), 1, anon_sym_COLON_COLON, ACTIONS(4869), 1, anon_sym_BANG, - STATE(1053), 1, + STATE(1598), 1, sym_type_arguments, - STATE(2128), 2, + STATE(2127), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 6, + ACTIONS(3367), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66625] = 4, + [66551] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2129), 2, + STATE(2128), 2, sym_line_comment, sym_block_comment, ACTIONS(4871), 10, @@ -166461,12 +166908,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66648] = 4, + [66574] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2130), 2, + STATE(2129), 2, sym_line_comment, sym_block_comment, ACTIONS(4873), 10, @@ -166480,54 +166927,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66671] = 4, + [66597] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2131), 2, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4875), 1, + anon_sym_LBRACE, + STATE(1945), 1, + sym_type_arguments, + STATE(1953), 1, + sym_parameters, + STATE(2130), 2, sym_line_comment, sym_block_comment, - ACTIONS(4875), 10, + ACTIONS(3332), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66694] = 13, + [66630] = 13, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(4777), 1, + ACTIONS(4821), 1, sym_identifier, - ACTIONS(4783), 1, + ACTIONS(4827), 1, sym_crate, ACTIONS(4877), 1, anon_sym_RBRACE, ACTIONS(4879), 1, anon_sym_COMMA, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, STATE(2220), 1, aux_sym_enum_variant_list_repeat1, - STATE(2901), 1, - sym_field_declaration, - STATE(3566), 1, + STATE(2798), 1, + sym_enum_variant, + STATE(3355), 1, sym_visibility_modifier, + STATE(2131), 2, + sym_line_comment, + sym_block_comment, + [66671] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, STATE(2132), 2, sym_line_comment, sym_block_comment, - [66735] = 4, + ACTIONS(4881), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66694] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -166535,7 +167006,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2133), 2, sym_line_comment, sym_block_comment, - ACTIONS(4881), 10, + ACTIONS(4883), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166546,33 +167017,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66758] = 11, + [66717] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(4747), 1, + ACTIONS(4723), 1, sym_identifier, - ACTIONS(4751), 1, + ACTIONS(4727), 1, anon_sym_DOT_DOT, - ACTIONS(4755), 1, + ACTIONS(4731), 1, sym_integer_literal, - ACTIONS(4883), 1, + ACTIONS(4885), 1, anon_sym_RBRACE, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2423), 1, + STATE(2500), 1, aux_sym_enum_variant_list_repeat1, STATE(2134), 2, sym_line_comment, sym_block_comment, - STATE(3143), 3, + STATE(3111), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [66795] = 4, + [66754] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -166580,7 +167051,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2135), 2, sym_line_comment, sym_block_comment, - ACTIONS(4885), 10, + ACTIONS(4887), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166591,209 +167062,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66818] = 9, + [66777] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4500), 1, - anon_sym_DOT_DOT, - ACTIONS(4569), 1, - anon_sym_COLON_COLON, - ACTIONS(4887), 1, - anon_sym_RBRACK, - ACTIONS(3292), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4494), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4502), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(2136), 2, sym_line_comment, sym_block_comment, - [66850] = 5, + ACTIONS(4889), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66800] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3312), 1, + ACTIONS(2992), 1, + anon_sym_POUND, + ACTIONS(4723), 1, + sym_identifier, + ACTIONS(4727), 1, anon_sym_DOT_DOT, + ACTIONS(4731), 1, + sym_integer_literal, + ACTIONS(4891), 1, + anon_sym_RBRACE, + STATE(1490), 1, + sym_attribute_item, + STATE(2500), 1, + aux_sym_enum_variant_list_repeat1, STATE(2137), 2, sym_line_comment, sym_block_comment, - ACTIONS(3314), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [66874] = 12, - ACTIONS(69), 1, - anon_sym_pub, + STATE(3111), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66837] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(4783), 1, - sym_crate, - ACTIONS(4857), 1, + ACTIONS(4723), 1, sym_identifier, - ACTIONS(4890), 1, + ACTIONS(4727), 1, + anon_sym_DOT_DOT, + ACTIONS(4731), 1, + sym_integer_literal, + ACTIONS(4893), 1, anon_sym_RBRACE, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2211), 1, + STATE(2500), 1, aux_sym_enum_variant_list_repeat1, - STATE(3203), 1, - sym_enum_variant, - STATE(3446), 1, - sym_visibility_modifier, STATE(2138), 2, sym_line_comment, sym_block_comment, - [66912] = 11, + STATE(3111), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66874] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4494), 1, - anon_sym_PIPE, - ACTIONS(4496), 1, - anon_sym_COLON, - ACTIONS(4498), 1, - anon_sym_BANG, - ACTIONS(4500), 1, - anon_sym_DOT_DOT, - ACTIONS(4599), 1, - anon_sym_COLON_COLON, - STATE(1943), 1, - sym_type_arguments, - ACTIONS(4502), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(2139), 2, sym_line_comment, sym_block_comment, - [66948] = 12, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(4895), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66897] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, - anon_sym_POUND, - ACTIONS(4777), 1, - sym_identifier, - ACTIONS(4783), 1, - sym_crate, - ACTIONS(4892), 1, - anon_sym_RBRACE, - STATE(1479), 1, - sym_attribute_item, - STATE(2189), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3283), 1, - sym_field_declaration, - STATE(3566), 1, - sym_visibility_modifier, STATE(2140), 2, sym_line_comment, sym_block_comment, - [66986] = 12, + ACTIONS(4749), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66920] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4894), 1, - anon_sym_SEMI, - ACTIONS(4896), 1, - anon_sym_LPAREN, - ACTIONS(4898), 1, - anon_sym_LBRACE, - ACTIONS(4900), 1, - anon_sym_LT, - ACTIONS(4902), 1, - anon_sym_where, - STATE(645), 1, - sym_field_declaration_list, - STATE(2282), 1, - sym_type_parameters, - STATE(2927), 1, - sym_ordered_field_declaration_list, - STATE(3157), 1, - sym_where_clause, STATE(2141), 2, sym_line_comment, sym_block_comment, - [67024] = 5, + ACTIONS(4897), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66943] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4906), 1, - anon_sym_PLUS, - STATE(2142), 3, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4899), 1, + anon_sym_for, + STATE(1945), 1, + sym_type_arguments, + STATE(1953), 1, + sym_parameters, + STATE(2142), 2, sym_line_comment, sym_block_comment, - aux_sym_trait_bounds_repeat1, - ACTIONS(4904), 7, + ACTIONS(3332), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_PLUS, anon_sym_where, - [67048] = 12, + [66975] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(4777), 1, - sym_identifier, - ACTIONS(4783), 1, + ACTIONS(4827), 1, sym_crate, - ACTIONS(4909), 1, + ACTIONS(4845), 1, + sym_identifier, + ACTIONS(4901), 1, anon_sym_RBRACE, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2189), 1, + STATE(2203), 1, aux_sym_enum_variant_list_repeat1, - STATE(3283), 1, + STATE(3319), 1, sym_field_declaration, - STATE(3566), 1, + STATE(3478), 1, sym_visibility_modifier, STATE(2143), 2, sym_line_comment, sym_block_comment, - [67086] = 6, + [67013] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4913), 1, + ACTIONS(4905), 1, anon_sym_PLUS, - STATE(2142), 1, - aux_sym_trait_bounds_repeat1, - STATE(2144), 2, + STATE(2144), 3, sym_line_comment, sym_block_comment, - ACTIONS(4911), 7, + aux_sym_trait_bounds_repeat1, + ACTIONS(4903), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -166801,89 +167258,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [67112] = 9, + [67037] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4915), 1, - anon_sym_for, - STATE(1939), 1, - sym_type_arguments, - STATE(1956), 1, - sym_parameters, + ACTIONS(2992), 1, + anon_sym_POUND, + ACTIONS(4723), 1, + sym_identifier, + ACTIONS(4727), 1, + anon_sym_DOT_DOT, + ACTIONS(4731), 1, + sym_integer_literal, + STATE(1490), 1, + sym_attribute_item, + STATE(2500), 1, + aux_sym_enum_variant_list_repeat1, STATE(2145), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67144] = 12, + STATE(3111), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67071] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(4783), 1, - sym_crate, - ACTIONS(4857), 1, + ACTIONS(4821), 1, sym_identifier, - ACTIONS(4917), 1, + ACTIONS(4827), 1, + sym_crate, + ACTIONS(4908), 1, anon_sym_RBRACE, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2211), 1, + STATE(2238), 1, aux_sym_enum_variant_list_repeat1, - STATE(3203), 1, + STATE(3269), 1, sym_enum_variant, - STATE(3446), 1, + STATE(3355), 1, sym_visibility_modifier, STATE(2146), 2, sym_line_comment, sym_block_comment, - [67182] = 7, + [67109] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(4919), 1, - anon_sym_COLON_COLON, - STATE(1943), 1, + ACTIONS(4910), 1, + anon_sym_for, + STATE(1945), 1, sym_type_arguments, + STATE(1953), 1, + sym_parameters, STATE(2147), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67210] = 6, + ACTIONS(3332), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67141] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4913), 1, + ACTIONS(4914), 1, anon_sym_PLUS, - STATE(2144), 1, + STATE(2170), 1, aux_sym_trait_bounds_repeat1, STATE(2148), 2, sym_line_comment, sym_block_comment, - ACTIONS(4921), 7, + ACTIONS(4912), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -166891,45 +167351,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [67236] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [67167] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, - anon_sym_POUND, - ACTIONS(4777), 1, - sym_identifier, - ACTIONS(4783), 1, - sym_crate, - ACTIONS(4923), 1, - anon_sym_RBRACE, - STATE(1479), 1, - sym_attribute_item, - STATE(2189), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3283), 1, - sym_field_declaration, - STATE(3566), 1, - sym_visibility_modifier, + ACTIONS(4916), 1, + anon_sym_PLUS, + STATE(2170), 1, + aux_sym_trait_bounds_repeat1, STATE(2149), 2, sym_line_comment, sym_block_comment, - [67274] = 6, + ACTIONS(4912), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [67193] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4925), 1, + ACTIONS(4918), 1, anon_sym_PLUS, - STATE(2144), 1, + STATE(2170), 1, aux_sym_trait_bounds_repeat1, STATE(2150), 2, sym_line_comment, sym_block_comment, - ACTIONS(4921), 7, + ACTIONS(4912), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -166937,106 +167391,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [67300] = 9, + [67219] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4927), 1, - anon_sym_LPAREN, - ACTIONS(4932), 1, - anon_sym_LBRACK, - ACTIONS(4935), 1, - anon_sym_LBRACE, - STATE(3361), 1, - sym_macro_rule, - STATE(3574), 1, - sym_token_tree_pattern, - ACTIONS(4930), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(2992), 1, + anon_sym_POUND, + ACTIONS(4827), 1, + sym_crate, + ACTIONS(4845), 1, + sym_identifier, + ACTIONS(4920), 1, anon_sym_RBRACE, - STATE(2151), 3, + STATE(1490), 1, + sym_attribute_item, + STATE(2203), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3319), 1, + sym_field_declaration, + STATE(3478), 1, + sym_visibility_modifier, + STATE(2151), 2, sym_line_comment, sym_block_comment, - aux_sym_macro_definition_repeat1, - [67332] = 6, + [67257] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_PLUS, - STATE(2144), 1, - aux_sym_trait_bounds_repeat1, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4922), 1, + anon_sym_for, + STATE(1945), 1, + sym_type_arguments, + STATE(1953), 1, + sym_parameters, STATE(2152), 2, sym_line_comment, sym_block_comment, - ACTIONS(4921), 7, + ACTIONS(3332), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_PLUS, anon_sym_where, - [67358] = 9, + [67289] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4635), 1, - anon_sym_LPAREN, - ACTIONS(4639), 1, - anon_sym_BANG, - ACTIONS(4643), 1, + ACTIONS(4512), 1, anon_sym_DOT_DOT, - ACTIONS(4940), 1, + ACTIONS(4601), 1, anon_sym_COLON_COLON, - ACTIONS(4645), 2, + ACTIONS(4924), 1, + anon_sym_RBRACK, + ACTIONS(3332), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4506), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4514), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(2153), 2, sym_line_comment, sym_block_comment, - ACTIONS(4478), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [67390] = 9, + [67321] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4494), 1, - anon_sym_PIPE, - ACTIONS(4496), 1, - anon_sym_COLON, - ACTIONS(4500), 1, - anon_sym_DOT_DOT, - ACTIONS(4599), 1, - anon_sym_COLON_COLON, - ACTIONS(4502), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4927), 1, + anon_sym_SEMI, + ACTIONS(4929), 1, + anon_sym_LBRACE, + STATE(698), 1, + sym_declaration_list, STATE(2154), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [67422] = 5, + ACTIONS(3367), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67349] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3336), 1, + ACTIONS(3340), 1, anon_sym_DOT_DOT, STATE(2155), 2, sym_line_comment, sym_block_comment, - ACTIONS(3338), 8, + ACTIONS(3342), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -167045,113 +167503,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [67446] = 12, + [67373] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4896), 1, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4900), 1, - anon_sym_LT, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4942), 1, - anon_sym_SEMI, - ACTIONS(4944), 1, - anon_sym_LBRACE, - STATE(1166), 1, - sym_field_declaration_list, - STATE(2242), 1, - sym_type_parameters, - STATE(2917), 1, - sym_ordered_field_declaration_list, - STATE(3135), 1, - sym_where_clause, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4931), 1, + anon_sym_for, + STATE(1945), 1, + sym_type_arguments, + STATE(1953), 1, + sym_parameters, STATE(2156), 2, sym_line_comment, sym_block_comment, - [67484] = 7, + ACTIONS(3332), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67405] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_SEMI, - ACTIONS(4948), 1, + ACTIONS(4933), 1, + anon_sym_LPAREN, + ACTIONS(4938), 1, + anon_sym_LBRACK, + ACTIONS(4941), 1, anon_sym_LBRACE, - STATE(745), 1, - sym_declaration_list, - STATE(2157), 2, + STATE(3531), 1, + sym_macro_rule, + STATE(3565), 1, + sym_token_tree_pattern, + ACTIONS(4936), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(2157), 3, sym_line_comment, sym_block_comment, - ACTIONS(3359), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67512] = 9, + aux_sym_macro_definition_repeat1, + [67437] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4950), 1, - anon_sym_for, - STATE(1939), 1, - sym_type_arguments, - STATE(1956), 1, - sym_parameters, + ACTIONS(3304), 1, + anon_sym_DOT_DOT, STATE(2158), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67544] = 12, + ACTIONS(3306), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [67461] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4896), 1, - anon_sym_LPAREN, - ACTIONS(4898), 1, - anon_sym_LBRACE, - ACTIONS(4900), 1, - anon_sym_LT, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4952), 1, - anon_sym_SEMI, - STATE(742), 1, - sym_field_declaration_list, - STATE(2287), 1, - sym_type_parameters, - STATE(2864), 1, - sym_ordered_field_declaration_list, - STATE(3206), 1, - sym_where_clause, + ACTIONS(3312), 1, + anon_sym_DOT_DOT, STATE(2159), 2, sym_line_comment, sym_block_comment, - [67582] = 5, + ACTIONS(3314), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [67485] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3320), 1, + ACTIONS(3328), 1, anon_sym_DOT_DOT, STATE(2160), 2, sym_line_comment, sym_block_comment, - ACTIONS(3322), 8, + ACTIONS(3330), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -167160,803 +167606,875 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [67606] = 7, + [67509] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3972), 1, - anon_sym_LT2, - ACTIONS(4954), 1, + ACTIONS(4640), 1, + anon_sym_LPAREN, + ACTIONS(4644), 1, + anon_sym_BANG, + ACTIONS(4648), 1, + anon_sym_DOT_DOT, + ACTIONS(4944), 1, anon_sym_COLON_COLON, - STATE(1606), 1, - sym_type_arguments, + ACTIONS(4650), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2161), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67634] = 10, + ACTIONS(4490), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [67541] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4946), 1, + anon_sym_for, + STATE(1945), 1, + sym_type_arguments, + STATE(1953), 1, + sym_parameters, + STATE(2162), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3332), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67573] = 12, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(4747), 1, + ACTIONS(4821), 1, sym_identifier, - ACTIONS(4751), 1, - anon_sym_DOT_DOT, - ACTIONS(4755), 1, - sym_integer_literal, - STATE(1479), 1, + ACTIONS(4827), 1, + sym_crate, + ACTIONS(4948), 1, + anon_sym_RBRACE, + STATE(1490), 1, sym_attribute_item, - STATE(2423), 1, + STATE(2238), 1, aux_sym_enum_variant_list_repeat1, - STATE(2162), 2, + STATE(3269), 1, + sym_enum_variant, + STATE(3355), 1, + sym_visibility_modifier, + STATE(2163), 2, sym_line_comment, sym_block_comment, - STATE(3143), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67668] = 7, + [67611] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, + ACTIONS(4950), 1, anon_sym_SEMI, - ACTIONS(4958), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - STATE(1125), 1, + STATE(1478), 1, sym_declaration_list, - STATE(2163), 2, + STATE(2164), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 6, + ACTIONS(3367), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67696] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [67639] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, - anon_sym_POUND, - ACTIONS(4777), 1, - sym_identifier, - ACTIONS(4783), 1, - sym_crate, + ACTIONS(4954), 1, + anon_sym_SEMI, + ACTIONS(4956), 1, + anon_sym_LPAREN, + ACTIONS(4958), 1, + anon_sym_LBRACE, ACTIONS(4960), 1, - anon_sym_RBRACE, - STATE(1479), 1, - sym_attribute_item, - STATE(2189), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3283), 1, - sym_field_declaration, - STATE(3566), 1, - sym_visibility_modifier, - STATE(2164), 2, + anon_sym_LT, + ACTIONS(4962), 1, + anon_sym_where, + STATE(1431), 1, + sym_field_declaration_list, + STATE(2258), 1, + sym_type_parameters, + STATE(3049), 1, + sym_ordered_field_declaration_list, + STATE(3327), 1, + sym_where_clause, + STATE(2165), 2, sym_line_comment, sym_block_comment, - [67734] = 7, + [67677] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(4962), 1, + ACTIONS(4964), 1, anon_sym_SEMI, - STATE(671), 1, + STATE(1468), 1, sym_declaration_list, - STATE(2165), 2, + STATE(2166), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3367), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67705] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3284), 1, + anon_sym_LT2, + ACTIONS(4966), 1, + anon_sym_COLON_COLON, + STATE(1097), 1, + sym_type_arguments, + STATE(2167), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 6, + ACTIONS(3367), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67762] = 12, + [67733] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4956), 1, + anon_sym_LPAREN, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(4960), 1, + anon_sym_LT, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(4968), 1, + anon_sym_SEMI, + STATE(1151), 1, + sym_field_declaration_list, + STATE(2275), 1, + sym_type_parameters, + STATE(2793), 1, + sym_ordered_field_declaration_list, + STATE(3321), 1, + sym_where_clause, + STATE(2168), 2, + sym_line_comment, + sym_block_comment, + [67771] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(4783), 1, + ACTIONS(4827), 1, sym_crate, - ACTIONS(4857), 1, + ACTIONS(4845), 1, sym_identifier, - ACTIONS(4964), 1, + ACTIONS(4970), 1, anon_sym_RBRACE, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2211), 1, + STATE(2203), 1, aux_sym_enum_variant_list_repeat1, - STATE(3203), 1, - sym_enum_variant, - STATE(3446), 1, + STATE(3319), 1, + sym_field_declaration, + STATE(3478), 1, sym_visibility_modifier, - STATE(2166), 2, + STATE(2169), 2, + sym_line_comment, + sym_block_comment, + [67809] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4914), 1, + anon_sym_PLUS, + STATE(2144), 1, + aux_sym_trait_bounds_repeat1, + STATE(2170), 2, sym_line_comment, sym_block_comment, - [67800] = 12, + ACTIONS(4972), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [67835] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(4783), 1, - sym_crate, - ACTIONS(4857), 1, + ACTIONS(4821), 1, sym_identifier, - ACTIONS(4966), 1, + ACTIONS(4827), 1, + sym_crate, + ACTIONS(4974), 1, anon_sym_RBRACE, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2211), 1, + STATE(2238), 1, aux_sym_enum_variant_list_repeat1, - STATE(3203), 1, + STATE(3269), 1, sym_enum_variant, - STATE(3446), 1, + STATE(3355), 1, sym_visibility_modifier, - STATE(2167), 2, + STATE(2171), 2, sym_line_comment, sym_block_comment, - [67838] = 12, + [67873] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(4777), 1, - sym_identifier, - ACTIONS(4783), 1, + ACTIONS(4827), 1, sym_crate, - ACTIONS(4968), 1, + ACTIONS(4845), 1, + sym_identifier, + ACTIONS(4976), 1, anon_sym_RBRACE, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2189), 1, + STATE(2203), 1, aux_sym_enum_variant_list_repeat1, - STATE(3283), 1, + STATE(3319), 1, sym_field_declaration, - STATE(3566), 1, + STATE(3478), 1, sym_visibility_modifier, - STATE(2168), 2, + STATE(2172), 2, sym_line_comment, sym_block_comment, - [67876] = 12, + [67911] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(4783), 1, - sym_crate, - ACTIONS(4857), 1, + ACTIONS(4821), 1, sym_identifier, - ACTIONS(4970), 1, + ACTIONS(4827), 1, + sym_crate, + ACTIONS(4978), 1, anon_sym_RBRACE, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2211), 1, + STATE(2238), 1, aux_sym_enum_variant_list_repeat1, - STATE(3203), 1, + STATE(3269), 1, sym_enum_variant, - STATE(3446), 1, + STATE(3355), 1, sym_visibility_modifier, - STATE(2169), 2, - sym_line_comment, - sym_block_comment, - [67914] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4470), 1, - anon_sym_BANG, - ACTIONS(4480), 1, - anon_sym_LPAREN, - ACTIONS(4488), 1, - anon_sym_DOT_DOT, - ACTIONS(4972), 1, - anon_sym_COLON_COLON, - ACTIONS(4490), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2170), 2, + STATE(2173), 2, sym_line_comment, sym_block_comment, - ACTIONS(4478), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - [67946] = 9, + [67949] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4974), 1, - anon_sym_for, - STATE(1939), 1, - sym_type_arguments, - STATE(1956), 1, - sym_parameters, - STATE(2171), 2, + ACTIONS(2992), 1, + anon_sym_POUND, + ACTIONS(4827), 1, + sym_crate, + ACTIONS(4845), 1, + sym_identifier, + ACTIONS(4980), 1, + anon_sym_RBRACE, + STATE(1490), 1, + sym_attribute_item, + STATE(2203), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3319), 1, + sym_field_declaration, + STATE(3478), 1, + sym_visibility_modifier, + STATE(2174), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67978] = 12, + [67987] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4896), 1, - anon_sym_LPAREN, - ACTIONS(4900), 1, - anon_sym_LT, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4944), 1, - anon_sym_LBRACE, - ACTIONS(4976), 1, - anon_sym_SEMI, - STATE(1105), 1, - sym_field_declaration_list, - STATE(2255), 1, - sym_type_parameters, - STATE(2799), 1, - sym_ordered_field_declaration_list, - STATE(3258), 1, - sym_where_clause, - STATE(2172), 2, + ACTIONS(2992), 1, + anon_sym_POUND, + ACTIONS(4821), 1, + sym_identifier, + ACTIONS(4827), 1, + sym_crate, + ACTIONS(4982), 1, + anon_sym_RBRACE, + STATE(1490), 1, + sym_attribute_item, + STATE(2238), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3269), 1, + sym_enum_variant, + STATE(3355), 1, + sym_visibility_modifier, + STATE(2175), 2, sym_line_comment, sym_block_comment, - [68016] = 12, + [68025] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(4783), 1, + ACTIONS(4827), 1, sym_crate, - ACTIONS(4857), 1, + ACTIONS(4845), 1, sym_identifier, - ACTIONS(4978), 1, + ACTIONS(4984), 1, anon_sym_RBRACE, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2211), 1, + STATE(2203), 1, aux_sym_enum_variant_list_repeat1, - STATE(3203), 1, - sym_enum_variant, - STATE(3446), 1, + STATE(3319), 1, + sym_field_declaration, + STATE(3478), 1, sym_visibility_modifier, - STATE(2173), 2, + STATE(2176), 2, sym_line_comment, sym_block_comment, - [68054] = 9, + [68063] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4980), 1, - anon_sym_for, - STATE(1939), 1, - sym_type_arguments, - STATE(1956), 1, - sym_parameters, - STATE(2174), 2, + ACTIONS(3332), 1, + anon_sym_PLUS, + ACTIONS(4506), 1, + anon_sym_PIPE, + ACTIONS(4508), 1, + anon_sym_COLON, + ACTIONS(4512), 1, + anon_sym_DOT_DOT, + ACTIONS(4516), 1, + anon_sym_COLON_COLON, + ACTIONS(4514), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4924), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2177), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [68086] = 7, + [68097] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4982), 1, - anon_sym_SEMI, - STATE(1114), 1, - sym_declaration_list, - STATE(2175), 2, + ACTIONS(4000), 1, + anon_sym_LT2, + ACTIONS(4986), 1, + anon_sym_COLON_COLON, + STATE(1598), 1, + sym_type_arguments, + STATE(2178), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 6, + ACTIONS(3367), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68114] = 9, + [68125] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4984), 1, - anon_sym_for, - STATE(1939), 1, - sym_type_arguments, - STATE(1956), 1, - sym_parameters, - STATE(2176), 2, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(4988), 1, + anon_sym_SEMI, + STATE(624), 1, + sym_declaration_list, + STATE(2179), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [68146] = 9, + ACTIONS(3367), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68153] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(4986), 1, - anon_sym_for, - STATE(1939), 1, + ACTIONS(4506), 1, + anon_sym_PIPE, + ACTIONS(4508), 1, + anon_sym_COLON, + ACTIONS(4510), 1, + anon_sym_BANG, + ACTIONS(4512), 1, + anon_sym_DOT_DOT, + ACTIONS(4611), 1, + anon_sym_COLON_COLON, + STATE(1944), 1, sym_type_arguments, - STATE(1956), 1, - sym_parameters, - STATE(2177), 2, + ACTIONS(4514), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2180), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [68178] = 9, + [68189] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(4988), 1, + ACTIONS(4990), 1, anon_sym_for, - STATE(1939), 1, + STATE(1945), 1, sym_type_arguments, - STATE(1956), 1, + STATE(1953), 1, sym_parameters, - STATE(2178), 2, + STATE(2181), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 4, + ACTIONS(3332), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68210] = 12, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(2980), 1, - anon_sym_POUND, - ACTIONS(4777), 1, - sym_identifier, - ACTIONS(4783), 1, - sym_crate, - ACTIONS(4990), 1, - anon_sym_RBRACE, - STATE(1479), 1, - sym_attribute_item, - STATE(2189), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3283), 1, - sym_field_declaration, - STATE(3566), 1, - sym_visibility_modifier, - STATE(2179), 2, - sym_line_comment, - sym_block_comment, - [68248] = 10, + [68221] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3292), 1, - anon_sym_PLUS, - ACTIONS(4494), 1, + ACTIONS(4506), 1, anon_sym_PIPE, - ACTIONS(4496), 1, + ACTIONS(4508), 1, anon_sym_COLON, - ACTIONS(4500), 1, + ACTIONS(4512), 1, anon_sym_DOT_DOT, - ACTIONS(4504), 1, + ACTIONS(4611), 1, anon_sym_COLON_COLON, - ACTIONS(4502), 2, + ACTIONS(4514), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4887), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2180), 2, + STATE(2182), 2, sym_line_comment, sym_block_comment, - [68282] = 7, + ACTIONS(3332), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [68253] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3276), 1, + ACTIONS(4486), 1, anon_sym_LT2, ACTIONS(4992), 1, anon_sym_COLON_COLON, - STATE(1053), 1, + STATE(1944), 1, sym_type_arguments, - STATE(2181), 2, + STATE(2183), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 6, + ACTIONS(3367), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68310] = 9, + [68281] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - ACTIONS(4474), 1, - anon_sym_LT2, + ACTIONS(2992), 1, + anon_sym_POUND, + ACTIONS(4821), 1, + sym_identifier, + ACTIONS(4827), 1, + sym_crate, ACTIONS(4994), 1, - anon_sym_for, - STATE(1939), 1, - sym_type_arguments, - STATE(1956), 1, - sym_parameters, - STATE(2182), 2, + anon_sym_RBRACE, + STATE(1490), 1, + sym_attribute_item, + STATE(2238), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3269), 1, + sym_enum_variant, + STATE(3355), 1, + sym_visibility_modifier, + STATE(2184), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [68342] = 5, + [68319] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3300), 1, - anon_sym_DOT_DOT, - STATE(2183), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3302), 8, + ACTIONS(4956), 1, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [68366] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(4902), 1, + ACTIONS(4960), 1, + anon_sym_LT, + ACTIONS(4962), 1, anon_sym_where, ACTIONS(4996), 1, anon_sym_SEMI, ACTIONS(4998), 1, anon_sym_LBRACE, - ACTIONS(5000), 1, - anon_sym_DASH_GT, - STATE(1224), 1, - sym_block, - STATE(2450), 1, + STATE(657), 1, + sym_field_declaration_list, + STATE(2262), 1, + sym_type_parameters, + STATE(2757), 1, + sym_ordered_field_declaration_list, + STATE(3231), 1, sym_where_clause, - STATE(3605), 1, - sym_label, - STATE(2184), 2, + STATE(2185), 2, sym_line_comment, sym_block_comment, - [68401] = 11, + [68357] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(5002), 1, - anon_sym_SEMI, - ACTIONS(5004), 1, - anon_sym_LBRACE, - ACTIONS(5006), 1, - anon_sym_DASH_GT, - STATE(704), 1, - sym_block, - STATE(2447), 1, - sym_where_clause, - STATE(3602), 1, - sym_label, - STATE(2185), 2, + ACTIONS(4482), 1, + anon_sym_BANG, + ACTIONS(4492), 1, + anon_sym_LPAREN, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(5000), 1, + anon_sym_COLON_COLON, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2186), 2, sym_line_comment, sym_block_comment, - [68436] = 11, + ACTIONS(4490), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + [68389] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(5004), 1, - anon_sym_LBRACE, - ACTIONS(5008), 1, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5002), 1, + anon_sym_for, + STATE(1945), 1, + sym_type_arguments, + STATE(1953), 1, + sym_parameters, + STATE(2187), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3332), 4, anon_sym_SEMI, - ACTIONS(5010), 1, + anon_sym_LBRACE, anon_sym_PLUS, - STATE(522), 1, - sym_block, - STATE(2483), 1, - sym_where_clause, - STATE(3602), 1, - sym_label, - STATE(2186), 2, + anon_sym_where, + [68421] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5004), 1, + anon_sym_for, + STATE(1945), 1, + sym_type_arguments, + STATE(1953), 1, + sym_parameters, + STATE(2188), 2, sym_line_comment, sym_block_comment, - [68471] = 11, + ACTIONS(3332), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [68453] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(4902), 1, + ACTIONS(4956), 1, + anon_sym_LPAREN, + ACTIONS(4960), 1, + anon_sym_LT, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(5004), 1, + ACTIONS(4998), 1, anon_sym_LBRACE, - ACTIONS(5012), 1, + ACTIONS(5006), 1, anon_sym_SEMI, - ACTIONS(5014), 1, - anon_sym_DASH_GT, - STATE(663), 1, - sym_block, - STATE(2444), 1, + STATE(620), 1, + sym_field_declaration_list, + STATE(2267), 1, + sym_type_parameters, + STATE(2761), 1, + sym_ordered_field_declaration_list, + STATE(3085), 1, sym_where_clause, - STATE(3602), 1, - sym_label, - STATE(2187), 2, + STATE(2189), 2, sym_line_comment, sym_block_comment, - [68506] = 6, + [68491] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4697), 1, - anon_sym_COLON_COLON, - ACTIONS(4815), 1, - anon_sym_BANG, - STATE(2188), 2, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5008), 1, + anon_sym_COLON, + ACTIONS(5010), 1, + anon_sym_LT, + STATE(1219), 1, + sym_declaration_list, + STATE(2359), 1, + sym_type_parameters, + STATE(2722), 1, + sym_trait_bounds, + STATE(3337), 1, + sym_where_clause, + STATE(2190), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68531] = 11, + [68526] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(4777), 1, + ACTIONS(4821), 1, sym_identifier, - ACTIONS(4783), 1, + ACTIONS(4827), 1, sym_crate, - STATE(1052), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(3136), 1, - sym_field_declaration, - STATE(3566), 1, + STATE(2238), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3269), 1, + sym_enum_variant, + STATE(3355), 1, sym_visibility_modifier, - STATE(2189), 2, + STATE(2191), 2, sym_line_comment, sym_block_comment, - [68566] = 11, + [68561] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + STATE(2192), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4903), 8, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(5016), 1, - anon_sym_COLON, - ACTIONS(5018), 1, - anon_sym_LT, - STATE(1159), 1, - sym_declaration_list, - STATE(2389), 1, - sym_type_parameters, - STATE(2528), 1, - sym_trait_bounds, - STATE(3125), 1, - sym_where_clause, - STATE(2190), 2, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [68582] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4743), 1, + anon_sym_COLON_COLON, + ACTIONS(4809), 1, + anon_sym_BANG, + STATE(2193), 2, sym_line_comment, sym_block_comment, - [68601] = 6, + ACTIONS(3367), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68607] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4546), 1, + ACTIONS(4532), 1, anon_sym_trait, - ACTIONS(5020), 1, + ACTIONS(5012), 1, anon_sym_impl, - STATE(2191), 2, + STATE(2194), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 6, + ACTIONS(3367), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68626] = 4, + [68632] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2192), 2, + ACTIONS(1429), 1, + aux_sym_string_literal_token1, + STATE(2214), 1, + sym_string_literal, + STATE(2195), 2, sym_line_comment, sym_block_comment, - ACTIONS(4904), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [68647] = 11, + ACTIONS(4719), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68657] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5017), 1, + anon_sym_fn, + ACTIONS(5019), 1, + anon_sym_extern, + STATE(2306), 1, + sym_extern_modifier, + STATE(2196), 3, + sym_line_comment, + sym_block_comment, + aux_sym_function_modifiers_repeat1, + ACTIONS(5014), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [68684] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(4783), 1, + ACTIONS(4827), 1, sym_crate, - ACTIONS(4857), 1, + ACTIONS(4845), 1, sym_identifier, - STATE(1479), 1, - sym_attribute_item, - STATE(2211), 1, + STATE(1096), 1, aux_sym_enum_variant_list_repeat1, - STATE(3203), 1, - sym_enum_variant, - STATE(3446), 1, + STATE(1490), 1, + sym_attribute_item, + STATE(2805), 1, + sym_field_declaration, + STATE(3478), 1, sym_visibility_modifier, - STATE(2193), 2, - sym_line_comment, - sym_block_comment, - [68682] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4998), 1, - anon_sym_LBRACE, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5022), 1, - anon_sym_SEMI, - STATE(1381), 1, - sym_block, - STATE(2463), 1, - sym_where_clause, - STATE(3605), 1, - sym_label, - STATE(2194), 2, + STATE(2197), 2, sym_line_comment, sym_block_comment, - [68717] = 4, + [68719] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2195), 2, + STATE(2198), 2, sym_line_comment, sym_block_comment, - ACTIONS(4904), 8, + ACTIONS(4903), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -167965,39 +168483,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [68738] = 11, + [68740] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(4998), 1, + ACTIONS(5022), 1, + anon_sym_SEMI, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5024), 1, - anon_sym_SEMI, - STATE(1391), 1, + STATE(703), 1, sym_block, - STATE(2464), 1, + STATE(2491), 1, sym_where_clause, - STATE(3605), 1, + STATE(3612), 1, sym_label, - STATE(2196), 2, + STATE(2199), 2, sym_line_comment, sym_block_comment, - [68773] = 4, + [68775] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2197), 2, + STATE(2200), 2, sym_line_comment, sym_block_comment, - ACTIONS(4904), 8, + ACTIONS(4903), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -168006,2104 +168524,2029 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [68794] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1507), 1, - anon_sym_DOT_DOT, - ACTIONS(5026), 1, - sym_identifier, - ACTIONS(5028), 1, - anon_sym_RBRACE, - ACTIONS(5030), 1, - anon_sym_COMMA, - ACTIONS(5032), 1, - anon_sym_ref, - ACTIONS(5034), 1, - sym_mutable_specifier, - STATE(2198), 2, - sym_line_comment, - sym_block_comment, - STATE(2966), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [68827] = 11, + [68796] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4998), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(5036), 1, - anon_sym_SEMI, - ACTIONS(5038), 1, - anon_sym_DASH_GT, - STATE(1188), 1, - sym_block, - STATE(2446), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5008), 1, + anon_sym_COLON, + ACTIONS(5010), 1, + anon_sym_LT, + STATE(1439), 1, + sym_declaration_list, + STATE(2332), 1, + sym_type_parameters, + STATE(2738), 1, + sym_trait_bounds, + STATE(3332), 1, sym_where_clause, - STATE(3605), 1, - sym_label, - STATE(2199), 2, + STATE(2201), 2, sym_line_comment, sym_block_comment, - [68862] = 11, + [68831] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(5016), 1, + ACTIONS(5008), 1, anon_sym_COLON, - ACTIONS(5018), 1, + ACTIONS(5010), 1, anon_sym_LT, - STATE(750), 1, - sym_declaration_list, - STATE(2325), 1, + ACTIONS(5028), 1, + anon_sym_SEMI, + ACTIONS(5030), 1, + anon_sym_EQ, + STATE(2333), 1, sym_type_parameters, - STATE(2525), 1, + STATE(2917), 1, sym_trait_bounds, - STATE(3249), 1, + STATE(3636), 1, sym_where_clause, - STATE(2200), 2, + STATE(2202), 2, sym_line_comment, sym_block_comment, - [68897] = 11, + [68866] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4998), 1, - anon_sym_LBRACE, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5040), 1, - anon_sym_SEMI, - STATE(1401), 1, - sym_block, - STATE(2465), 1, - sym_where_clause, - STATE(3605), 1, - sym_label, - STATE(2201), 2, + ACTIONS(2992), 1, + anon_sym_POUND, + ACTIONS(4827), 1, + sym_crate, + ACTIONS(4845), 1, + sym_identifier, + STATE(1096), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1490), 1, + sym_attribute_item, + STATE(3136), 1, + sym_field_declaration, + STATE(3478), 1, + sym_visibility_modifier, + STATE(2203), 2, sym_line_comment, sym_block_comment, - [68932] = 10, + [68901] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1507), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT, - ACTIONS(5026), 1, - sym_identifier, ACTIONS(5032), 1, - anon_sym_ref, + sym_identifier, ACTIONS(5034), 1, - sym_mutable_specifier, - ACTIONS(5042), 1, anon_sym_RBRACE, - ACTIONS(5044), 1, + ACTIONS(5036), 1, anon_sym_COMMA, - STATE(2202), 2, + ACTIONS(5038), 1, + anon_sym_ref, + ACTIONS(5040), 1, + sym_mutable_specifier, + STATE(2204), 2, sym_line_comment, sym_block_comment, - STATE(2850), 2, + STATE(2766), 2, sym_field_pattern, sym_remaining_field_pattern, - [68965] = 6, + [68934] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1421), 1, - aux_sym_string_literal_token1, - STATE(2229), 1, - sym_string_literal, - STATE(2203), 2, + ACTIONS(1515), 1, + anon_sym_DOT_DOT, + ACTIONS(5032), 1, + sym_identifier, + ACTIONS(5038), 1, + anon_sym_ref, + ACTIONS(5040), 1, + sym_mutable_specifier, + ACTIONS(5042), 1, + anon_sym_RBRACE, + ACTIONS(5044), 1, + anon_sym_COMMA, + STATE(2205), 2, sym_line_comment, sym_block_comment, - ACTIONS(4713), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68990] = 10, + STATE(2767), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [68967] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4470), 1, - anon_sym_BANG, - ACTIONS(4478), 1, - anon_sym_PIPE, - ACTIONS(4480), 1, - anon_sym_LPAREN, - ACTIONS(4484), 1, - anon_sym_COLON, - ACTIONS(4488), 1, - anon_sym_DOT_DOT, - ACTIONS(5046), 1, - anon_sym_COLON_COLON, - ACTIONS(4490), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2204), 2, + STATE(2206), 2, sym_line_comment, sym_block_comment, - [69023] = 11, + ACTIONS(4903), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [68988] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(4998), 1, - anon_sym_LBRACE, - ACTIONS(5048), 1, + ACTIONS(5046), 1, anon_sym_SEMI, + ACTIONS(5048), 1, + anon_sym_LBRACE, ACTIONS(5050), 1, anon_sym_DASH_GT, - STATE(1296), 1, + STATE(1122), 1, sym_block, - STATE(2459), 1, + STATE(2441), 1, sym_where_clause, - STATE(3605), 1, + STATE(3615), 1, sym_label, - STATE(2205), 2, + STATE(2207), 2, sym_line_comment, sym_block_comment, - [69058] = 11, + [69023] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(5016), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5008), 1, anon_sym_COLON, - ACTIONS(5018), 1, + ACTIONS(5010), 1, anon_sym_LT, - STATE(1233), 1, + STATE(1144), 1, sym_declaration_list, - STATE(2380), 1, + STATE(2349), 1, sym_type_parameters, - STATE(2554), 1, + STATE(2621), 1, sym_trait_bounds, - STATE(3236), 1, + STATE(3305), 1, sym_where_clause, - STATE(2206), 2, - sym_line_comment, - sym_block_comment, - [69093] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2207), 2, + STATE(2208), 2, sym_line_comment, sym_block_comment, - ACTIONS(4904), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [69114] = 11, + [69058] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(4998), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, - anon_sym_PLUS, ACTIONS(5052), 1, anon_sym_SEMI, - STATE(1307), 1, + ACTIONS(5054), 1, + anon_sym_DASH_GT, + STATE(1175), 1, sym_block, - STATE(2460), 1, + STATE(2499), 1, sym_where_clause, - STATE(3605), 1, + STATE(3615), 1, sym_label, - STATE(2208), 2, + STATE(2209), 2, sym_line_comment, sym_block_comment, - [69149] = 4, + [69093] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2209), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4904), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3443), 1, anon_sym_SQUOTE, + ACTIONS(4962), 1, anon_sym_where, - [69170] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(2980), 1, - anon_sym_POUND, - ACTIONS(4777), 1, - sym_identifier, - ACTIONS(4783), 1, - sym_crate, - STATE(1052), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1479), 1, - sym_attribute_item, - STATE(3029), 1, - sym_field_declaration, - STATE(3566), 1, - sym_visibility_modifier, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5056), 1, + anon_sym_SEMI, + ACTIONS(5058), 1, + anon_sym_DASH_GT, + STATE(1210), 1, + sym_block, + STATE(2404), 1, + sym_where_clause, + STATE(3615), 1, + sym_label, STATE(2210), 2, sym_line_comment, sym_block_comment, - [69205] = 11, + [69128] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(4783), 1, + ACTIONS(4827), 1, sym_crate, - ACTIONS(4857), 1, + ACTIONS(4845), 1, sym_identifier, - STATE(1052), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(3051), 1, - sym_enum_variant, - STATE(3446), 1, + STATE(2203), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3319), 1, + sym_field_declaration, + STATE(3478), 1, sym_visibility_modifier, STATE(2211), 2, sym_line_comment, sym_block_comment, - [69240] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [69163] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, - anon_sym_POUND, - ACTIONS(4777), 1, - sym_identifier, - ACTIONS(4783), 1, - sym_crate, - STATE(1479), 1, - sym_attribute_item, - STATE(2189), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3283), 1, - sym_field_declaration, - STATE(3566), 1, - sym_visibility_modifier, STATE(2212), 2, sym_line_comment, sym_block_comment, - [69275] = 7, + ACTIONS(4903), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [69184] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5057), 1, - anon_sym_fn, - ACTIONS(5059), 1, - anon_sym_extern, - STATE(2318), 1, - sym_extern_modifier, - STATE(2213), 3, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(5060), 1, + anon_sym_SEMI, + ACTIONS(5062), 1, + anon_sym_DASH_GT, + STATE(639), 1, + sym_block, + STATE(2470), 1, + sym_where_clause, + STATE(3612), 1, + sym_label, + STATE(2213), 2, sym_line_comment, sym_block_comment, - aux_sym_function_modifiers_repeat1, - ACTIONS(5054), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [69302] = 10, + [69219] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1507), 1, - anon_sym_DOT_DOT, - ACTIONS(5026), 1, - sym_identifier, - ACTIONS(5032), 1, - anon_sym_ref, - ACTIONS(5034), 1, - sym_mutable_specifier, - ACTIONS(5062), 1, - anon_sym_RBRACE, - ACTIONS(5064), 1, - anon_sym_COMMA, STATE(2214), 2, sym_line_comment, sym_block_comment, - STATE(2852), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [69335] = 11, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(5064), 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, + [69240] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, - anon_sym_POUND, - ACTIONS(4783), 1, - sym_crate, - ACTIONS(4857), 1, - sym_identifier, - STATE(1052), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1479), 1, - sym_attribute_item, - STATE(2959), 1, - sym_enum_variant, - STATE(3446), 1, - sym_visibility_modifier, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5066), 1, + anon_sym_SEMI, + STATE(558), 1, + sym_block, + STATE(2476), 1, + sym_where_clause, + STATE(3612), 1, + sym_label, STATE(2215), 2, sym_line_comment, sym_block_comment, - [69370] = 11, + [69275] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(5016), 1, - anon_sym_COLON, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5066), 1, - anon_sym_SEMI, + ACTIONS(5048), 1, + anon_sym_LBRACE, ACTIONS(5068), 1, - anon_sym_EQ, - STATE(2381), 1, - sym_type_parameters, - STATE(2994), 1, - sym_trait_bounds, - STATE(3548), 1, + anon_sym_SEMI, + ACTIONS(5070), 1, + anon_sym_DASH_GT, + STATE(1267), 1, + sym_block, + STATE(2417), 1, sym_where_clause, + STATE(3615), 1, + sym_label, STATE(2216), 2, sym_line_comment, sym_block_comment, - [69405] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [69310] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, - anon_sym_POUND, - ACTIONS(4783), 1, - sym_crate, - ACTIONS(4857), 1, - sym_identifier, - STATE(1052), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1479), 1, - sym_attribute_item, - STATE(2950), 1, - sym_enum_variant, - STATE(3446), 1, - sym_visibility_modifier, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5072), 1, + anon_sym_SEMI, + ACTIONS(5074), 1, + anon_sym_DASH_GT, + STATE(1281), 1, + sym_block, + STATE(2420), 1, + sym_where_clause, + STATE(3615), 1, + sym_label, STATE(2217), 2, sym_line_comment, sym_block_comment, - [69440] = 11, + [69345] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(4948), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5016), 1, - anon_sym_COLON, - ACTIONS(5018), 1, - anon_sym_LT, - STATE(638), 1, - sym_declaration_list, - STATE(2321), 1, - sym_type_parameters, - STATE(2508), 1, - sym_trait_bounds, - STATE(3053), 1, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5076), 1, + anon_sym_SEMI, + STATE(568), 1, + sym_block, + STATE(2479), 1, sym_where_clause, + STATE(3612), 1, + sym_label, STATE(2218), 2, sym_line_comment, sym_block_comment, - [69475] = 11, + [69380] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(5004), 1, - anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5070), 1, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5078), 1, anon_sym_SEMI, - STATE(487), 1, + STATE(1291), 1, sym_block, - STATE(2468), 1, + STATE(2422), 1, sym_where_clause, - STATE(3602), 1, + STATE(3615), 1, sym_label, STATE(2219), 2, sym_line_comment, sym_block_comment, - [69510] = 11, + [69415] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, + ACTIONS(2992), 1, anon_sym_POUND, - ACTIONS(4777), 1, + ACTIONS(4821), 1, sym_identifier, - ACTIONS(4783), 1, + ACTIONS(4827), 1, sym_crate, - STATE(1052), 1, + STATE(1096), 1, aux_sym_enum_variant_list_repeat1, - STATE(1479), 1, + STATE(1490), 1, sym_attribute_item, - STATE(2992), 1, - sym_field_declaration, - STATE(3566), 1, + STATE(2929), 1, + sym_enum_variant, + STATE(3355), 1, sym_visibility_modifier, STATE(2220), 2, sym_line_comment, sym_block_comment, - [69545] = 11, + [69450] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(5004), 1, - anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5072), 1, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5080), 1, anon_sym_SEMI, - STATE(561), 1, + STATE(1324), 1, sym_block, - STATE(2492), 1, + STATE(2403), 1, sym_where_clause, - STATE(3602), 1, + STATE(3615), 1, sym_label, STATE(2221), 2, sym_line_comment, sym_block_comment, - [69580] = 8, + [69485] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5074), 1, - anon_sym_fn, - ACTIONS(5076), 1, - anon_sym_extern, - STATE(2213), 1, - aux_sym_function_modifiers_repeat1, - STATE(2318), 1, - sym_extern_modifier, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5082), 1, + anon_sym_SEMI, + ACTIONS(5084), 1, + anon_sym_DASH_GT, + STATE(1333), 1, + sym_block, + STATE(2426), 1, + sym_where_clause, + STATE(3615), 1, + sym_label, STATE(2222), 2, sym_line_comment, sym_block_comment, - ACTIONS(4506), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [69609] = 11, + [69520] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(5004), 1, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5078), 1, + ACTIONS(5086), 1, anon_sym_SEMI, - ACTIONS(5080), 1, - anon_sym_DASH_GT, - STATE(531), 1, + STATE(1362), 1, sym_block, - STATE(2485), 1, + STATE(2428), 1, sym_where_clause, - STATE(3602), 1, + STATE(3615), 1, sym_label, STATE(2223), 2, sym_line_comment, sym_block_comment, - [69644] = 11, + [69555] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(5004), 1, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5082), 1, + ACTIONS(5088), 1, anon_sym_SEMI, - ACTIONS(5084), 1, - anon_sym_DASH_GT, - STATE(674), 1, + STATE(1372), 1, sym_block, - STATE(2491), 1, + STATE(2429), 1, sym_where_clause, - STATE(3602), 1, + STATE(3615), 1, sym_label, STATE(2224), 2, sym_line_comment, sym_block_comment, - [69679] = 11, + [69590] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(5004), 1, - anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5086), 1, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5090), 1, anon_sym_SEMI, - STATE(571), 1, + STATE(1382), 1, sym_block, - STATE(2494), 1, + STATE(2430), 1, sym_where_clause, - STATE(3602), 1, + STATE(3615), 1, sym_label, STATE(2225), 2, sym_line_comment, sym_block_comment, - [69714] = 11, + [69625] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(5004), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5088), 1, + ACTIONS(5092), 1, anon_sym_SEMI, - ACTIONS(5090), 1, + ACTIONS(5094), 1, anon_sym_DASH_GT, - STATE(724), 1, + STATE(680), 1, sym_block, - STATE(2400), 1, + STATE(2451), 1, sym_where_clause, - STATE(3602), 1, + STATE(3612), 1, sym_label, STATE(2226), 2, sym_line_comment, sym_block_comment, - [69749] = 11, + [69660] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(1515), 1, + anon_sym_DOT_DOT, + ACTIONS(5032), 1, + sym_identifier, + ACTIONS(5038), 1, + anon_sym_ref, + ACTIONS(5040), 1, + sym_mutable_specifier, + ACTIONS(5096), 1, + anon_sym_RBRACE, + ACTIONS(5098), 1, + anon_sym_COMMA, + STATE(2227), 2, + sym_line_comment, + sym_block_comment, + STATE(2937), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [69693] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(4998), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5092), 1, + ACTIONS(5100), 1, anon_sym_SEMI, - ACTIONS(5094), 1, + ACTIONS(5102), 1, anon_sym_DASH_GT, - STATE(1136), 1, + STATE(733), 1, sym_block, - STATE(2440), 1, + STATE(2456), 1, sym_where_clause, - STATE(3605), 1, + STATE(3612), 1, sym_label, - STATE(2227), 2, + STATE(2228), 2, sym_line_comment, sym_block_comment, - [69784] = 11, + [69728] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(4998), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5096), 1, + ACTIONS(5104), 1, anon_sym_SEMI, - STATE(1251), 1, + ACTIONS(5106), 1, + anon_sym_DASH_GT, + STATE(749), 1, sym_block, - STATE(2505), 1, + STATE(2425), 1, sym_where_clause, - STATE(3605), 1, + STATE(3612), 1, sym_label, - STATE(2228), 2, + STATE(2229), 2, sym_line_comment, sym_block_comment, - [69819] = 4, + [69763] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2229), 2, + ACTIONS(1515), 1, + anon_sym_DOT_DOT, + ACTIONS(5032), 1, + sym_identifier, + ACTIONS(5038), 1, + anon_sym_ref, + ACTIONS(5040), 1, + sym_mutable_specifier, + ACTIONS(5108), 1, + anon_sym_RBRACE, + ACTIONS(5110), 1, + anon_sym_COMMA, + STATE(2230), 2, sym_line_comment, sym_block_comment, - ACTIONS(5098), 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, - [69840] = 11, + STATE(2965), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [69796] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, + ACTIONS(4929), 1, anon_sym_LBRACE, - ACTIONS(5016), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5008), 1, anon_sym_COLON, - ACTIONS(5018), 1, + ACTIONS(5010), 1, anon_sym_LT, - STATE(733), 1, + STATE(689), 1, sym_declaration_list, - STATE(2342), 1, + STATE(2378), 1, sym_type_parameters, - STATE(2582), 1, + STATE(2620), 1, sym_trait_bounds, - STATE(3207), 1, + STATE(3147), 1, sym_where_clause, - STATE(2230), 2, + STATE(2231), 2, sym_line_comment, sym_block_comment, - [69875] = 11, + [69831] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(4482), 1, + anon_sym_BANG, + ACTIONS(4490), 1, + anon_sym_PIPE, + ACTIONS(4492), 1, + anon_sym_LPAREN, + ACTIONS(4496), 1, + anon_sym_COLON, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(5112), 1, + anon_sym_COLON_COLON, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2232), 2, + sym_line_comment, + sym_block_comment, + [69864] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5114), 1, + anon_sym_fn, + ACTIONS(5116), 1, + anon_sym_extern, + STATE(2196), 1, + aux_sym_function_modifiers_repeat1, + STATE(2306), 1, + sym_extern_modifier, + STATE(2233), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4518), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [69893] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(5004), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5100), 1, + ACTIONS(5118), 1, anon_sym_SEMI, - STATE(481), 1, + STATE(579), 1, sym_block, - STATE(2417), 1, + STATE(2498), 1, sym_where_clause, - STATE(3602), 1, + STATE(3612), 1, sym_label, - STATE(2231), 2, + STATE(2234), 2, sym_line_comment, sym_block_comment, - [69910] = 11, + [69928] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5016), 1, - anon_sym_COLON, - ACTIONS(5018), 1, - anon_sym_LT, - STATE(1106), 1, - sym_declaration_list, - STATE(2323), 1, - sym_type_parameters, - STATE(2729), 1, - sym_trait_bounds, - STATE(3260), 1, - sym_where_clause, - STATE(2232), 2, + ACTIONS(2992), 1, + anon_sym_POUND, + ACTIONS(4821), 1, + sym_identifier, + ACTIONS(4827), 1, + sym_crate, + STATE(1096), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1490), 1, + sym_attribute_item, + STATE(2817), 1, + sym_enum_variant, + STATE(3355), 1, + sym_visibility_modifier, + STATE(2235), 2, sym_line_comment, sym_block_comment, - [69945] = 11, + [69963] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(5016), 1, - anon_sym_COLON, - ACTIONS(5018), 1, - anon_sym_LT, - ACTIONS(5102), 1, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5120), 1, anon_sym_SEMI, - ACTIONS(5104), 1, - anon_sym_EQ, - STATE(2334), 1, - sym_type_parameters, - STATE(2804), 1, - sym_trait_bounds, - STATE(3458), 1, + STATE(522), 1, + sym_block, + STATE(2406), 1, sym_where_clause, - STATE(2233), 2, + STATE(3612), 1, + sym_label, + STATE(2236), 2, sym_line_comment, sym_block_comment, - [69980] = 10, + [69998] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1507), 1, - anon_sym_DOT_DOT, - ACTIONS(5026), 1, + ACTIONS(2992), 1, + anon_sym_POUND, + ACTIONS(4827), 1, + sym_crate, + ACTIONS(4845), 1, sym_identifier, - ACTIONS(5032), 1, - anon_sym_ref, - ACTIONS(5034), 1, - sym_mutable_specifier, - ACTIONS(5106), 1, - anon_sym_RBRACE, - ACTIONS(5108), 1, - anon_sym_COMMA, - STATE(2234), 2, + STATE(1096), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1490), 1, + sym_attribute_item, + STATE(2827), 1, + sym_field_declaration, + STATE(3478), 1, + sym_visibility_modifier, + STATE(2237), 2, sym_line_comment, sym_block_comment, - STATE(2938), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70013] = 11, + [70033] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(2992), 1, + anon_sym_POUND, + ACTIONS(4821), 1, + sym_identifier, + ACTIONS(4827), 1, + sym_crate, + STATE(1096), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1490), 1, + sym_attribute_item, + STATE(3099), 1, + sym_enum_variant, + STATE(3355), 1, + sym_visibility_modifier, + STATE(2238), 2, + sym_line_comment, + sym_block_comment, + [70068] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(5004), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5110), 1, + ACTIONS(5122), 1, anon_sym_SEMI, - ACTIONS(5112), 1, + ACTIONS(5124), 1, anon_sym_DASH_GT, - STATE(603), 1, + STATE(530), 1, sym_block, - STATE(2404), 1, + STATE(2408), 1, sym_where_clause, - STATE(3602), 1, + STATE(3612), 1, sym_label, - STATE(2235), 2, + STATE(2239), 2, sym_line_comment, sym_block_comment, - [70048] = 11, + [70103] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(5004), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5114), 1, + ACTIONS(5126), 1, anon_sym_SEMI, - STATE(581), 1, + STATE(488), 1, sym_block, - STATE(2497), 1, + STATE(2446), 1, sym_where_clause, - STATE(3602), 1, + STATE(3612), 1, sym_label, - STATE(2236), 2, + STATE(2240), 2, sym_line_comment, sym_block_comment, - [70083] = 11, + [70138] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(4902), 1, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(4998), 1, + ACTIONS(5008), 1, + anon_sym_COLON, + ACTIONS(5010), 1, + anon_sym_LT, + STATE(613), 1, + sym_declaration_list, + STATE(2360), 1, + sym_type_parameters, + STATE(2737), 1, + sym_trait_bounds, + STATE(3223), 1, + sym_where_clause, + STATE(2241), 2, + sym_line_comment, + sym_block_comment, + [70173] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4929), 1, anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5008), 1, + anon_sym_COLON, ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5116), 1, - anon_sym_SEMI, - STATE(1341), 1, - sym_block, - STATE(2461), 1, + anon_sym_LT, + STATE(678), 1, + sym_declaration_list, + STATE(2382), 1, + sym_type_parameters, + STATE(2671), 1, + sym_trait_bounds, + STATE(3109), 1, sym_where_clause, - STATE(3605), 1, - sym_label, - STATE(2237), 2, + STATE(2242), 2, sym_line_comment, sym_block_comment, - [70118] = 11, + [70208] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(4998), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5118), 1, + ACTIONS(5128), 1, anon_sym_SEMI, - ACTIONS(5120), 1, + ACTIONS(5130), 1, anon_sym_DASH_GT, - STATE(1350), 1, + STATE(591), 1, sym_block, - STATE(2462), 1, + STATE(2475), 1, sym_where_clause, - STATE(3605), 1, + STATE(3612), 1, sym_label, - STATE(2238), 2, + STATE(2243), 2, sym_line_comment, sym_block_comment, - [70153] = 11, + [70243] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5008), 1, + anon_sym_COLON, + ACTIONS(5010), 1, + anon_sym_LT, + ACTIONS(5132), 1, + anon_sym_SEMI, + ACTIONS(5134), 1, + anon_sym_EQ, + STATE(2385), 1, + sym_type_parameters, + STATE(2786), 1, + sym_trait_bounds, + STATE(3411), 1, + sym_where_clause, + STATE(2244), 2, + sym_line_comment, + sym_block_comment, + [70278] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(4998), 1, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5122), 1, + ACTIONS(5136), 1, anon_sym_SEMI, - ACTIONS(5124), 1, - anon_sym_DASH_GT, - STATE(1282), 1, + STATE(1237), 1, sym_block, - STATE(2458), 1, + STATE(2410), 1, sym_where_clause, - STATE(3605), 1, + STATE(3615), 1, sym_label, - STATE(2239), 2, + STATE(2245), 2, sym_line_comment, sym_block_comment, - [70188] = 8, + [70313] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4896), 1, + ACTIONS(4707), 1, + anon_sym_COLON_COLON, + ACTIONS(5138), 1, anon_sym_LPAREN, - ACTIONS(4944), 1, + ACTIONS(5140), 1, + anon_sym_LBRACK, + ACTIONS(5142), 1, + anon_sym_RBRACK, + ACTIONS(5144), 1, anon_sym_LBRACE, - ACTIONS(5128), 1, + ACTIONS(5146), 1, anon_sym_EQ, - ACTIONS(5126), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2240), 2, + STATE(3539), 1, + sym_delim_token_tree, + STATE(2246), 2, sym_line_comment, sym_block_comment, - STATE(2829), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [70216] = 10, + [70345] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(4811), 1, + anon_sym_DOT_DOT, + ACTIONS(4815), 1, + anon_sym_COLON_COLON, + ACTIONS(4813), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2247), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4506), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [70371] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5148), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, + ACTIONS(5150), 1, anon_sym_LBRACK, - ACTIONS(5134), 1, + ACTIONS(5152), 1, anon_sym_LBRACE, - ACTIONS(5136), 1, + ACTIONS(5154), 1, anon_sym_RBRACE, - STATE(2279), 1, + STATE(2261), 1, aux_sym_macro_definition_repeat1, - STATE(3309), 1, + STATE(3215), 1, sym_macro_rule, - STATE(3574), 1, + STATE(3565), 1, sym_token_tree_pattern, - STATE(2241), 2, + STATE(2248), 2, sym_line_comment, sym_block_comment, - [70248] = 10, + [70403] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4896), 1, - anon_sym_LPAREN, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4944), 1, - anon_sym_LBRACE, - ACTIONS(5138), 1, - anon_sym_SEMI, - STATE(1230), 1, - sym_field_declaration_list, - STATE(3005), 1, - sym_ordered_field_declaration_list, - STATE(3233), 1, - sym_where_clause, - STATE(2242), 2, + ACTIONS(1515), 1, + anon_sym_DOT_DOT, + ACTIONS(5032), 1, + sym_identifier, + ACTIONS(5038), 1, + anon_sym_ref, + ACTIONS(5040), 1, + sym_mutable_specifier, + ACTIONS(5156), 1, + anon_sym_RBRACE, + STATE(2249), 2, sym_line_comment, sym_block_comment, - [70280] = 9, + STATE(3230), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70433] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1507), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT, - ACTIONS(5026), 1, - sym_identifier, ACTIONS(5032), 1, + sym_identifier, + ACTIONS(5038), 1, anon_sym_ref, - ACTIONS(5034), 1, + ACTIONS(5040), 1, sym_mutable_specifier, - ACTIONS(5140), 1, + ACTIONS(5158), 1, anon_sym_RBRACE, - STATE(2243), 2, + STATE(2250), 2, sym_line_comment, sym_block_comment, - STATE(3234), 2, + STATE(3230), 2, sym_field_pattern, sym_remaining_field_pattern, - [70310] = 10, + [70463] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5148), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, + ACTIONS(5150), 1, anon_sym_LBRACK, - ACTIONS(5134), 1, + ACTIONS(5152), 1, anon_sym_LBRACE, - ACTIONS(5142), 1, - anon_sym_RPAREN, - STATE(2256), 1, + ACTIONS(5160), 1, + anon_sym_RBRACE, + STATE(2263), 1, aux_sym_macro_definition_repeat1, - STATE(3239), 1, + STATE(3227), 1, sym_macro_rule, - STATE(3574), 1, + STATE(3565), 1, sym_token_tree_pattern, - STATE(2244), 2, + STATE(2251), 2, sym_line_comment, sym_block_comment, - [70342] = 10, + [70495] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(4956), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_LBRACK, - ACTIONS(5134), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(5142), 1, - anon_sym_RBRACK, - STATE(2257), 1, - aux_sym_macro_definition_repeat1, - STATE(3240), 1, - sym_macro_rule, - STATE(3574), 1, - sym_token_tree_pattern, - STATE(2245), 2, + ACTIONS(5164), 1, + anon_sym_EQ, + ACTIONS(5162), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2252), 2, sym_line_comment, sym_block_comment, - [70374] = 10, + STATE(3011), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [70523] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_LBRACK, - ACTIONS(5134), 1, - anon_sym_LBRACE, - ACTIONS(5144), 1, + ACTIONS(1515), 1, + anon_sym_DOT_DOT, + ACTIONS(5032), 1, + sym_identifier, + ACTIONS(5038), 1, + anon_sym_ref, + ACTIONS(5040), 1, + sym_mutable_specifier, + ACTIONS(5166), 1, + anon_sym_RBRACE, + STATE(2253), 2, + sym_line_comment, + sym_block_comment, + STATE(3230), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70553] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(5170), 1, + anon_sym_COLON, + ACTIONS(5172), 1, + anon_sym_COLON_COLON, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5168), 2, anon_sym_RPAREN, - STATE(2258), 1, - aux_sym_macro_definition_repeat1, - STATE(3242), 1, - sym_macro_rule, - STATE(3574), 1, - sym_token_tree_pattern, - STATE(2246), 2, + anon_sym_COMMA, + STATE(2254), 2, sym_line_comment, sym_block_comment, - [70406] = 10, + [70581] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5148), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, + ACTIONS(5150), 1, anon_sym_LBRACK, - ACTIONS(5134), 1, + ACTIONS(5152), 1, anon_sym_LBRACE, - ACTIONS(5144), 1, - anon_sym_RBRACK, - STATE(2259), 1, + ACTIONS(5174), 1, + anon_sym_RPAREN, + STATE(2264), 1, aux_sym_macro_definition_repeat1, - STATE(3244), 1, + STATE(3263), 1, sym_macro_rule, - STATE(3574), 1, + STATE(3565), 1, sym_token_tree_pattern, - STATE(2247), 2, + STATE(2255), 2, sym_line_comment, sym_block_comment, - [70438] = 5, + [70613] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5146), 1, - sym_identifier, - STATE(2248), 2, + ACTIONS(5176), 1, + anon_sym_trait, + STATE(2256), 2, sym_line_comment, sym_block_comment, - ACTIONS(4733), 6, + ACTIONS(3367), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [70460] = 10, + [70635] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(4613), 1, + anon_sym_COLON_COLON, + ACTIONS(5138), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, + ACTIONS(5140), 1, anon_sym_LBRACK, - ACTIONS(5134), 1, + ACTIONS(5142), 1, + anon_sym_RBRACK, + ACTIONS(5144), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, - anon_sym_RPAREN, - STATE(2151), 1, - aux_sym_macro_definition_repeat1, - STATE(3049), 1, - sym_macro_rule, - STATE(3574), 1, - sym_token_tree_pattern, - STATE(2249), 2, + ACTIONS(5146), 1, + anon_sym_EQ, + STATE(3539), 1, + sym_delim_token_tree, + STATE(2257), 2, sym_line_comment, sym_block_comment, - [70492] = 10, + [70667] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(4956), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_LBRACK, - ACTIONS(5134), 1, + ACTIONS(4958), 1, anon_sym_LBRACE, - ACTIONS(5150), 1, - anon_sym_RPAREN, - STATE(2249), 1, - aux_sym_macro_definition_repeat1, - STATE(3054), 1, - sym_macro_rule, - STATE(3574), 1, - sym_token_tree_pattern, - STATE(2250), 2, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5178), 1, + anon_sym_SEMI, + STATE(1133), 1, + sym_field_declaration_list, + STATE(2788), 1, + sym_ordered_field_declaration_list, + STATE(3272), 1, + sym_where_clause, + STATE(2258), 2, sym_line_comment, sym_block_comment, - [70524] = 9, + [70699] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4190), 1, + ACTIONS(5148), 1, + anon_sym_LPAREN, + ACTIONS(5150), 1, + anon_sym_LBRACK, + ACTIONS(5152), 1, anon_sym_LBRACE, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5154), 1, - anon_sym_STAR, - STATE(2869), 1, - sym_use_list, - STATE(3225), 1, - sym_type_arguments, - ACTIONS(5152), 2, - sym_identifier, - sym_super, - STATE(2251), 2, - sym_line_comment, - sym_block_comment, - [70554] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4488), 1, - anon_sym_DOT_DOT, - ACTIONS(5156), 1, - anon_sym_COLON_COLON, - ACTIONS(4490), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2252), 2, + ACTIONS(5174), 1, + anon_sym_RBRACK, + STATE(2265), 1, + aux_sym_macro_definition_repeat1, + STATE(3102), 1, + sym_macro_rule, + STATE(3565), 1, + sym_token_tree_pattern, + STATE(2259), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [70580] = 9, + [70731] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1507), 1, - anon_sym_DOT_DOT, - ACTIONS(5026), 1, + ACTIONS(5180), 1, sym_identifier, - ACTIONS(5032), 1, - anon_sym_ref, - ACTIONS(5034), 1, - sym_mutable_specifier, - ACTIONS(5158), 1, - anon_sym_RBRACE, - STATE(2253), 2, + STATE(2260), 2, sym_line_comment, sym_block_comment, - STATE(3234), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70610] = 10, + ACTIONS(4783), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70753] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5148), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, + ACTIONS(5150), 1, anon_sym_LBRACK, - ACTIONS(5134), 1, + ACTIONS(5152), 1, anon_sym_LBRACE, - ACTIONS(5148), 1, - anon_sym_RBRACK, - STATE(2151), 1, + ACTIONS(5182), 1, + anon_sym_RBRACE, + STATE(2157), 1, aux_sym_macro_definition_repeat1, - STATE(3292), 1, + STATE(3073), 1, sym_macro_rule, - STATE(3574), 1, + STATE(3565), 1, sym_token_tree_pattern, - STATE(2254), 2, + STATE(2261), 2, sym_line_comment, sym_block_comment, - [70642] = 10, + [70785] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4896), 1, + ACTIONS(4956), 1, anon_sym_LPAREN, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(4944), 1, + ACTIONS(4998), 1, anon_sym_LBRACE, - ACTIONS(5160), 1, + ACTIONS(5184), 1, anon_sym_SEMI, - STATE(1148), 1, + STATE(602), 1, sym_field_declaration_list, - STATE(2902), 1, + STATE(2753), 1, sym_ordered_field_declaration_list, - STATE(3113), 1, + STATE(3060), 1, sym_where_clause, - STATE(2255), 2, + STATE(2262), 2, sym_line_comment, sym_block_comment, - [70674] = 10, + [70817] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5148), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, + ACTIONS(5150), 1, anon_sym_LBRACK, - ACTIONS(5134), 1, + ACTIONS(5152), 1, anon_sym_LBRACE, - ACTIONS(5162), 1, - anon_sym_RPAREN, - STATE(2151), 1, + ACTIONS(5186), 1, + anon_sym_RBRACE, + STATE(2157), 1, aux_sym_macro_definition_repeat1, - STATE(3253), 1, + STATE(3075), 1, sym_macro_rule, - STATE(3574), 1, + STATE(3565), 1, sym_token_tree_pattern, - STATE(2256), 2, + STATE(2263), 2, sym_line_comment, sym_block_comment, - [70706] = 10, + [70849] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5148), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, + ACTIONS(5150), 1, anon_sym_LBRACK, - ACTIONS(5134), 1, + ACTIONS(5152), 1, anon_sym_LBRACE, - ACTIONS(5162), 1, - anon_sym_RBRACK, - STATE(2151), 1, + ACTIONS(5188), 1, + anon_sym_RPAREN, + STATE(2157), 1, aux_sym_macro_definition_repeat1, - STATE(3254), 1, + STATE(3118), 1, sym_macro_rule, - STATE(3574), 1, + STATE(3565), 1, sym_token_tree_pattern, - STATE(2257), 2, + STATE(2264), 2, sym_line_comment, sym_block_comment, - [70738] = 10, + [70881] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5148), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, + ACTIONS(5150), 1, anon_sym_LBRACK, - ACTIONS(5134), 1, + ACTIONS(5152), 1, anon_sym_LBRACE, - ACTIONS(5164), 1, - anon_sym_RPAREN, - STATE(2151), 1, + ACTIONS(5188), 1, + anon_sym_RBRACK, + STATE(2157), 1, aux_sym_macro_definition_repeat1, - STATE(3255), 1, + STATE(3127), 1, sym_macro_rule, - STATE(3574), 1, + STATE(3565), 1, sym_token_tree_pattern, - STATE(2258), 2, + STATE(2265), 2, sym_line_comment, sym_block_comment, - [70770] = 10, + [70913] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5148), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, + ACTIONS(5150), 1, anon_sym_LBRACK, - ACTIONS(5134), 1, + ACTIONS(5152), 1, anon_sym_LBRACE, - ACTIONS(5164), 1, - anon_sym_RBRACK, - STATE(2151), 1, + ACTIONS(5190), 1, + anon_sym_RBRACE, + STATE(2157), 1, aux_sym_macro_definition_repeat1, - STATE(3256), 1, + STATE(3128), 1, sym_macro_rule, - STATE(3574), 1, + STATE(3565), 1, sym_token_tree_pattern, - STATE(2259), 2, + STATE(2266), 2, sym_line_comment, sym_block_comment, - [70802] = 10, + [70945] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(4956), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_LBRACK, - ACTIONS(5134), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(4998), 1, anon_sym_LBRACE, - ACTIONS(5166), 1, - anon_sym_RBRACE, - STATE(2151), 1, - aux_sym_macro_definition_repeat1, - STATE(3052), 1, - sym_macro_rule, - STATE(3574), 1, - sym_token_tree_pattern, - STATE(2260), 2, + ACTIONS(5192), 1, + anon_sym_SEMI, + STATE(686), 1, + sym_field_declaration_list, + STATE(2936), 1, + sym_ordered_field_declaration_list, + STATE(3140), 1, + sym_where_clause, + STATE(2267), 2, sym_line_comment, sym_block_comment, - [70834] = 8, + [70977] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4488), 1, - anon_sym_DOT_DOT, - ACTIONS(5170), 1, - anon_sym_COLON, - ACTIONS(5172), 1, - anon_sym_COLON_COLON, - ACTIONS(4490), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5168), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2261), 2, + ACTIONS(5148), 1, + anon_sym_LPAREN, + ACTIONS(5150), 1, + anon_sym_LBRACK, + ACTIONS(5152), 1, + anon_sym_LBRACE, + ACTIONS(5194), 1, + anon_sym_RBRACE, + STATE(2266), 1, + aux_sym_macro_definition_repeat1, + STATE(3138), 1, + sym_macro_rule, + STATE(3565), 1, + sym_token_tree_pattern, + STATE(2268), 2, sym_line_comment, sym_block_comment, - [70862] = 7, + [71009] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4488), 1, - anon_sym_DOT_DOT, - ACTIONS(5172), 1, - anon_sym_COLON_COLON, - ACTIONS(4490), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2262), 2, + ACTIONS(5148), 1, + anon_sym_LPAREN, + ACTIONS(5150), 1, + anon_sym_LBRACK, + ACTIONS(5152), 1, + anon_sym_LBRACE, + ACTIONS(5196), 1, + anon_sym_RPAREN, + STATE(2157), 1, + aux_sym_macro_definition_repeat1, + STATE(3142), 1, + sym_macro_rule, + STATE(3565), 1, + sym_token_tree_pattern, + STATE(2269), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [70888] = 8, + [71041] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4896), 1, + ACTIONS(5148), 1, anon_sym_LPAREN, - ACTIONS(4944), 1, + ACTIONS(5150), 1, + anon_sym_LBRACK, + ACTIONS(5152), 1, anon_sym_LBRACE, - ACTIONS(5176), 1, - anon_sym_EQ, - ACTIONS(5174), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2263), 2, + ACTIONS(5198), 1, + anon_sym_RPAREN, + STATE(2269), 1, + aux_sym_macro_definition_repeat1, + STATE(3207), 1, + sym_macro_rule, + STATE(3565), 1, + sym_token_tree_pattern, + STATE(2270), 2, sym_line_comment, sym_block_comment, - STATE(2943), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [70916] = 10, + [71073] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5148), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, + ACTIONS(5150), 1, anon_sym_LBRACK, - ACTIONS(5134), 1, + ACTIONS(5152), 1, anon_sym_LBRACE, - ACTIONS(5178), 1, - anon_sym_RBRACK, - STATE(2277), 1, + ACTIONS(5200), 1, + anon_sym_RPAREN, + STATE(2279), 1, aux_sym_macro_definition_repeat1, - STATE(3069), 1, + STATE(3240), 1, sym_macro_rule, - STATE(3574), 1, + STATE(3565), 1, sym_token_tree_pattern, - STATE(2264), 2, + STATE(2271), 2, sym_line_comment, sym_block_comment, - [70948] = 10, + [71105] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5148), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, + ACTIONS(5150), 1, anon_sym_LBRACK, - ACTIONS(5134), 1, + ACTIONS(5152), 1, anon_sym_LBRACE, - ACTIONS(5180), 1, - anon_sym_RBRACE, - STATE(2260), 1, + ACTIONS(5200), 1, + anon_sym_RBRACK, + STATE(2280), 1, aux_sym_macro_definition_repeat1, - STATE(3090), 1, + STATE(3242), 1, sym_macro_rule, - STATE(3574), 1, + STATE(3565), 1, sym_token_tree_pattern, - STATE(2265), 2, + STATE(2272), 2, sym_line_comment, sym_block_comment, - [70980] = 8, + [71137] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4488), 1, - anon_sym_DOT_DOT, - ACTIONS(5156), 1, - anon_sym_COLON_COLON, - ACTIONS(5170), 1, - anon_sym_COLON, - ACTIONS(4490), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5168), 2, + ACTIONS(5148), 1, + anon_sym_LPAREN, + ACTIONS(5150), 1, + anon_sym_LBRACK, + ACTIONS(5152), 1, + anon_sym_LBRACE, + ACTIONS(5202), 1, anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2266), 2, + STATE(2281), 1, + aux_sym_macro_definition_repeat1, + STATE(3243), 1, + sym_macro_rule, + STATE(3565), 1, + sym_token_tree_pattern, + STATE(2273), 2, sym_line_comment, sym_block_comment, - [71008] = 5, + [71169] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5182), 1, + ACTIONS(5204), 1, sym_identifier, - STATE(2267), 2, + STATE(2274), 2, sym_line_comment, sym_block_comment, - ACTIONS(4733), 6, + ACTIONS(4783), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [71030] = 9, + [71191] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1507), 1, - anon_sym_DOT_DOT, - ACTIONS(5026), 1, - sym_identifier, - ACTIONS(5032), 1, - anon_sym_ref, - ACTIONS(5034), 1, - sym_mutable_specifier, - ACTIONS(5184), 1, - anon_sym_RBRACE, - STATE(2268), 2, + ACTIONS(4956), 1, + anon_sym_LPAREN, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5206), 1, + anon_sym_SEMI, + STATE(1216), 1, + sym_field_declaration_list, + STATE(2833), 1, + sym_ordered_field_declaration_list, + STATE(3208), 1, + sym_where_clause, + STATE(2275), 2, sym_line_comment, sym_block_comment, - STATE(3234), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71060] = 9, + [71223] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1507), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT, - ACTIONS(5026), 1, - sym_identifier, ACTIONS(5032), 1, + sym_identifier, + ACTIONS(5038), 1, anon_sym_ref, - ACTIONS(5034), 1, + ACTIONS(5040), 1, sym_mutable_specifier, - ACTIONS(5186), 1, + ACTIONS(5208), 1, anon_sym_RBRACE, - STATE(2269), 2, + STATE(2276), 2, sym_line_comment, sym_block_comment, - STATE(3234), 2, + STATE(3230), 2, sym_field_pattern, sym_remaining_field_pattern, - [71090] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4691), 1, - anon_sym_COLON_COLON, - ACTIONS(5188), 1, - anon_sym_LPAREN, - ACTIONS(5190), 1, - anon_sym_LBRACK, - ACTIONS(5192), 1, - anon_sym_RBRACK, - ACTIONS(5194), 1, - anon_sym_LBRACE, - ACTIONS(5196), 1, - anon_sym_EQ, - STATE(3621), 1, - sym_delim_token_tree, - STATE(2270), 2, - sym_line_comment, - sym_block_comment, - [71122] = 9, + [71253] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1507), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT, - ACTIONS(5026), 1, - sym_identifier, ACTIONS(5032), 1, + sym_identifier, + ACTIONS(5038), 1, anon_sym_ref, - ACTIONS(5034), 1, + ACTIONS(5040), 1, sym_mutable_specifier, - ACTIONS(5198), 1, + ACTIONS(5210), 1, anon_sym_RBRACE, - STATE(2271), 2, + STATE(2277), 2, sym_line_comment, sym_block_comment, - STATE(3234), 2, + STATE(3230), 2, sym_field_pattern, sym_remaining_field_pattern, - [71152] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4601), 1, - anon_sym_COLON_COLON, - ACTIONS(5188), 1, - anon_sym_LPAREN, - ACTIONS(5190), 1, - anon_sym_LBRACK, - ACTIONS(5192), 1, - anon_sym_RBRACK, - ACTIONS(5194), 1, - anon_sym_LBRACE, - ACTIONS(5196), 1, - anon_sym_EQ, - STATE(3621), 1, - sym_delim_token_tree, - STATE(2272), 2, - sym_line_comment, - sym_block_comment, - [71184] = 10, + [71283] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4703), 1, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(5214), 1, + anon_sym_COLON, + ACTIONS(5216), 1, anon_sym_COLON_COLON, - ACTIONS(5188), 1, - anon_sym_LPAREN, - ACTIONS(5190), 1, - anon_sym_LBRACK, - ACTIONS(5192), 1, - anon_sym_RBRACK, - ACTIONS(5194), 1, - anon_sym_LBRACE, - ACTIONS(5196), 1, - anon_sym_EQ, - STATE(3621), 1, - sym_delim_token_tree, - STATE(2273), 2, - sym_line_comment, - sym_block_comment, - [71216] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_LBRACK, - ACTIONS(5134), 1, - anon_sym_LBRACE, - ACTIONS(5200), 1, - anon_sym_RBRACE, - STATE(2275), 1, - aux_sym_macro_definition_repeat1, - STATE(3063), 1, - sym_macro_rule, - STATE(3574), 1, - sym_token_tree_pattern, - STATE(2274), 2, - sym_line_comment, - sym_block_comment, - [71248] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_LBRACK, - ACTIONS(5134), 1, - anon_sym_LBRACE, - ACTIONS(5202), 1, - anon_sym_RBRACE, - STATE(2151), 1, - aux_sym_macro_definition_repeat1, - STATE(3298), 1, - sym_macro_rule, - STATE(3574), 1, - sym_token_tree_pattern, - STATE(2275), 2, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5212), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2278), 2, sym_line_comment, sym_block_comment, - [71280] = 10, + [71311] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5148), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, + ACTIONS(5150), 1, anon_sym_LBRACK, - ACTIONS(5134), 1, + ACTIONS(5152), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, + ACTIONS(5218), 1, anon_sym_RPAREN, - STATE(2151), 1, + STATE(2157), 1, aux_sym_macro_definition_repeat1, - STATE(3322), 1, + STATE(3259), 1, sym_macro_rule, - STATE(3574), 1, + STATE(3565), 1, sym_token_tree_pattern, - STATE(2276), 2, + STATE(2279), 2, sym_line_comment, sym_block_comment, - [71312] = 10, + [71343] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5148), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, + ACTIONS(5150), 1, anon_sym_LBRACK, - ACTIONS(5134), 1, + ACTIONS(5152), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, + ACTIONS(5218), 1, anon_sym_RBRACK, - STATE(2151), 1, + STATE(2157), 1, aux_sym_macro_definition_repeat1, - STATE(3324), 1, + STATE(3260), 1, sym_macro_rule, - STATE(3574), 1, + STATE(3565), 1, sym_token_tree_pattern, - STATE(2277), 2, - sym_line_comment, - sym_block_comment, - [71344] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4190), 1, - anon_sym_LBRACE, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5154), 1, - anon_sym_STAR, - STATE(2869), 1, - sym_use_list, - STATE(3246), 1, - sym_type_arguments, - ACTIONS(5152), 2, - sym_identifier, - sym_super, - STATE(2278), 2, + STATE(2280), 2, sym_line_comment, sym_block_comment, - [71374] = 10, + [71375] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5148), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, + ACTIONS(5150), 1, anon_sym_LBRACK, - ACTIONS(5134), 1, + ACTIONS(5152), 1, anon_sym_LBRACE, - ACTIONS(5206), 1, - anon_sym_RBRACE, - STATE(2151), 1, + ACTIONS(5220), 1, + anon_sym_RPAREN, + STATE(2157), 1, aux_sym_macro_definition_repeat1, - STATE(3151), 1, + STATE(3261), 1, sym_macro_rule, - STATE(3574), 1, + STATE(3565), 1, sym_token_tree_pattern, - STATE(2279), 2, - sym_line_comment, - sym_block_comment, - [71406] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5208), 1, - anon_sym_trait, - STATE(2280), 2, + STATE(2281), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71428] = 10, + [71407] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5148), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, + ACTIONS(5150), 1, anon_sym_LBRACK, - ACTIONS(5134), 1, + ACTIONS(5152), 1, anon_sym_LBRACE, - ACTIONS(5150), 1, + ACTIONS(5220), 1, anon_sym_RBRACK, - STATE(2254), 1, + STATE(2157), 1, aux_sym_macro_definition_repeat1, - STATE(3056), 1, + STATE(3262), 1, sym_macro_rule, - STATE(3574), 1, + STATE(3565), 1, sym_token_tree_pattern, - STATE(2281), 2, - sym_line_comment, - sym_block_comment, - [71460] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4896), 1, - anon_sym_LPAREN, - ACTIONS(4898), 1, - anon_sym_LBRACE, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(5210), 1, - anon_sym_SEMI, - STATE(730), 1, - sym_field_declaration_list, - STATE(2839), 1, - sym_ordered_field_declaration_list, - STATE(3128), 1, - sym_where_clause, STATE(2282), 2, sym_line_comment, sym_block_comment, - [71492] = 7, + [71439] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4488), 1, + ACTIONS(4500), 1, anon_sym_DOT_DOT, - ACTIONS(5212), 1, + ACTIONS(5216), 1, anon_sym_COLON_COLON, - ACTIONS(4490), 2, + ACTIONS(4502), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(2283), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 3, - anon_sym_SEMI, - anon_sym_RBRACK, + ACTIONS(3332), 3, + anon_sym_RPAREN, anon_sym_PLUS, - [71518] = 9, + anon_sym_COMMA, + [71465] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1507), 1, + ACTIONS(4500), 1, anon_sym_DOT_DOT, - ACTIONS(5026), 1, - sym_identifier, - ACTIONS(5032), 1, - anon_sym_ref, - ACTIONS(5034), 1, - sym_mutable_specifier, ACTIONS(5214), 1, - anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5222), 1, + anon_sym_COLON_COLON, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5212), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2284), 2, sym_line_comment, sym_block_comment, - STATE(3234), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71548] = 5, + [71493] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5216), 1, - sym_identifier, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(5222), 1, + anon_sym_COLON_COLON, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2285), 2, sym_line_comment, sym_block_comment, - ACTIONS(4733), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71570] = 9, + ACTIONS(3332), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [71519] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1507), 1, - anon_sym_DOT_DOT, - ACTIONS(5026), 1, - sym_identifier, - ACTIONS(5032), 1, - anon_sym_ref, - ACTIONS(5034), 1, - sym_mutable_specifier, - ACTIONS(5218), 1, + ACTIONS(4956), 1, + anon_sym_LPAREN, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(5226), 1, + anon_sym_EQ, + ACTIONS(5224), 2, anon_sym_RBRACE, + anon_sym_COMMA, STATE(2286), 2, sym_line_comment, sym_block_comment, - STATE(3234), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71600] = 10, + STATE(2925), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [71547] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4896), 1, + ACTIONS(5148), 1, anon_sym_LPAREN, - ACTIONS(4898), 1, + ACTIONS(5150), 1, + anon_sym_LBRACK, + ACTIONS(5152), 1, anon_sym_LBRACE, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(5220), 1, - anon_sym_SEMI, - STATE(620), 1, - sym_field_declaration_list, - STATE(2961), 1, - sym_ordered_field_declaration_list, - STATE(3089), 1, - sym_where_clause, + ACTIONS(5196), 1, + anon_sym_RBRACK, + STATE(2157), 1, + aux_sym_macro_definition_repeat1, + STATE(3144), 1, + sym_macro_rule, + STATE(3565), 1, + sym_token_tree_pattern, STATE(2287), 2, sym_line_comment, sym_block_comment, - [71632] = 8, + [71579] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4488), 1, - anon_sym_DOT_DOT, - ACTIONS(5224), 1, - anon_sym_COLON, - ACTIONS(5226), 1, - anon_sym_COLON_COLON, - ACTIONS(4490), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5222), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5148), 1, + anon_sym_LPAREN, + ACTIONS(5150), 1, + anon_sym_LBRACK, + ACTIONS(5152), 1, + anon_sym_LBRACE, + ACTIONS(5228), 1, + anon_sym_RBRACE, + STATE(2157), 1, + aux_sym_macro_definition_repeat1, + STATE(3150), 1, + sym_macro_rule, + STATE(3565), 1, + sym_token_tree_pattern, STATE(2288), 2, sym_line_comment, sym_block_comment, - [71660] = 10, + [71611] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5148), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, + ACTIONS(5150), 1, anon_sym_LBRACK, - ACTIONS(5134), 1, + ACTIONS(5152), 1, anon_sym_LBRACE, - ACTIONS(5228), 1, - anon_sym_RBRACE, - STATE(2151), 1, + ACTIONS(5198), 1, + anon_sym_RBRACK, + STATE(2287), 1, aux_sym_macro_definition_repeat1, - STATE(3152), 1, + STATE(3058), 1, sym_macro_rule, - STATE(3574), 1, + STATE(3565), 1, sym_token_tree_pattern, STATE(2289), 2, sym_line_comment, sym_block_comment, - [71692] = 7, + [71643] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4817), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT, - ACTIONS(4821), 1, - anon_sym_COLON_COLON, - ACTIONS(4819), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2290), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4494), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [71718] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, + ACTIONS(5032), 1, + sym_identifier, + ACTIONS(5038), 1, + anon_sym_ref, + ACTIONS(5040), 1, + sym_mutable_specifier, ACTIONS(5230), 1, - anon_sym_trait, - STATE(2291), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3359), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71740] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_LBRACK, - ACTIONS(5134), 1, - anon_sym_LBRACE, - ACTIONS(5178), 1, - anon_sym_RPAREN, - STATE(2276), 1, - aux_sym_macro_definition_repeat1, - STATE(3066), 1, - sym_macro_rule, - STATE(3574), 1, - sym_token_tree_pattern, - STATE(2292), 2, + anon_sym_RBRACE, + STATE(2290), 2, sym_line_comment, sym_block_comment, - [71772] = 5, + STATE(3230), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71673] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5232), 1, + ACTIONS(1515), 1, + anon_sym_DOT_DOT, + ACTIONS(5032), 1, sym_identifier, - STATE(2293), 2, + ACTIONS(5038), 1, + anon_sym_ref, + ACTIONS(5040), 1, + sym_mutable_specifier, + ACTIONS(5232), 1, + anon_sym_RBRACE, + STATE(2291), 2, sym_line_comment, sym_block_comment, - ACTIONS(4733), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71794] = 10, + STATE(3230), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71703] = 10, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, @@ -170116,3262 +170559,3320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG2, ACTIONS(5240), 1, anon_sym_SLASH2, - STATE(3412), 1, - sym__outer_line_doc_comment_marker, - STATE(3532), 1, + STATE(3449), 1, sym__line_doc_comment_marker, - STATE(3603), 1, + STATE(3482), 1, sym__inner_line_doc_comment_marker, - STATE(2294), 2, + STATE(3490), 1, + sym__outer_line_doc_comment_marker, + STATE(2292), 2, sym_line_comment, sym_block_comment, - [71826] = 9, + [71735] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1507), 1, + ACTIONS(1515), 1, anon_sym_DOT_DOT, - ACTIONS(5026), 1, - sym_identifier, ACTIONS(5032), 1, + sym_identifier, + ACTIONS(5038), 1, anon_sym_ref, - ACTIONS(5034), 1, + ACTIONS(5040), 1, sym_mutable_specifier, ACTIONS(5242), 1, anon_sym_RBRACE, - STATE(2295), 2, + STATE(2293), 2, sym_line_comment, sym_block_comment, - STATE(3234), 2, + STATE(3230), 2, sym_field_pattern, sym_remaining_field_pattern, - [71856] = 10, + [71765] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LPAREN, - ACTIONS(5132), 1, - anon_sym_LBRACK, - ACTIONS(5134), 1, - anon_sym_LBRACE, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, ACTIONS(5244), 1, - anon_sym_RBRACE, - STATE(2289), 1, - aux_sym_macro_definition_repeat1, - STATE(3323), 1, - sym_macro_rule, - STATE(3574), 1, - sym_token_tree_pattern, - STATE(2296), 2, + anon_sym_COLON_COLON, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2294), 2, sym_line_comment, sym_block_comment, - [71888] = 10, + ACTIONS(3332), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [71791] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4697), 1, + ACTIONS(5246), 1, + sym_identifier, + STATE(2295), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4783), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71813] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4787), 1, anon_sym_COLON_COLON, - ACTIONS(5188), 1, + ACTIONS(5138), 1, anon_sym_LPAREN, - ACTIONS(5190), 1, + ACTIONS(5140), 1, anon_sym_LBRACK, - ACTIONS(5194), 1, - anon_sym_LBRACE, - ACTIONS(5246), 1, + ACTIONS(5142), 1, anon_sym_RBRACK, - ACTIONS(5248), 1, + ACTIONS(5144), 1, + anon_sym_LBRACE, + ACTIONS(5146), 1, anon_sym_EQ, - STATE(3586), 1, + STATE(3539), 1, sym_delim_token_tree, - STATE(2297), 2, + STATE(2296), 2, sym_line_comment, sym_block_comment, - [71920] = 6, + [71845] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4565), 1, - anon_sym_COLON_COLON, - ACTIONS(4986), 1, - anon_sym_for, - STATE(2298), 2, + ACTIONS(5148), 1, + anon_sym_LPAREN, + ACTIONS(5150), 1, + anon_sym_LBRACK, + ACTIONS(5152), 1, + anon_sym_LBRACE, + ACTIONS(5248), 1, + anon_sym_RBRACE, + STATE(2288), 1, + aux_sym_macro_definition_repeat1, + STATE(3066), 1, + sym_macro_rule, + STATE(3565), 1, + sym_token_tree_pattern, + STATE(2297), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [71943] = 9, + [71877] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4900), 1, - anon_sym_LT, - ACTIONS(4902), 1, - anon_sym_where, ACTIONS(5250), 1, - anon_sym_LBRACE, - STATE(641), 1, - sym_enum_variant_list, - STATE(2535), 1, - sym_type_parameters, - STATE(3144), 1, - sym_where_clause, - STATE(2299), 2, + anon_sym_trait, + STATE(2298), 2, sym_line_comment, sym_block_comment, - [71972] = 6, + ACTIONS(3367), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71899] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4565), 1, - anon_sym_COLON_COLON, - ACTIONS(4974), 1, - anon_sym_for, - STATE(2300), 2, + ACTIONS(4324), 1, + anon_sym_LBRACE, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5254), 1, + anon_sym_STAR, + STATE(2995), 1, + sym_use_list, + STATE(3162), 1, + sym_type_arguments, + ACTIONS(5252), 2, + sym_identifier, + sym_super, + STATE(2299), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [71995] = 9, + [71929] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, + ACTIONS(4324), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5252), 1, - anon_sym_SEMI, - STATE(553), 1, - sym_declaration_list, - STATE(2955), 1, - sym_where_clause, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5254), 1, + anon_sym_STAR, + STATE(2995), 1, + sym_use_list, + STATE(3184), 1, + sym_type_arguments, + ACTIONS(5252), 2, + sym_identifier, + sym_super, + STATE(2300), 2, + sym_line_comment, + sym_block_comment, + [71959] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5256), 1, + sym_identifier, STATE(2301), 2, sym_line_comment, sym_block_comment, - [72024] = 9, + ACTIONS(4783), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71981] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, + ACTIONS(4743), 1, + anon_sym_COLON_COLON, + ACTIONS(5138), 1, + anon_sym_LPAREN, + ACTIONS(5140), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5254), 1, - anon_sym_SEMI, - STATE(555), 1, - sym_declaration_list, - STATE(2958), 1, - sym_where_clause, + ACTIONS(5258), 1, + anon_sym_RBRACK, + ACTIONS(5260), 1, + anon_sym_EQ, + STATE(3534), 1, + sym_delim_token_tree, STATE(2302), 2, sym_line_comment, sym_block_comment, - [72053] = 9, + [72013] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(5148), 1, + anon_sym_LPAREN, + ACTIONS(5150), 1, + anon_sym_LBRACK, + ACTIONS(5152), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5256), 1, - anon_sym_SEMI, - STATE(1373), 1, - sym_declaration_list, - STATE(2776), 1, - sym_where_clause, + ACTIONS(5202), 1, + anon_sym_RBRACK, + STATE(2282), 1, + aux_sym_macro_definition_repeat1, + STATE(3244), 1, + sym_macro_rule, + STATE(3565), 1, + sym_token_tree_pattern, STATE(2303), 2, sym_line_comment, sym_block_comment, - [72082] = 9, + [72045] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5258), 1, + ACTIONS(5262), 1, anon_sym_SEMI, - STATE(1375), 1, + STATE(1239), 1, sym_declaration_list, - STATE(2777), 1, + STATE(2850), 1, sym_where_clause, STATE(2304), 2, sym_line_comment, sym_block_comment, - [72111] = 9, + [72074] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5260), 1, - anon_sym_SEMI, - STATE(605), 1, - sym_declaration_list, - STATE(3048), 1, - sym_where_clause, + ACTIONS(4659), 1, + anon_sym_DOT_DOT, STATE(2305), 2, sym_line_comment, sym_block_comment, - [72140] = 9, + ACTIONS(4657), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [72095] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4609), 1, - anon_sym_EQ, - ACTIONS(4611), 1, - anon_sym_GT, - ACTIONS(4613), 1, - anon_sym_COMMA, - ACTIONS(5016), 1, - anon_sym_COLON, - STATE(2765), 1, - aux_sym_type_parameters_repeat1, - STATE(3026), 1, - sym_trait_bounds, STATE(2306), 2, sym_line_comment, sym_block_comment, - [72169] = 6, + ACTIONS(3367), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72114] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4643), 1, + ACTIONS(4648), 1, anon_sym_DOT_DOT, - ACTIONS(4645), 2, + ACTIONS(4650), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(2307), 2, sym_line_comment, sym_block_comment, - ACTIONS(4478), 3, + ACTIONS(4490), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [72192] = 6, + [72137] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5262), 1, - anon_sym_RBRACK, - ACTIONS(4843), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5264), 1, + anon_sym_SEMI, + STATE(651), 1, + sym_declaration_list, + STATE(2758), 1, + sym_where_clause, STATE(2308), 2, sym_line_comment, sym_block_comment, - ACTIONS(3454), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [72215] = 9, + [72166] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4609), 1, - anon_sym_EQ, - ACTIONS(5016), 1, - anon_sym_COLON, - ACTIONS(5265), 1, - anon_sym_GT, - ACTIONS(5267), 1, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(5216), 1, + anon_sym_COLON_COLON, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5168), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2983), 1, - aux_sym_type_parameters_repeat1, - STATE(3026), 1, - sym_trait_bounds, STATE(2309), 2, sym_line_comment, sym_block_comment, - [72244] = 6, + [72191] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, - anon_sym_COLON, - ACTIONS(5269), 1, - anon_sym_EQ, + ACTIONS(897), 1, + anon_sym_DOT_DOT, STATE(2310), 2, sym_line_comment, sym_block_comment, - ACTIONS(3380), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [72267] = 5, + ACTIONS(899), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [72212] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4629), 1, + ACTIONS(979), 1, anon_sym_DOT_DOT, STATE(2311), 2, sym_line_comment, sym_block_comment, - ACTIONS(4627), 5, + ACTIONS(981), 5, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_if, - [72288] = 7, + [72233] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4488), 1, + ACTIONS(985), 1, anon_sym_DOT_DOT, - ACTIONS(5172), 1, - anon_sym_COLON_COLON, - ACTIONS(4490), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5222), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2312), 2, sym_line_comment, sym_block_comment, - [72313] = 9, + ACTIONS(987), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [72254] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5271), 1, - anon_sym_SEMI, - STATE(511), 1, - sym_declaration_list, - STATE(2878), 1, - sym_where_clause, + ACTIONS(5008), 1, + anon_sym_COLON, + ACTIONS(5266), 1, + anon_sym_GT, + ACTIONS(5268), 1, + anon_sym_COMMA, + STATE(2843), 1, + aux_sym_type_parameters_repeat1, + STATE(2860), 1, + sym_trait_bounds, + STATE(2909), 1, + aux_sym_for_lifetimes_repeat1, STATE(2313), 2, sym_line_comment, sym_block_comment, - [72342] = 9, + [72283] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5273), 1, - anon_sym_SEMI, - STATE(717), 1, - sym_declaration_list, - STATE(2851), 1, - sym_where_clause, + ACTIONS(989), 1, + anon_sym_DOT_DOT, STATE(2314), 2, sym_line_comment, sym_block_comment, - [72371] = 9, + ACTIONS(991), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [72304] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, + ACTIONS(4960), 1, + anon_sym_LT, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(4948), 1, + ACTIONS(5270), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5275), 1, - anon_sym_SEMI, - STATE(513), 1, - sym_declaration_list, - STATE(2883), 1, + STATE(616), 1, + sym_enum_variant_list, + STATE(2594), 1, + sym_type_parameters, + STATE(3076), 1, sym_where_clause, STATE(2315), 2, sym_line_comment, sym_block_comment, - [72400] = 6, + [72333] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4565), 1, - anon_sym_COLON_COLON, - ACTIONS(4950), 1, - anon_sym_for, + ACTIONS(4960), 1, + anon_sym_LT, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(4998), 1, + anon_sym_LBRACE, + STATE(621), 1, + sym_field_declaration_list, + STATE(2667), 1, + sym_type_parameters, + STATE(3112), 1, + sym_where_clause, STATE(2316), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [72423] = 9, + [72362] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5277), 1, - anon_sym_SEMI, - STATE(1330), 1, - sym_declaration_list, - STATE(2747), 1, - sym_where_clause, + ACTIONS(1515), 1, + anon_sym_DOT_DOT, + ACTIONS(5032), 1, + sym_identifier, + ACTIONS(5038), 1, + anon_sym_ref, + ACTIONS(5040), 1, + sym_mutable_specifier, STATE(2317), 2, sym_line_comment, sym_block_comment, - [72452] = 4, + STATE(3230), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72389] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4638), 1, + anon_sym_DOT_DOT, STATE(2318), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72471] = 6, + ACTIONS(4636), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [72410] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4565), 1, - anon_sym_COLON_COLON, - ACTIONS(4915), 1, - anon_sym_for, + ACTIONS(4819), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2319), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3445), 4, + anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_where, - [72494] = 5, + anon_sym_COMMA, + anon_sym_DASH_GT, + [72431] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4843), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(4609), 1, + anon_sym_COLON_COLON, + ACTIONS(5272), 1, + anon_sym_GT, + ACTIONS(5274), 1, + anon_sym_COMMA, + STATE(2843), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3332), 2, + anon_sym_PLUS, + anon_sym_as, STATE(2320), 2, sym_line_comment, sym_block_comment, - ACTIONS(3454), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [72515] = 9, + [72458] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(5016), 1, + ACTIONS(3084), 1, + anon_sym_PLUS, + ACTIONS(5008), 1, anon_sym_COLON, - STATE(722), 1, - sym_declaration_list, - STATE(2698), 1, + ACTIONS(5272), 1, + anon_sym_GT, + ACTIONS(5274), 1, + anon_sym_COMMA, + STATE(2843), 1, + aux_sym_type_parameters_repeat1, + STATE(2860), 1, sym_trait_bounds, - STATE(3059), 1, - sym_where_clause, STATE(2321), 2, sym_line_comment, sym_block_comment, - [72544] = 5, + [72487] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(969), 1, - anon_sym_DOT_DOT, + ACTIONS(4960), 1, + anon_sym_LT, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5276), 1, + anon_sym_LBRACE, + STATE(1167), 1, + sym_enum_variant_list, + STATE(2698), 1, + sym_type_parameters, + STATE(3307), 1, + sym_where_clause, STATE(2322), 2, sym_line_comment, sym_block_comment, - ACTIONS(971), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [72565] = 9, + [72516] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(5016), 1, - anon_sym_COLON, - STATE(1151), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5278), 1, + anon_sym_SEMI, + STATE(1285), 1, sym_declaration_list, - STATE(2526), 1, - sym_trait_bounds, - STATE(3116), 1, + STATE(3042), 1, sym_where_clause, STATE(2323), 2, sym_line_comment, sym_block_comment, - [72594] = 9, + [72545] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, + ACTIONS(4929), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5279), 1, + ACTIONS(5280), 1, anon_sym_SEMI, - STATE(515), 1, + STATE(705), 1, sym_declaration_list, - STATE(2892), 1, + STATE(3023), 1, sym_where_clause, STATE(2324), 2, sym_line_comment, sym_block_comment, - [72623] = 9, + [72574] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, + ACTIONS(4929), 1, anon_sym_LBRACE, - ACTIONS(5016), 1, - anon_sym_COLON, - STATE(629), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5282), 1, + anon_sym_SEMI, + STATE(707), 1, sym_declaration_list, - STATE(2654), 1, - sym_trait_bounds, - STATE(3122), 1, + STATE(3025), 1, sym_where_clause, STATE(2325), 2, sym_line_comment, sym_block_comment, - [72652] = 8, + [72603] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1507), 1, - anon_sym_DOT_DOT, - ACTIONS(5026), 1, - sym_identifier, - ACTIONS(5032), 1, - anon_sym_ref, - ACTIONS(5034), 1, - sym_mutable_specifier, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(4960), 1, + anon_sym_LT, + ACTIONS(4962), 1, + anon_sym_where, + STATE(1444), 1, + sym_field_declaration_list, + STATE(2746), 1, + sym_type_parameters, + STATE(3311), 1, + sym_where_clause, STATE(2326), 2, sym_line_comment, sym_block_comment, - STATE(3234), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72679] = 7, + [72632] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4488), 1, - anon_sym_DOT_DOT, - ACTIONS(5172), 1, - anon_sym_COLON_COLON, - ACTIONS(4490), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5281), 2, + ACTIONS(3445), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4819), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5284), 2, anon_sym_RPAREN, anon_sym_COMMA, STATE(2327), 2, sym_line_comment, sym_block_comment, - [72704] = 9, + [72655] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, + ACTIONS(4929), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5283), 1, + ACTIONS(5287), 1, anon_sym_SEMI, - STATE(682), 1, + STATE(593), 1, sym_declaration_list, - STATE(2988), 1, + STATE(2967), 1, sym_where_clause, STATE(2328), 2, sym_line_comment, sym_block_comment, - [72733] = 9, + [72684] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5285), 1, - anon_sym_SEMI, - STATE(595), 1, - sym_declaration_list, - STATE(2996), 1, - sym_where_clause, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + ACTIONS(4910), 1, + anon_sym_for, STATE(2329), 2, sym_line_comment, sym_block_comment, - [72762] = 9, + ACTIONS(3332), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [72707] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5287), 1, + ACTIONS(5289), 1, anon_sym_SEMI, - STATE(637), 1, + STATE(1125), 1, sym_declaration_list, - STATE(2828), 1, + STATE(2783), 1, sym_where_clause, STATE(2330), 2, sym_line_comment, sym_block_comment, - [72791] = 9, + [72736] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5016), 1, - anon_sym_COLON, - ACTIONS(5289), 1, - anon_sym_PLUS, - ACTIONS(5291), 1, + ACTIONS(4621), 1, + anon_sym_EQ, + ACTIONS(4623), 1, anon_sym_GT, - ACTIONS(5293), 1, + ACTIONS(4625), 1, anon_sym_COMMA, - STATE(2834), 1, + ACTIONS(5008), 1, + anon_sym_COLON, + STATE(2830), 1, sym_trait_bounds, - STATE(2835), 1, - aux_sym_type_arguments_repeat1, + STATE(2831), 1, + aux_sym_type_parameters_repeat1, STATE(2331), 2, sym_line_comment, sym_block_comment, - [72820] = 9, + [72765] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5016), 1, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5008), 1, anon_sym_COLON, - ACTIONS(5289), 1, - anon_sym_PLUS, - ACTIONS(5295), 1, - anon_sym_GT, - ACTIONS(5297), 1, - anon_sym_COMMA, - STATE(2934), 1, + STATE(1136), 1, + sym_declaration_list, + STATE(2597), 1, sym_trait_bounds, - STATE(2937), 1, - aux_sym_type_arguments_repeat1, + STATE(3277), 1, + sym_where_clause, STATE(2332), 2, sym_line_comment, sym_block_comment, - [72849] = 9, + [72794] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3148), 1, - anon_sym_PLUS, - ACTIONS(5016), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5008), 1, anon_sym_COLON, ACTIONS(5291), 1, - anon_sym_GT, + anon_sym_SEMI, ACTIONS(5293), 1, - anon_sym_COMMA, - STATE(2834), 1, + anon_sym_EQ, + STATE(2789), 1, sym_trait_bounds, - STATE(2835), 1, - aux_sym_type_arguments_repeat1, + STATE(3528), 1, + sym_where_clause, STATE(2333), 2, sym_line_comment, sym_block_comment, - [72878] = 9, + [72823] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(5016), 1, - anon_sym_COLON, - ACTIONS(5299), 1, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5295), 1, anon_sym_SEMI, - ACTIONS(5301), 1, - anon_sym_EQ, - STATE(2906), 1, - sym_trait_bounds, - STATE(3588), 1, + STATE(1143), 1, + sym_declaration_list, + STATE(2790), 1, sym_where_clause, STATE(2334), 2, sym_line_comment, sym_block_comment, - [72907] = 7, + [72852] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4488), 1, - anon_sym_DOT_DOT, - ACTIONS(5156), 1, - anon_sym_COLON_COLON, - ACTIONS(4490), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5222), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5297), 1, + anon_sym_SEMI, + STATE(711), 1, + sym_declaration_list, + STATE(3048), 1, + sym_where_clause, STATE(2335), 2, sym_line_comment, sym_block_comment, - [72932] = 9, + [72881] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4900), 1, + ACTIONS(4960), 1, anon_sym_LT, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(5250), 1, + ACTIONS(5276), 1, anon_sym_LBRACE, - STATE(667), 1, + STATE(1147), 1, sym_enum_variant_list, - STATE(2697), 1, + STATE(2651), 1, sym_type_parameters, - STATE(3232), 1, + STATE(3315), 1, sym_where_clause, STATE(2336), 2, sym_line_comment, sym_block_comment, - [72961] = 9, + [72910] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3148), 1, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5016), 1, - anon_sym_COLON, - ACTIONS(5303), 1, - anon_sym_GT, - ACTIONS(5305), 1, - anon_sym_COMMA, - STATE(2830), 1, - sym_trait_bounds, - STATE(2831), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5299), 1, + anon_sym_SEMI, + STATE(511), 1, + sym_declaration_list, + STATE(2944), 1, + sym_where_clause, STATE(2337), 2, sym_line_comment, sym_block_comment, - [72990] = 8, + [72939] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4571), 1, - anon_sym_COLON_COLON, - ACTIONS(5307), 1, - anon_sym_GT, - ACTIONS(5309), 1, - anon_sym_COMMA, - STATE(2801), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3292), 2, - anon_sym_PLUS, - anon_sym_as, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(4960), 1, + anon_sym_LT, + ACTIONS(4962), 1, + anon_sym_where, + STATE(1152), 1, + sym_field_declaration_list, + STATE(2655), 1, + sym_type_parameters, + STATE(3330), 1, + sym_where_clause, STATE(2338), 2, sym_line_comment, sym_block_comment, - [73017] = 9, + [72968] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5016), 1, - anon_sym_COLON, - ACTIONS(5311), 1, - anon_sym_GT, - ACTIONS(5313), 1, - anon_sym_COMMA, - STATE(2801), 1, - aux_sym_type_parameters_repeat1, - STATE(2807), 1, - sym_trait_bounds, - STATE(2913), 1, - aux_sym_for_lifetimes_repeat1, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5301), 1, + anon_sym_SEMI, + STATE(713), 1, + sym_declaration_list, + STATE(3051), 1, + sym_where_clause, STATE(2339), 2, sym_line_comment, sym_block_comment, - [73046] = 9, + [72997] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4929), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5315), 1, + ACTIONS(5303), 1, anon_sym_SEMI, - STATE(1332), 1, + STATE(513), 1, sym_declaration_list, - STATE(2769), 1, + STATE(2961), 1, sym_where_clause, STATE(2340), 2, sym_line_comment, sym_block_comment, - [73075] = 9, + [73026] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(5008), 1, + anon_sym_COLON, + ACTIONS(5305), 1, anon_sym_PLUS, - ACTIONS(5317), 1, - anon_sym_SEMI, - STATE(517), 1, - sym_declaration_list, - STATE(2895), 1, - sym_where_clause, + ACTIONS(5307), 1, + anon_sym_GT, + ACTIONS(5309), 1, + anon_sym_COMMA, + STATE(2803), 1, + sym_trait_bounds, + STATE(2804), 1, + aux_sym_type_arguments_repeat1, STATE(2341), 2, sym_line_comment, sym_block_comment, - [73104] = 9, + [73055] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(5016), 1, + ACTIONS(3084), 1, + anon_sym_PLUS, + ACTIONS(5008), 1, anon_sym_COLON, - STATE(702), 1, - sym_declaration_list, - STATE(2538), 1, + ACTIONS(5307), 1, + anon_sym_GT, + ACTIONS(5309), 1, + anon_sym_COMMA, + STATE(2803), 1, sym_trait_bounds, - STATE(3169), 1, - sym_where_clause, + STATE(2804), 1, + aux_sym_type_arguments_repeat1, STATE(2342), 2, sym_line_comment, sym_block_comment, - [73133] = 8, + [73084] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(5319), 1, - anon_sym_if, - STATE(3607), 1, - sym_label, - STATE(1710), 2, - sym_if_expression, - sym_block, + ACTIONS(4621), 1, + anon_sym_EQ, + ACTIONS(5008), 1, + anon_sym_COLON, + ACTIONS(5311), 1, + anon_sym_GT, + ACTIONS(5313), 1, + anon_sym_COMMA, + STATE(2777), 1, + aux_sym_type_parameters_repeat1, + STATE(2830), 1, + sym_trait_bounds, STATE(2343), 2, sym_line_comment, sym_block_comment, - [73160] = 9, + [73113] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5321), 1, - anon_sym_SEMI, - STATE(1158), 1, - sym_declaration_list, - STATE(2909), 1, - sym_where_clause, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5315), 1, + anon_sym_if, + STATE(3567), 1, + sym_label, + STATE(1179), 2, + sym_if_expression, + sym_block, STATE(2344), 2, sym_line_comment, sym_block_comment, - [73189] = 5, + [73140] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(973), 1, - anon_sym_DOT_DOT, + ACTIONS(4621), 1, + anon_sym_EQ, + ACTIONS(5008), 1, + anon_sym_COLON, + ACTIONS(5317), 1, + anon_sym_GT, + ACTIONS(5319), 1, + anon_sym_COMMA, + STATE(2820), 1, + aux_sym_type_parameters_repeat1, + STATE(2830), 1, + sym_trait_bounds, STATE(2345), 2, sym_line_comment, sym_block_comment, - ACTIONS(975), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73210] = 5, + [73169] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4633), 1, - anon_sym_DOT_DOT, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5321), 1, + anon_sym_SEMI, + STATE(1181), 1, + sym_declaration_list, + STATE(2822), 1, + sym_where_clause, STATE(2346), 2, sym_line_comment, sym_block_comment, - ACTIONS(4631), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73231] = 9, + [73198] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4609), 1, - anon_sym_EQ, - ACTIONS(5016), 1, - anon_sym_COLON, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, + anon_sym_PLUS, ACTIONS(5323), 1, - anon_sym_GT, - ACTIONS(5325), 1, - anon_sym_COMMA, - STATE(2885), 1, - aux_sym_type_parameters_repeat1, - STATE(3026), 1, - sym_trait_bounds, + anon_sym_SEMI, + STATE(1185), 1, + sym_declaration_list, + STATE(2823), 1, + sym_where_clause, STATE(2347), 2, sym_line_comment, sym_block_comment, - [73260] = 9, + [73227] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5327), 1, + ACTIONS(5325), 1, anon_sym_SEMI, - STATE(695), 1, + STATE(1203), 1, sym_declaration_list, - STATE(3025), 1, + STATE(2829), 1, sym_where_clause, STATE(2348), 2, sym_line_comment, sym_block_comment, - [73289] = 9, + [73256] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5329), 1, - anon_sym_SEMI, - STATE(1315), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5008), 1, + anon_sym_COLON, + STATE(1208), 1, sym_declaration_list, - STATE(2766), 1, + STATE(2715), 1, + sym_trait_bounds, + STATE(3173), 1, sym_where_clause, STATE(2349), 2, sym_line_comment, sym_block_comment, - [73318] = 9, + [73285] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4929), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5331), 1, + ACTIONS(5327), 1, anon_sym_SEMI, - STATE(1194), 1, + STATE(515), 1, sym_declaration_list, - STATE(2972), 1, + STATE(2964), 1, sym_where_clause, STATE(2350), 2, sym_line_comment, sym_block_comment, - [73347] = 9, + [73314] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3148), 1, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5016), 1, - anon_sym_COLON, - ACTIONS(5307), 1, - anon_sym_GT, - ACTIONS(5309), 1, - anon_sym_COMMA, - STATE(2801), 1, - aux_sym_type_parameters_repeat1, - STATE(2807), 1, - sym_trait_bounds, + ACTIONS(5329), 1, + anon_sym_SEMI, + STATE(517), 1, + sym_declaration_list, + STATE(2972), 1, + sym_where_clause, STATE(2351), 2, sym_line_comment, sym_block_comment, - [73376] = 9, + [73343] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4929), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5333), 1, + ACTIONS(5331), 1, anon_sym_SEMI, - STATE(1253), 1, + STATE(550), 1, sym_declaration_list, - STATE(3040), 1, + STATE(2774), 1, sym_where_clause, STATE(2352), 2, sym_line_comment, sym_block_comment, - [73405] = 9, + [73372] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, + ACTIONS(4929), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5335), 1, + ACTIONS(5333), 1, anon_sym_SEMI, - STATE(688), 1, + STATE(552), 1, sym_declaration_list, - STATE(2997), 1, + STATE(2775), 1, sym_where_clause, STATE(2353), 2, sym_line_comment, sym_block_comment, - [73434] = 9, + [73401] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, + ACTIONS(4929), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5337), 1, + ACTIONS(5335), 1, anon_sym_SEMI, - STATE(588), 1, + STATE(672), 1, sym_declaration_list, - STATE(2890), 1, + STATE(2896), 1, sym_where_clause, STATE(2354), 2, sym_line_comment, sym_block_comment, - [73463] = 6, + [73430] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3432), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4847), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5339), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + ACTIONS(4922), 1, + anon_sym_for, STATE(2355), 2, sym_line_comment, sym_block_comment, - [73486] = 9, + ACTIONS(3332), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [73453] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4898), 1, - anon_sym_LBRACE, - ACTIONS(4900), 1, - anon_sym_LT, - ACTIONS(4902), 1, - anon_sym_where, - STATE(618), 1, - sym_field_declaration_list, - STATE(2560), 1, - sym_type_parameters, - STATE(3101), 1, - sym_where_clause, + ACTIONS(3451), 1, + anon_sym_COLON, + ACTIONS(5337), 1, + anon_sym_EQ, STATE(2356), 2, sym_line_comment, sym_block_comment, - [73515] = 9, + ACTIONS(3449), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [73476] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5342), 1, + ACTIONS(5339), 1, anon_sym_SEMI, - STATE(1317), 1, + STATE(1245), 1, sym_declaration_list, - STATE(2767), 1, + STATE(2854), 1, sym_where_clause, STATE(2357), 2, sym_line_comment, sym_block_comment, - [73544] = 9, + [73505] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5344), 1, + ACTIONS(5341), 1, anon_sym_SEMI, - STATE(1255), 1, + STATE(1247), 1, sym_declaration_list, - STATE(3042), 1, + STATE(2855), 1, sym_where_clause, STATE(2358), 2, sym_line_comment, sym_block_comment, - [73573] = 6, + [73534] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5339), 1, - anon_sym_RBRACK, - ACTIONS(4847), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5008), 1, + anon_sym_COLON, + STATE(1279), 1, + sym_declaration_list, + STATE(2523), 1, + sym_trait_bounds, + STATE(3291), 1, + sym_where_clause, STATE(2359), 2, sym_line_comment, sym_block_comment, - ACTIONS(3432), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [73596] = 9, + [73563] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4900), 1, - anon_sym_LT, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(5346), 1, + ACTIONS(4929), 1, anon_sym_LBRACE, - STATE(1466), 1, - sym_enum_variant_list, - STATE(2703), 1, - sym_type_parameters, - STATE(3241), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5008), 1, + anon_sym_COLON, + STATE(677), 1, + sym_declaration_list, + STATE(2576), 1, + sym_trait_bounds, + STATE(3097), 1, sym_where_clause, STATE(2360), 2, sym_line_comment, sym_block_comment, - [73625] = 8, + [73592] = 8, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1217), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(5348), 1, + ACTIONS(5343), 1, anon_sym_if, - STATE(3606), 1, + STATE(3347), 1, sym_label, - STATE(478), 2, + STATE(396), 2, sym_if_expression, sym_block, STATE(2361), 2, sym_line_comment, sym_block_comment, - [73652] = 9, + [73619] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5350), 1, + ACTIONS(5345), 1, anon_sym_SEMI, - STATE(1198), 1, + STATE(1299), 1, sym_declaration_list, - STATE(2979), 1, + STATE(2871), 1, sym_where_clause, STATE(2362), 2, sym_line_comment, sym_block_comment, - [73681] = 9, + [73648] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5352), 1, + ACTIONS(5347), 1, anon_sym_SEMI, - STATE(1099), 1, + STATE(1301), 1, sym_declaration_list, - STATE(2795), 1, + STATE(2872), 1, sym_where_clause, STATE(2363), 2, sym_line_comment, sym_block_comment, - [73710] = 6, + [73677] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4565), 1, - anon_sym_COLON_COLON, - ACTIONS(4994), 1, - anon_sym_for, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5349), 1, + anon_sym_SEMI, + STATE(1313), 1, + sym_declaration_list, + STATE(2875), 1, + sym_where_clause, STATE(2364), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [73733] = 4, + [73706] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5351), 1, + anon_sym_SEMI, + STATE(1315), 1, + sym_declaration_list, + STATE(2876), 1, + sym_where_clause, STATE(2365), 2, sym_line_comment, sym_block_comment, - ACTIONS(4930), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [73752] = 9, + [73735] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5354), 1, + ACTIONS(5353), 1, anon_sym_SEMI, - STATE(1217), 1, + STATE(1317), 1, sym_declaration_list, - STATE(2995), 1, + STATE(2878), 1, sym_where_clause, STATE(2366), 2, sym_line_comment, sym_block_comment, - [73781] = 9, + [73764] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5356), 1, + ACTIONS(5355), 1, anon_sym_SEMI, - STATE(1334), 1, + STATE(1319), 1, sym_declaration_list, - STATE(2771), 1, + STATE(2879), 1, sym_where_clause, STATE(2367), 2, sym_line_comment, sym_block_comment, - [73810] = 5, + [73793] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(977), 1, - anon_sym_DOT_DOT, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5357), 1, + anon_sym_SEMI, + STATE(1354), 1, + sym_declaration_list, + STATE(2884), 1, + sym_where_clause, STATE(2368), 2, sym_line_comment, sym_block_comment, - ACTIONS(979), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73831] = 9, + [73822] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5358), 1, + ACTIONS(5359), 1, anon_sym_SEMI, - STATE(1139), 1, + STATE(1356), 1, sym_declaration_list, - STATE(2891), 1, + STATE(2885), 1, sym_where_clause, STATE(2369), 2, sym_line_comment, sym_block_comment, - [73860] = 9, + [73851] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4900), 1, + ACTIONS(4960), 1, anon_sym_LT, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(5346), 1, + ACTIONS(5270), 1, anon_sym_LBRACE, - STATE(1162), 1, + STATE(625), 1, sym_enum_variant_list, - STATE(2530), 1, + STATE(2745), 1, sym_type_parameters, - STATE(3132), 1, + STATE(3276), 1, sym_where_clause, STATE(2370), 2, sym_line_comment, sym_block_comment, - [73889] = 9, + [73880] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4898), 1, - anon_sym_LBRACE, - ACTIONS(4900), 1, - anon_sym_LT, - ACTIONS(4902), 1, - anon_sym_where, - STATE(646), 1, - sym_field_declaration_list, - STATE(2541), 1, - sym_type_parameters, - STATE(3177), 1, - sym_where_clause, + ACTIONS(5008), 1, + anon_sym_COLON, + ACTIONS(5305), 1, + anon_sym_PLUS, + ACTIONS(5361), 1, + anon_sym_GT, + ACTIONS(5363), 1, + anon_sym_COMMA, + STATE(2916), 1, + sym_trait_bounds, + STATE(3054), 1, + aux_sym_type_arguments_repeat1, STATE(2371), 2, sym_line_comment, sym_block_comment, - [73918] = 6, + [73909] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4565), 1, - anon_sym_COLON_COLON, - ACTIONS(4980), 1, - anon_sym_for, + ACTIONS(3084), 1, + anon_sym_PLUS, + ACTIONS(5008), 1, + anon_sym_COLON, + ACTIONS(5361), 1, + anon_sym_GT, + ACTIONS(5363), 1, + anon_sym_COMMA, + STATE(2916), 1, + sym_trait_bounds, + STATE(3054), 1, + aux_sym_type_arguments_repeat1, STATE(2372), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [73941] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, + [73938] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5360), 1, - sym_identifier, - ACTIONS(5362), 1, - anon_sym_ref, - ACTIONS(5364), 1, - sym_mutable_specifier, - ACTIONS(5366), 1, - anon_sym_move, - STATE(217), 1, - sym_closure_parameters, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5365), 1, + anon_sym_if, + STATE(3616), 1, + sym_label, + STATE(472), 2, + sym_if_expression, + sym_block, STATE(2373), 2, sym_line_comment, sym_block_comment, - [73970] = 9, + [73965] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3148), 1, - anon_sym_PLUS, - ACTIONS(5016), 1, + ACTIONS(5008), 1, anon_sym_COLON, - ACTIONS(5295), 1, + ACTIONS(5305), 1, + anon_sym_PLUS, + ACTIONS(5367), 1, anon_sym_GT, - ACTIONS(5297), 1, + ACTIONS(5369), 1, anon_sym_COMMA, - STATE(2934), 1, + STATE(2861), 1, sym_trait_bounds, - STATE(2937), 1, + STATE(2862), 1, aux_sym_type_arguments_repeat1, STATE(2374), 2, sym_line_comment, sym_block_comment, - [73999] = 8, - ACTIONS(19), 1, - anon_sym_LBRACE, + [73994] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(5368), 1, - anon_sym_if, - STATE(3569), 1, - sym_label, - STATE(378), 2, - sym_if_expression, - sym_block, + ACTIONS(3084), 1, + anon_sym_PLUS, + ACTIONS(5008), 1, + anon_sym_COLON, + ACTIONS(5367), 1, + anon_sym_GT, + ACTIONS(5369), 1, + anon_sym_COMMA, + STATE(2861), 1, + sym_trait_bounds, + STATE(2862), 1, + aux_sym_type_arguments_repeat1, STATE(2375), 2, sym_line_comment, sym_block_comment, - [74026] = 9, + [74023] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5370), 1, - anon_sym_SEMI, - STATE(1259), 1, - sym_declaration_list, - STATE(2911), 1, - sym_where_clause, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5371), 1, + anon_sym_if, + STATE(3617), 1, + sym_label, + STATE(1687), 2, + sym_if_expression, + sym_block, STATE(2376), 2, sym_line_comment, sym_block_comment, - [74055] = 6, + [74050] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4565), 1, - anon_sym_COLON_COLON, - ACTIONS(4984), 1, - anon_sym_for, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5375), 1, + anon_sym_ref, + ACTIONS(5377), 1, + sym_mutable_specifier, + ACTIONS(5379), 1, + anon_sym_move, + STATE(241), 1, + sym_closure_parameters, STATE(2377), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [74078] = 9, + [74079] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4929), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5372), 1, - anon_sym_SEMI, - STATE(1336), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5008), 1, + anon_sym_COLON, + STATE(747), 1, sym_declaration_list, - STATE(2772), 1, + STATE(2741), 1, + sym_trait_bounds, + STATE(3110), 1, sym_where_clause, STATE(2378), 2, sym_line_comment, sym_block_comment, - [74107] = 9, + [74108] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4929), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5374), 1, + ACTIONS(5381), 1, anon_sym_SEMI, - STATE(1261), 1, + STATE(630), 1, sym_declaration_list, - STATE(2748), 1, + STATE(2897), 1, sym_where_clause, STATE(2379), 2, sym_line_comment, sym_block_comment, - [74136] = 9, + [74137] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5016), 1, - anon_sym_COLON, - STATE(1294), 1, - sym_declaration_list, - STATE(2571), 1, - sym_trait_bounds, - STATE(3282), 1, - sym_where_clause, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + ACTIONS(4990), 1, + anon_sym_for, STATE(2380), 2, sym_line_comment, sym_block_comment, - [74165] = 9, + ACTIONS(3332), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74160] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(5016), 1, - anon_sym_COLON, - ACTIONS(5376), 1, - anon_sym_SEMI, - ACTIONS(5378), 1, - anon_sym_EQ, - STATE(2760), 1, - sym_trait_bounds, - STATE(3580), 1, - sym_where_clause, + ACTIONS(5383), 1, + anon_sym_RBRACK, + ACTIONS(4803), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2381), 2, sym_line_comment, sym_block_comment, - [74194] = 6, + ACTIONS(3411), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [74183] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3454), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4843), 2, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5008), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5262), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(605), 1, + sym_declaration_list, + STATE(2544), 1, + sym_trait_bounds, + STATE(3086), 1, + sym_where_clause, STATE(2382), 2, sym_line_comment, sym_block_comment, - [74217] = 6, + [74212] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4565), 1, - anon_sym_COLON_COLON, - ACTIONS(4988), 1, - anon_sym_for, + ACTIONS(5284), 1, + anon_sym_RBRACK, + ACTIONS(4819), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2383), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 4, + ACTIONS(3445), 3, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_where, - [74240] = 5, + anon_sym_DASH_GT, + [74235] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4847), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(5216), 1, + anon_sym_COLON_COLON, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5386), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2384), 2, sym_line_comment, sym_block_comment, - ACTIONS(3432), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [74261] = 8, + [74260] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(5380), 1, - anon_sym_if, - STATE(3556), 1, - sym_label, - STATE(1192), 2, - sym_if_expression, - sym_block, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5008), 1, + anon_sym_COLON, + ACTIONS(5388), 1, + anon_sym_SEMI, + ACTIONS(5390), 1, + anon_sym_EQ, + STATE(2930), 1, + sym_trait_bounds, + STATE(3601), 1, + sym_where_clause, STATE(2385), 2, sym_line_comment, sym_block_comment, - [74288] = 9, + [74289] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4900), 1, - anon_sym_LT, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4944), 1, - anon_sym_LBRACE, - STATE(1108), 1, - sym_field_declaration_list, - STATE(2731), 1, - sym_type_parameters, - STATE(3267), 1, - sym_where_clause, + ACTIONS(4621), 1, + anon_sym_EQ, + ACTIONS(5008), 1, + anon_sym_COLON, + ACTIONS(5392), 1, + anon_sym_GT, + ACTIONS(5394), 1, + anon_sym_COMMA, + STATE(2830), 1, + sym_trait_bounds, + STATE(3024), 1, + aux_sym_type_parameters_repeat1, STATE(2386), 2, sym_line_comment, sym_block_comment, - [74317] = 9, + [74318] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, + ACTIONS(4929), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5382), 1, + ACTIONS(5396), 1, anon_sym_SEMI, - STATE(483), 1, + STATE(612), 1, sym_declaration_list, - STATE(2877), 1, + STATE(2975), 1, sym_where_clause, STATE(2387), 2, sym_line_comment, sym_block_comment, - [74346] = 9, + [74347] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5016), 1, + ACTIONS(4803), 2, anon_sym_COLON, - ACTIONS(5289), 1, - anon_sym_PLUS, - ACTIONS(5303), 1, - anon_sym_GT, - ACTIONS(5305), 1, - anon_sym_COMMA, - STATE(2830), 1, - sym_trait_bounds, - STATE(2831), 1, - aux_sym_type_arguments_repeat1, + anon_sym_PIPE, STATE(2388), 2, sym_line_comment, sym_block_comment, - [74375] = 9, + ACTIONS(3411), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [74368] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5016), 1, - anon_sym_COLON, - STATE(1222), 1, - sym_declaration_list, - STATE(2551), 1, - sym_trait_bounds, - STATE(3223), 1, - sym_where_clause, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + ACTIONS(4931), 1, + anon_sym_for, STATE(2389), 2, sym_line_comment, sym_block_comment, - [74404] = 7, + ACTIONS(3332), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74391] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4488), 1, + ACTIONS(4500), 1, anon_sym_DOT_DOT, - ACTIONS(5156), 1, + ACTIONS(5222), 1, anon_sym_COLON_COLON, - ACTIONS(4490), 2, + ACTIONS(4502), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5281), 2, + ACTIONS(5168), 2, anon_sym_RPAREN, anon_sym_COMMA, STATE(2390), 2, sym_line_comment, sym_block_comment, - [74429] = 5, + [74416] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(965), 1, + ACTIONS(4500), 1, anon_sym_DOT_DOT, + ACTIONS(5222), 1, + anon_sym_COLON_COLON, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5386), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2391), 2, sym_line_comment, sym_block_comment, - ACTIONS(967), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [74450] = 9, + [74441] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4609), 1, - anon_sym_EQ, - ACTIONS(5016), 1, - anon_sym_COLON, - ACTIONS(5384), 1, - anon_sym_GT, - ACTIONS(5386), 1, - anon_sym_COMMA, - STATE(2970), 1, - aux_sym_type_parameters_repeat1, - STATE(3026), 1, - sym_trait_bounds, STATE(2392), 2, sym_line_comment, sym_block_comment, - [74479] = 9, + ACTIONS(4936), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + [74460] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(3411), 2, anon_sym_PLUS, - ACTIONS(5388), 1, - anon_sym_SEMI, - STATE(592), 1, - sym_declaration_list, - STATE(2974), 1, - sym_where_clause, + anon_sym_DASH_GT, + ACTIONS(4803), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5383), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2393), 2, sym_line_comment, sym_block_comment, - [74508] = 9, + [74483] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, + ACTIONS(4929), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5390), 1, + ACTIONS(5398), 1, anon_sym_SEMI, - STATE(495), 1, + STATE(644), 1, sym_declaration_list, - STATE(2810), 1, + STATE(3037), 1, sym_where_clause, STATE(2394), 2, sym_line_comment, sym_block_comment, - [74537] = 9, + [74512] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, + ACTIONS(4929), 1, anon_sym_LBRACE, - ACTIONS(5010), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5392), 1, + ACTIONS(5400), 1, anon_sym_SEMI, - STATE(497), 1, + STATE(496), 1, sym_declaration_list, - STATE(2815), 1, + STATE(2863), 1, sym_where_clause, STATE(2395), 2, sym_line_comment, sym_block_comment, - [74566] = 9, + [74541] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4900), 1, - anon_sym_LT, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4944), 1, - anon_sym_LBRACE, - STATE(1167), 1, - sym_field_declaration_list, - STATE(2532), 1, - sym_type_parameters, - STATE(3137), 1, - sym_where_clause, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + ACTIONS(5002), 1, + anon_sym_for, STATE(2396), 2, sym_line_comment, sym_block_comment, - [74595] = 6, + ACTIONS(3332), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74564] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5396), 1, - anon_sym_COLON_COLON, - ACTIONS(5398), 1, - anon_sym_as, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5402), 1, + anon_sym_SEMI, + STATE(498), 1, + sym_declaration_list, + STATE(2880), 1, + sym_where_clause, STATE(2397), 2, sym_line_comment, sym_block_comment, - ACTIONS(5394), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [74617] = 8, - ACTIONS(19), 1, - anon_sym_LBRACE, + [74593] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(5400), 1, - anon_sym_move, - STATE(394), 1, - sym_block, - STATE(3569), 1, - sym_label, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + ACTIONS(5004), 1, + anon_sym_for, STATE(2398), 2, sym_line_comment, sym_block_comment, - [74643] = 8, + ACTIONS(3332), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74616] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5016), 1, - anon_sym_COLON, - ACTIONS(5307), 1, - anon_sym_GT, - ACTIONS(5309), 1, - anon_sym_COMMA, - STATE(2801), 1, - aux_sym_type_parameters_repeat1, - STATE(2807), 1, - sym_trait_bounds, + ACTIONS(4960), 1, + anon_sym_LT, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(4998), 1, + anon_sym_LBRACE, + STATE(692), 1, + sym_field_declaration_list, + STATE(2687), 1, + sym_type_parameters, + STATE(3306), 1, + sym_where_clause, STATE(2399), 2, sym_line_comment, sym_block_comment, - [74669] = 8, + [74645] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(5004), 1, - anon_sym_LBRACE, - ACTIONS(5402), 1, - anon_sym_SEMI, - STATE(670), 1, - sym_block, - STATE(3602), 1, - sym_label, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + ACTIONS(4946), 1, + anon_sym_for, STATE(2400), 2, sym_line_comment, sym_block_comment, - [74695] = 8, + ACTIONS(3332), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74668] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4476), 1, + ACTIONS(4576), 1, anon_sym_COLON_COLON, - ACTIONS(4607), 1, - anon_sym_COLON, - STATE(1940), 1, - sym_type_arguments, - STATE(2691), 1, - sym_trait_bounds, + ACTIONS(4899), 1, + anon_sym_for, STATE(2401), 2, sym_line_comment, sym_block_comment, - [74721] = 6, + ACTIONS(3332), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74691] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5406), 1, - anon_sym_COMMA, - STATE(2490), 1, - aux_sym_where_clause_repeat1, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5404), 1, + anon_sym_SEMI, + STATE(1241), 1, + sym_declaration_list, + STATE(2851), 1, + sym_where_clause, STATE(2402), 2, sym_line_comment, sym_block_comment, - ACTIONS(5404), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - [74743] = 8, + [74720] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5408), 1, - anon_sym_STAR_SLASH, - ACTIONS(5410), 1, - sym__outer_block_doc_comment_marker, - ACTIONS(5412), 1, - sym__inner_block_doc_comment_marker, - ACTIONS(5414), 1, - sym__block_comment_content, - STATE(3204), 1, - sym__block_doc_comment_marker, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5406), 1, + anon_sym_SEMI, + STATE(1364), 1, + sym_block, + STATE(3615), 1, + sym_label, STATE(2403), 2, sym_line_comment, sym_block_comment, - [74769] = 8, + [74746] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(5004), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5416), 1, + ACTIONS(5408), 1, anon_sym_SEMI, - STATE(676), 1, + STATE(1269), 1, sym_block, - STATE(3602), 1, + STATE(3615), 1, sym_label, STATE(2404), 2, sym_line_comment, sym_block_comment, - [74795] = 4, + [74772] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5410), 1, + anon_sym_COMMA, + STATE(2488), 1, + aux_sym_where_clause_repeat1, STATE(2405), 2, sym_line_comment, sym_block_comment, - ACTIONS(3240), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [74813] = 8, + ACTIONS(3521), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_SQUOTE, + [74794] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4661), 1, - anon_sym_GT, - ACTIONS(5016), 1, - anon_sym_COLON, - ACTIONS(5418), 1, - anon_sym_COMMA, - STATE(2807), 1, - sym_trait_bounds, - STATE(2984), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(5412), 1, + anon_sym_SEMI, + STATE(560), 1, + sym_block, + STATE(3612), 1, + sym_label, STATE(2406), 2, sym_line_comment, sym_block_comment, - [74839] = 7, + [74820] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5016), 1, - anon_sym_COLON, - ACTIONS(5289), 1, - anon_sym_PLUS, - STATE(3259), 1, - sym_trait_bounds, - ACTIONS(5420), 2, - anon_sym_GT, + ACTIONS(5416), 1, anon_sym_COMMA, + STATE(2405), 1, + aux_sym_where_clause_repeat1, STATE(2407), 2, sym_line_comment, sym_block_comment, - [74863] = 7, + ACTIONS(5414), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_SQUOTE, + [74842] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3148), 1, - anon_sym_PLUS, - ACTIONS(5016), 1, - anon_sym_COLON, - STATE(3259), 1, - sym_trait_bounds, - ACTIONS(5420), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(5418), 1, + anon_sym_SEMI, + STATE(566), 1, + sym_block, + STATE(3612), 1, + sym_label, STATE(2408), 2, sym_line_comment, sym_block_comment, - [74887] = 7, + [74868] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4190), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5424), 1, - anon_sym_STAR, - STATE(2858), 1, - sym_use_list, - ACTIONS(5422), 2, - sym_identifier, - sym_super, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5026), 1, + anon_sym_PLUS, + STATE(1769), 1, + sym_block, + STATE(3617), 1, + sym_label, STATE(2409), 2, sym_line_comment, sym_block_comment, - [74911] = 7, + [74894] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4190), 1, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5154), 1, - anon_sym_STAR, - STATE(2869), 1, - sym_use_list, - ACTIONS(5152), 2, - sym_identifier, - sym_super, + ACTIONS(5420), 1, + anon_sym_SEMI, + STATE(1293), 1, + sym_block, + STATE(3615), 1, + sym_label, STATE(2410), 2, sym_line_comment, sym_block_comment, - [74935] = 8, + [74920] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5426), 1, - anon_sym_RPAREN, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(5432), 1, - anon_sym_COMMA, - STATE(2844), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5026), 1, + anon_sym_PLUS, + STATE(1462), 1, + sym_block, + STATE(3567), 1, + sym_label, STATE(2411), 2, sym_line_comment, sym_block_comment, - [74961] = 7, + [74946] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5434), 1, - anon_sym_RPAREN, - ACTIONS(5437), 1, - anon_sym_COMMA, - STATE(2898), 1, - aux_sym_parameters_repeat1, - ACTIONS(4478), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2412), 2, sym_line_comment, sym_block_comment, - [74985] = 6, + ACTIONS(5422), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [74964] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3292), 1, - anon_sym_PLUS, - ACTIONS(4478), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5440), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5424), 1, + anon_sym_move, + STATE(1472), 1, + sym_block, + STATE(3567), 1, + sym_label, STATE(2413), 2, sym_line_comment, sym_block_comment, - [75007] = 5, + [74990] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_COMMA, - ACTIONS(5443), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(2414), 3, + STATE(2414), 2, sym_line_comment, sym_block_comment, - aux_sym_where_clause_repeat1, - [75027] = 8, + ACTIONS(5426), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [75008] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(5010), 1, - anon_sym_PLUS, - STATE(1409), 1, - sym_block, - STATE(3556), 1, - sym_label, + ACTIONS(5008), 1, + anon_sym_COLON, + ACTIONS(5307), 1, + anon_sym_GT, + ACTIONS(5309), 1, + anon_sym_COMMA, + STATE(2803), 1, + sym_trait_bounds, + STATE(2804), 1, + aux_sym_type_arguments_repeat1, STATE(2415), 2, sym_line_comment, sym_block_comment, - [75053] = 4, + [75034] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4843), 1, + anon_sym_PIPE, + ACTIONS(5428), 1, + anon_sym_SEMI, + ACTIONS(5430), 1, + anon_sym_COLON, + ACTIONS(5432), 1, + anon_sym_EQ, + ACTIONS(5434), 1, + anon_sym_else, STATE(2416), 2, sym_line_comment, sym_block_comment, - ACTIONS(5448), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75071] = 8, + [75060] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(5004), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5450), 1, + ACTIONS(5436), 1, anon_sym_SEMI, - STATE(489), 1, + STATE(1322), 1, sym_block, - STATE(3602), 1, + STATE(3615), 1, sym_label, STATE(2417), 2, sym_line_comment, sym_block_comment, - [75097] = 4, + [75086] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5438), 1, + anon_sym_RBRACK, + ACTIONS(3332), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4490), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2418), 2, sym_line_comment, sym_block_comment, - ACTIONS(3836), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75115] = 4, + [75108] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5443), 1, + anon_sym_COLON_COLON, + ACTIONS(5445), 1, + anon_sym_as, STATE(2419), 2, sym_line_comment, sym_block_comment, - ACTIONS(3848), 5, + ACTIONS(5441), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75133] = 7, + anon_sym_RBRACE, + anon_sym_COMMA, + [75130] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4609), 1, - anon_sym_EQ, - ACTIONS(5016), 1, - anon_sym_COLON, - STATE(3026), 1, - sym_trait_bounds, - ACTIONS(5452), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5447), 1, + anon_sym_SEMI, + STATE(1099), 1, + sym_block, + STATE(3615), 1, + sym_label, STATE(2420), 2, sym_line_comment, sym_block_comment, - [75157] = 8, + [75156] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(5454), 1, - anon_sym_move, - STATE(1449), 1, - sym_block, - STATE(3556), 1, - sym_label, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(5172), 1, + anon_sym_COLON_COLON, + ACTIONS(5214), 1, + anon_sym_COLON, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2421), 2, sym_line_comment, sym_block_comment, - [75183] = 8, + [75180] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1217), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(5456), 1, - anon_sym_move, - STATE(470), 1, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5449), 1, + anon_sym_SEMI, + STATE(1340), 1, sym_block, - STATE(3606), 1, + STATE(3615), 1, sym_label, STATE(2422), 2, sym_line_comment, sym_block_comment, - [75209] = 8, + [75206] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2980), 1, - anon_sym_POUND, - ACTIONS(5458), 1, - sym_identifier, - ACTIONS(5460), 1, - sym_integer_literal, - STATE(1052), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1479), 1, - sym_attribute_item, + ACTIONS(5451), 1, + anon_sym_RPAREN, + ACTIONS(5453), 1, + anon_sym_COMMA, + STATE(2814), 1, + aux_sym_parameters_repeat1, + ACTIONS(4490), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2423), 2, sym_line_comment, sym_block_comment, - [75235] = 8, + [75230] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(5462), 1, - anon_sym_SEMI, - ACTIONS(5464), 1, - anon_sym_COLON, - ACTIONS(5466), 1, - anon_sym_EQ, - ACTIONS(5468), 1, - anon_sym_else, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5455), 1, + anon_sym_move, + STATE(1470), 1, + sym_block, + STATE(3567), 1, + sym_label, STATE(2424), 2, sym_line_comment, sym_block_comment, - [75261] = 8, + [75256] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(5470), 1, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(5457), 1, anon_sym_SEMI, - ACTIONS(5472), 1, - anon_sym_COLON, - ACTIONS(5474), 1, - anon_sym_EQ, - ACTIONS(5476), 1, - anon_sym_else, + STATE(532), 1, + sym_block, + STATE(3612), 1, + sym_label, STATE(2425), 2, sym_line_comment, sym_block_comment, - [75287] = 4, + [75282] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5459), 1, + anon_sym_SEMI, + STATE(1370), 1, + sym_block, + STATE(3615), 1, + sym_label, STATE(2426), 2, sym_line_comment, sym_block_comment, - ACTIONS(5478), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75305] = 8, + [75308] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3268), 1, - anon_sym_LPAREN, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4476), 1, - anon_sym_COLON_COLON, - STATE(1067), 1, - sym_parameters, - STATE(1940), 1, - sym_type_arguments, + ACTIONS(4797), 1, + anon_sym_RPAREN, + ACTIONS(5461), 1, + anon_sym_COLON, + ACTIONS(5463), 1, + anon_sym_PIPE, + ACTIONS(5465), 1, + anon_sym_COMMA, + STATE(2948), 1, + aux_sym_closure_parameters_repeat1, STATE(2427), 2, sym_line_comment, sym_block_comment, - [75331] = 6, + [75334] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3708), 1, - anon_sym_PLUS, - ACTIONS(4795), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5480), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5467), 1, + anon_sym_SEMI, + STATE(1380), 1, + sym_block, + STATE(3615), 1, + sym_label, STATE(2428), 2, sym_line_comment, sym_block_comment, - [75353] = 4, + [75360] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5469), 1, + anon_sym_SEMI, + STATE(1384), 1, + sym_block, + STATE(3615), 1, + sym_label, STATE(2429), 2, sym_line_comment, sym_block_comment, - ACTIONS(5483), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75371] = 8, + [75386] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4881), 1, - anon_sym_PIPE, - ACTIONS(5485), 1, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5471), 1, anon_sym_SEMI, - ACTIONS(5487), 1, - anon_sym_COLON, - ACTIONS(5489), 1, - anon_sym_EQ, - ACTIONS(5491), 1, - anon_sym_else, + STATE(1388), 1, + sym_block, + STATE(3615), 1, + sym_label, STATE(2430), 2, sym_line_comment, sym_block_comment, - [75397] = 4, + [75412] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5445), 1, + anon_sym_as, + ACTIONS(5473), 1, + anon_sym_COLON_COLON, STATE(2431), 2, sym_line_comment, sym_block_comment, - ACTIONS(5493), 5, + ACTIONS(5441), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_where, - [75415] = 8, + [75434] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(5010), 1, - anon_sym_PLUS, - STATE(1655), 1, - sym_block, - STATE(3607), 1, - sym_label, + ACTIONS(5475), 1, + anon_sym_RPAREN, + ACTIONS(5478), 1, + anon_sym_COMMA, + STATE(2901), 1, + aux_sym_parameters_repeat1, + ACTIONS(4490), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2432), 2, sym_line_comment, sym_block_comment, - [75441] = 7, + [75458] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4488), 1, - anon_sym_DOT_DOT, - ACTIONS(5224), 1, - anon_sym_COLON, - ACTIONS(5226), 1, - anon_sym_COLON_COLON, - ACTIONS(4490), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5481), 1, + anon_sym_move, + STATE(481), 1, + sym_block, + STATE(3616), 1, + sym_label, STATE(2433), 2, sym_line_comment, sym_block_comment, - [75465] = 4, + [75484] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5483), 1, + anon_sym_move, + STATE(1649), 1, + sym_block, + STATE(3617), 1, + sym_label, STATE(2434), 2, sym_line_comment, sym_block_comment, - ACTIONS(3590), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75483] = 4, + [75510] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3332), 1, + anon_sym_PLUS, + ACTIONS(4490), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5438), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2435), 2, sym_line_comment, sym_block_comment, - ACTIONS(3602), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75501] = 4, + [75532] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4621), 1, + anon_sym_EQ, + ACTIONS(5008), 1, + anon_sym_COLON, + STATE(2830), 1, + sym_trait_bounds, + ACTIONS(5485), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2436), 2, sym_line_comment, sym_block_comment, - ACTIONS(3606), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75519] = 8, + [75556] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5016), 1, - anon_sym_COLON, - ACTIONS(5295), 1, - anon_sym_GT, - ACTIONS(5297), 1, + ACTIONS(5487), 1, + anon_sym_RBRACK, + ACTIONS(3596), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4861), 2, + anon_sym_PIPE, anon_sym_COMMA, - STATE(2934), 1, - sym_trait_bounds, - STATE(2937), 1, - aux_sym_type_arguments_repeat1, STATE(2437), 2, sym_line_comment, sym_block_comment, - [75545] = 7, + [75578] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5495), 1, - anon_sym_RPAREN, - ACTIONS(5497), 1, - anon_sym_COMMA, - STATE(2948), 1, - aux_sym_parameters_repeat1, - ACTIONS(4478), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(3994), 1, + anon_sym_LPAREN, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4488), 1, + anon_sym_COLON_COLON, + STATE(1617), 1, + sym_parameters, + STATE(1946), 1, + sym_type_arguments, STATE(2438), 2, sym_line_comment, sym_block_comment, - [75569] = 8, + [75604] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(5170), 1, + anon_sym_COLON, + ACTIONS(5172), 1, + anon_sym_COLON_COLON, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2439), 2, + sym_line_comment, + sym_block_comment, + [75628] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5016), 1, + ACTIONS(5008), 1, anon_sym_COLON, - ACTIONS(5499), 1, + ACTIONS(5490), 1, anon_sym_GT, - ACTIONS(5501), 1, + ACTIONS(5492), 1, anon_sym_COMMA, - STATE(2807), 1, - sym_trait_bounds, - STATE(2887), 1, + STATE(2778), 1, aux_sym_type_parameters_repeat1, - STATE(2439), 2, + STATE(2860), 1, + sym_trait_bounds, + STATE(2440), 2, sym_line_comment, sym_block_comment, - [75595] = 8, + [75654] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(4998), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5503), 1, + ACTIONS(5494), 1, anon_sym_SEMI, - STATE(1190), 1, + STATE(1177), 1, sym_block, - STATE(3605), 1, + STATE(3615), 1, sym_label, - STATE(2440), 2, + STATE(2441), 2, sym_line_comment, sym_block_comment, - [75621] = 8, + [75680] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4673), 1, - anon_sym_GT, - ACTIONS(5016), 1, + ACTIONS(5008), 1, anon_sym_COLON, - ACTIONS(5505), 1, + ACTIONS(5361), 1, + anon_sym_GT, + ACTIONS(5363), 1, anon_sym_COMMA, - STATE(2807), 1, + STATE(2916), 1, sym_trait_bounds, - STATE(2971), 1, - aux_sym_type_parameters_repeat1, - STATE(2441), 2, - sym_line_comment, - sym_block_comment, - [75647] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(5010), 1, - anon_sym_PLUS, - STATE(1806), 1, - sym_block, - STATE(3607), 1, - sym_label, + STATE(3054), 1, + aux_sym_type_arguments_repeat1, STATE(2442), 2, sym_line_comment, sym_block_comment, - [75673] = 7, + [75706] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4488), 1, - anon_sym_DOT_DOT, - ACTIONS(5170), 1, - anon_sym_COLON, - ACTIONS(5226), 1, - anon_sym_COLON_COLON, + ACTIONS(5496), 1, + anon_sym_RPAREN, + ACTIONS(5498), 1, + anon_sym_COMMA, + STATE(2919), 1, + aux_sym_parameters_repeat1, ACTIONS(4490), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COLON, + anon_sym_PIPE, STATE(2443), 2, sym_line_comment, sym_block_comment, - [75697] = 8, + [75730] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(5004), 1, - anon_sym_LBRACE, - ACTIONS(5507), 1, - anon_sym_SEMI, - STATE(520), 1, - sym_block, - STATE(3602), 1, - sym_label, STATE(2444), 2, sym_line_comment, sym_block_comment, - [75723] = 7, + ACTIONS(3690), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [75748] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1485), 1, - anon_sym_RPAREN, - ACTIONS(5509), 1, - anon_sym_COMMA, - STATE(3030), 1, - aux_sym_parameters_repeat1, - ACTIONS(4478), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2445), 2, sym_line_comment, sym_block_comment, - [75747] = 8, + ACTIONS(3706), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [75766] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(4998), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5511), 1, + ACTIONS(5500), 1, anon_sym_SEMI, - STATE(1249), 1, + STATE(535), 1, sym_block, - STATE(3605), 1, + STATE(3612), 1, sym_label, STATE(2446), 2, sym_line_comment, sym_block_comment, - [75773] = 8, + [75792] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(5004), 1, - anon_sym_LBRACE, - ACTIONS(5513), 1, - anon_sym_SEMI, - STATE(533), 1, - sym_block, - STATE(3602), 1, - sym_label, STATE(2447), 2, sym_line_comment, sym_block_comment, - [75799] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5517), 1, - anon_sym_COLON_COLON, - ACTIONS(5519), 1, - anon_sym_as, - STATE(2448), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5515), 3, + ACTIONS(5502), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - [75821] = 8, + anon_sym_where, + [75810] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(1223), 1, anon_sym_LBRACE, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(5010), 1, - anon_sym_PLUS, - STATE(1749), 1, + ACTIONS(5504), 1, + anon_sym_move, + STATE(478), 1, sym_block, - STATE(3607), 1, + STATE(3616), 1, sym_label, + STATE(2448), 2, + sym_line_comment, + sym_block_comment, + [75836] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1495), 1, + anon_sym_RPAREN, + ACTIONS(5506), 1, + anon_sym_COMMA, + STATE(2923), 1, + aux_sym_parameters_repeat1, + ACTIONS(4490), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2449), 2, sym_line_comment, sym_block_comment, - [75847] = 8, + [75860] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(4998), 1, - anon_sym_LBRACE, - ACTIONS(5521), 1, - anon_sym_SEMI, - STATE(1284), 1, - sym_block, - STATE(3605), 1, - sym_label, + ACTIONS(5008), 1, + anon_sym_COLON, + ACTIONS(5367), 1, + anon_sym_GT, + ACTIONS(5369), 1, + anon_sym_COMMA, + STATE(2861), 1, + sym_trait_bounds, + STATE(2862), 1, + aux_sym_type_arguments_repeat1, STATE(2450), 2, sym_line_comment, sym_block_comment, - [75873] = 6, + [75886] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5398), 1, - anon_sym_as, - ACTIONS(5523), 1, - anon_sym_COLON_COLON, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(5508), 1, + anon_sym_SEMI, + STATE(735), 1, + sym_block, + STATE(3612), 1, + sym_label, STATE(2451), 2, sym_line_comment, sym_block_comment, - ACTIONS(5394), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [75895] = 8, + [75912] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(5010), 1, - anon_sym_PLUS, - STATE(1474), 1, + ACTIONS(5510), 1, + anon_sym_move, + STATE(1650), 1, sym_block, - STATE(3556), 1, + STATE(3617), 1, sym_label, STATE(2452), 2, sym_line_comment, sym_block_comment, - [75921] = 6, + [75938] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5480), 1, - anon_sym_RBRACK, - ACTIONS(3708), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4795), 2, - anon_sym_PIPE, + ACTIONS(4673), 1, + anon_sym_GT, + ACTIONS(5008), 1, + anon_sym_COLON, + ACTIONS(5512), 1, anon_sym_COMMA, + STATE(2821), 1, + aux_sym_type_parameters_repeat1, + STATE(2860), 1, + sym_trait_bounds, STATE(2453), 2, sym_line_comment, sym_block_comment, - [75943] = 4, + [75964] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4861), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2454), 2, sym_line_comment, sym_block_comment, - ACTIONS(3800), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75961] = 4, + ACTIONS(3596), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [75984] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5026), 1, + anon_sym_PLUS, + STATE(1420), 1, + sym_block, + STATE(3567), 1, + sym_label, STATE(2455), 2, sym_line_comment, sym_block_comment, - ACTIONS(3804), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75979] = 4, + [76010] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(5514), 1, + anon_sym_SEMI, + STATE(520), 1, + sym_block, + STATE(3612), 1, + sym_label, STATE(2456), 2, sym_line_comment, sym_block_comment, - ACTIONS(3808), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75997] = 6, + [76036] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5398), 1, - anon_sym_as, - ACTIONS(5525), 1, - anon_sym_COLON_COLON, + ACTIONS(3596), 1, + anon_sym_PLUS, + ACTIONS(4861), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5487), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2457), 2, sym_line_comment, sym_block_comment, - ACTIONS(5394), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76019] = 8, + [76058] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(4998), 1, - anon_sym_LBRACE, - ACTIONS(5527), 1, - anon_sym_SEMI, - STATE(1339), 1, - sym_block, - STATE(3605), 1, - sym_label, STATE(2458), 2, sym_line_comment, sym_block_comment, - [76045] = 8, + ACTIONS(5516), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [76076] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(4998), 1, - anon_sym_LBRACE, - ACTIONS(5529), 1, - anon_sym_SEMI, - STATE(1352), 1, - sym_block, - STATE(3605), 1, - sym_label, + ACTIONS(5520), 1, + anon_sym_COLON_COLON, + ACTIONS(5522), 1, + anon_sym_as, STATE(2459), 2, sym_line_comment, sym_block_comment, - [76071] = 8, + ACTIONS(5518), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [76098] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(4998), 1, + anon_sym_SLASH_STAR, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5531), 1, - anon_sym_SEMI, - STATE(1358), 1, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5026), 1, + anon_sym_PLUS, + STATE(1779), 1, sym_block, - STATE(3605), 1, + STATE(3617), 1, sym_label, STATE(2460), 2, sym_line_comment, sym_block_comment, - [76097] = 8, + [76124] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(4998), 1, - anon_sym_LBRACE, - ACTIONS(5533), 1, - anon_sym_SEMI, - STATE(1383), 1, - sym_block, - STATE(3605), 1, - sym_label, STATE(2461), 2, sym_line_comment, sym_block_comment, - [76123] = 8, + ACTIONS(5524), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [76142] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(4998), 1, - anon_sym_LBRACE, - ACTIONS(5535), 1, - anon_sym_SEMI, - STATE(1389), 1, - sym_block, - STATE(3605), 1, - sym_label, STATE(2462), 2, sym_line_comment, sym_block_comment, - [76149] = 8, + ACTIONS(5526), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [76160] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(4998), 1, - anon_sym_LBRACE, - ACTIONS(5537), 1, - anon_sym_SEMI, - STATE(1399), 1, - sym_block, - STATE(3605), 1, - sym_label, + ACTIONS(5008), 1, + anon_sym_COLON, + ACTIONS(5305), 1, + anon_sym_PLUS, + STATE(3129), 1, + sym_trait_bounds, + ACTIONS(5528), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2463), 2, sym_line_comment, sym_block_comment, - [76175] = 8, + [76184] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(4998), 1, - anon_sym_LBRACE, - ACTIONS(5539), 1, - anon_sym_SEMI, - STATE(1403), 1, - sym_block, - STATE(3605), 1, - sym_label, + ACTIONS(3084), 1, + anon_sym_PLUS, + ACTIONS(5008), 1, + anon_sym_COLON, + STATE(3129), 1, + sym_trait_bounds, + ACTIONS(5528), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2464), 2, sym_line_comment, sym_block_comment, - [76201] = 8, + [76208] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(4998), 1, - anon_sym_LBRACE, - ACTIONS(5541), 1, - anon_sym_SEMI, - STATE(1407), 1, - sym_block, - STATE(3605), 1, - sym_label, + ACTIONS(3276), 1, + anon_sym_LPAREN, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4488), 1, + anon_sym_COLON_COLON, + STATE(1065), 1, + sym_parameters, + STATE(1946), 1, + sym_type_arguments, STATE(2465), 2, sym_line_comment, sym_block_comment, - [76227] = 8, + [76234] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1217), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(5543), 1, - anon_sym_move, - STATE(475), 1, - sym_block, - STATE(3606), 1, - sym_label, STATE(2466), 2, sym_line_comment, sym_block_comment, - [76253] = 8, + ACTIONS(3874), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [76252] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(5545), 1, - anon_sym_move, - STATE(1669), 1, - sym_block, - STATE(3607), 1, - sym_label, STATE(2467), 2, sym_line_comment, sym_block_comment, - [76279] = 8, + ACTIONS(3878), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [76270] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(5004), 1, - anon_sym_LBRACE, - ACTIONS(5547), 1, - anon_sym_SEMI, - STATE(537), 1, - sym_block, - STATE(3602), 1, - sym_label, STATE(2468), 2, sym_line_comment, sym_block_comment, - [76305] = 8, + ACTIONS(3882), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [76288] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4476), 1, + ACTIONS(5445), 1, + anon_sym_as, + ACTIONS(5530), 1, anon_sym_COLON_COLON, - STATE(1635), 1, - sym_parameters, - STATE(1940), 1, - sym_type_arguments, STATE(2469), 2, sym_line_comment, sym_block_comment, - [76331] = 8, + ACTIONS(5441), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [76310] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5016), 1, - anon_sym_COLON, - ACTIONS(5291), 1, - anon_sym_GT, - ACTIONS(5293), 1, - anon_sym_COMMA, - STATE(2834), 1, - sym_trait_bounds, - STATE(2835), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(5532), 1, + anon_sym_SEMI, + STATE(701), 1, + sym_block, + STATE(3612), 1, + sym_label, STATE(2470), 2, sym_line_comment, sym_block_comment, - [76357] = 7, + [76336] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5549), 1, - anon_sym_RPAREN, - ACTIONS(5551), 1, - anon_sym_COMMA, - STATE(2838), 1, - aux_sym_parameters_repeat1, - ACTIONS(4478), 2, + ACTIONS(5534), 1, + anon_sym_SEMI, + ACTIONS(5536), 1, anon_sym_COLON, + ACTIONS(5538), 1, anon_sym_PIPE, + ACTIONS(5540), 1, + anon_sym_EQ, + ACTIONS(5542), 1, + anon_sym_else, STATE(2471), 2, sym_line_comment, sym_block_comment, - [76381] = 4, + [76362] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5026), 1, + anon_sym_PLUS, + STATE(1398), 1, + sym_block, + STATE(3567), 1, + sym_label, STATE(2472), 2, sym_line_comment, sym_block_comment, - ACTIONS(3852), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76399] = 7, + [76388] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1489), 1, + ACTIONS(5544), 1, anon_sym_RPAREN, - ACTIONS(5553), 1, + ACTIONS(5546), 1, anon_sym_COMMA, - STATE(2846), 1, + STATE(2901), 1, aux_sym_parameters_repeat1, - ACTIONS(4478), 2, + ACTIONS(4490), 2, anon_sym_COLON, anon_sym_PIPE, STATE(2473), 2, sym_line_comment, sym_block_comment, - [76423] = 4, + [76412] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -173379,356 +173880,354 @@ static const uint16_t ts_small_parse_table[] = { STATE(2474), 2, sym_line_comment, sym_block_comment, - ACTIONS(3856), 5, + ACTIONS(5548), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - [76441] = 4, + [76430] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(5550), 1, + anon_sym_SEMI, + STATE(640), 1, + sym_block, + STATE(3612), 1, + sym_label, STATE(2475), 2, sym_line_comment, sym_block_comment, - ACTIONS(5555), 5, + [76456] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(5552), 1, + anon_sym_SEMI, + STATE(577), 1, + sym_block, + STATE(3612), 1, + sym_label, + STATE(2476), 2, + sym_line_comment, + sym_block_comment, + [76482] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2477), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5554), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [76459] = 4, + [76500] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2476), 2, + STATE(2478), 2, sym_line_comment, sym_block_comment, - ACTIONS(5557), 5, + ACTIONS(5556), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [76477] = 8, + [76518] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(5559), 1, - anon_sym_move, - STATE(1671), 1, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(5558), 1, + anon_sym_SEMI, + STATE(581), 1, sym_block, - STATE(3607), 1, + STATE(3612), 1, sym_label, - STATE(2477), 2, + STATE(2479), 2, sym_line_comment, sym_block_comment, - [76503] = 4, + [76544] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2478), 2, + STATE(2480), 2, sym_line_comment, sym_block_comment, - ACTIONS(5561), 5, + ACTIONS(5560), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [76521] = 4, + [76562] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2479), 2, + STATE(2481), 2, sym_line_comment, sym_block_comment, - ACTIONS(5563), 5, + ACTIONS(5562), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [76539] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4809), 1, - anon_sym_RPAREN, - ACTIONS(5565), 1, - anon_sym_COLON, - ACTIONS(5567), 1, - anon_sym_PIPE, - ACTIONS(5569), 1, - anon_sym_COMMA, - STATE(2939), 1, - aux_sym_closure_parameters_repeat1, - STATE(2480), 2, - sym_line_comment, - sym_block_comment, - [76565] = 5, + [76580] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4795), 2, - anon_sym_COLON, + ACTIONS(5538), 1, anon_sym_PIPE, - STATE(2481), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3708), 3, + ACTIONS(5564), 1, anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(5566), 1, + anon_sym_COLON, + ACTIONS(5568), 1, anon_sym_COMMA, - [76585] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4476), 1, - anon_sym_COLON_COLON, - STATE(1940), 1, - sym_type_arguments, - STATE(1957), 1, - sym_parameters, + STATE(2869), 1, + aux_sym_slice_pattern_repeat1, STATE(2482), 2, sym_line_comment, sym_block_comment, - [76611] = 8, + [76606] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(5004), 1, - anon_sym_LBRACE, - ACTIONS(5571), 1, - anon_sym_SEMI, - STATE(563), 1, - sym_block, - STATE(3602), 1, - sym_label, + ACTIONS(5570), 1, + anon_sym_STAR_SLASH, + ACTIONS(5572), 1, + sym__outer_block_doc_comment_marker, + ACTIONS(5574), 1, + sym__inner_block_doc_comment_marker, + ACTIONS(5576), 1, + sym__block_comment_content, + STATE(3194), 1, + sym__block_doc_comment_marker, STATE(2483), 2, sym_line_comment, sym_block_comment, - [76637] = 7, + [76632] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1487), 1, - anon_sym_RPAREN, - ACTIONS(5573), 1, - anon_sym_COMMA, - STATE(3007), 1, - aux_sym_parameters_repeat1, - ACTIONS(4478), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2484), 2, sym_line_comment, sym_block_comment, - [76661] = 8, + ACTIONS(3796), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [76650] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(5004), 1, - anon_sym_LBRACE, - ACTIONS(5575), 1, - anon_sym_SEMI, - STATE(569), 1, - sym_block, - STATE(3602), 1, - sym_label, + ACTIONS(4490), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2485), 2, sym_line_comment, sym_block_comment, - [76687] = 8, + ACTIONS(3332), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [76670] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5016), 1, - anon_sym_COLON, - ACTIONS(5303), 1, + ACTIONS(4681), 1, anon_sym_GT, - ACTIONS(5305), 1, + ACTIONS(5008), 1, + anon_sym_COLON, + ACTIONS(5578), 1, anon_sym_COMMA, - STATE(2830), 1, + STATE(2860), 1, sym_trait_bounds, - STATE(2831), 1, - aux_sym_type_arguments_repeat1, + STATE(3030), 1, + aux_sym_type_parameters_repeat1, STATE(2486), 2, sym_line_comment, sym_block_comment, - [76713] = 4, + [76696] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4843), 1, + anon_sym_PIPE, + ACTIONS(5580), 1, + anon_sym_SEMI, + ACTIONS(5582), 1, + anon_sym_COLON, + ACTIONS(5584), 1, + anon_sym_EQ, + ACTIONS(5586), 1, + anon_sym_else, STATE(2487), 2, sym_line_comment, sym_block_comment, - ACTIONS(5577), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76731] = 4, + [76722] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2488), 2, + ACTIONS(5590), 1, + anon_sym_COMMA, + ACTIONS(5588), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(2488), 3, sym_line_comment, sym_block_comment, - ACTIONS(5579), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76749] = 4, + aux_sym_where_clause_repeat1, + [76742] = 8, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5593), 1, + anon_sym_move, + STATE(389), 1, + sym_block, + STATE(3347), 1, + sym_label, STATE(2489), 2, sym_line_comment, sym_block_comment, - ACTIONS(5581), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76767] = 6, + [76768] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5583), 1, + ACTIONS(1499), 1, + anon_sym_RPAREN, + ACTIONS(5595), 1, anon_sym_COMMA, - STATE(2414), 1, - aux_sym_where_clause_repeat1, + STATE(2847), 1, + aux_sym_parameters_repeat1, + ACTIONS(4490), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2490), 2, sym_line_comment, sym_block_comment, - ACTIONS(3390), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - [76789] = 8, + [76792] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - ACTIONS(5004), 1, + ACTIONS(5024), 1, anon_sym_LBRACE, - ACTIONS(5585), 1, + ACTIONS(5597), 1, anon_sym_SEMI, - STATE(609), 1, + STATE(490), 1, sym_block, - STATE(3602), 1, + STATE(3612), 1, sym_label, STATE(2491), 2, sym_line_comment, sym_block_comment, - [76815] = 8, + [76818] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(5004), 1, - anon_sym_LBRACE, - ACTIONS(5587), 1, - anon_sym_SEMI, - STATE(579), 1, - sym_block, - STATE(3602), 1, - sym_label, STATE(2492), 2, sym_line_comment, sym_block_comment, - [76841] = 7, + ACTIONS(5599), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [76836] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4609), 1, - anon_sym_EQ, - ACTIONS(5016), 1, - anon_sym_COLON, - STATE(3026), 1, - sym_trait_bounds, - ACTIONS(5589), 2, - anon_sym_GT, + ACTIONS(1493), 1, + anon_sym_RPAREN, + ACTIONS(5601), 1, anon_sym_COMMA, + STATE(2999), 1, + aux_sym_parameters_repeat1, + ACTIONS(4490), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2493), 2, sym_line_comment, sym_block_comment, - [76865] = 8, + [76860] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(5004), 1, - anon_sym_LBRACE, - ACTIONS(5591), 1, - anon_sym_SEMI, - STATE(583), 1, - sym_block, - STATE(3602), 1, - sym_label, + ACTIONS(4621), 1, + anon_sym_EQ, + ACTIONS(5008), 1, + anon_sym_COLON, + STATE(2830), 1, + sym_trait_bounds, + ACTIONS(5603), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2494), 2, sym_line_comment, sym_block_comment, - [76891] = 8, + [76884] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(5593), 1, - anon_sym_move, - STATE(1444), 1, - sym_block, - STATE(3556), 1, - sym_label, STATE(2495), 2, sym_line_comment, sym_block_comment, - [76917] = 4, + ACTIONS(3694), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [76902] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -173736,81 +174235,81 @@ static const uint16_t ts_small_parse_table[] = { STATE(2496), 2, sym_line_comment, sym_block_comment, - ACTIONS(5595), 5, + ACTIONS(3698), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, anon_sym_where, - [76935] = 8, + [76920] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(5004), 1, - anon_sym_LBRACE, - ACTIONS(5597), 1, - anon_sym_SEMI, - STATE(587), 1, - sym_block, - STATE(3602), 1, - sym_label, STATE(2497), 2, sym_line_comment, sym_block_comment, - [76961] = 7, + ACTIONS(3702), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [76938] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5599), 1, - anon_sym_RPAREN, - ACTIONS(5601), 1, - anon_sym_COMMA, - STATE(2898), 1, - aux_sym_parameters_repeat1, - ACTIONS(4478), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5024), 1, + anon_sym_LBRACE, + ACTIONS(5605), 1, + anon_sym_SEMI, + STATE(585), 1, + sym_block, + STATE(3612), 1, + sym_label, STATE(2498), 2, sym_line_comment, sym_block_comment, - [76985] = 5, + [76964] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4478), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5607), 1, + anon_sym_SEMI, + STATE(1235), 1, + sym_block, + STATE(3615), 1, + sym_label, STATE(2499), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [77005] = 8, + [76990] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(5010), 1, - anon_sym_PLUS, - STATE(1441), 1, - sym_block, - STATE(3556), 1, - sym_label, + ACTIONS(2992), 1, + anon_sym_POUND, + ACTIONS(5609), 1, + sym_identifier, + ACTIONS(5611), 1, + sym_integer_literal, + STATE(1096), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1490), 1, + sym_attribute_item, STATE(2500), 2, sym_line_comment, sym_block_comment, - [77031] = 4, + [77016] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -173818,900 +174317,906 @@ static const uint16_t ts_small_parse_table[] = { STATE(2501), 2, sym_line_comment, sym_block_comment, - ACTIONS(5603), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(3248), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - anon_sym_where, - [77049] = 4, + anon_sym_as, + [77034] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4488), 1, + anon_sym_COLON_COLON, + ACTIONS(4619), 1, + anon_sym_COLON, + STATE(1946), 1, + sym_type_arguments, + STATE(2658), 1, + sym_trait_bounds, STATE(2502), 2, sym_line_comment, sym_block_comment, - ACTIONS(5605), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77067] = 8, + [77060] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4881), 1, - anon_sym_PIPE, - ACTIONS(5607), 1, - anon_sym_SEMI, - ACTIONS(5609), 1, + ACTIONS(5008), 1, anon_sym_COLON, - ACTIONS(5611), 1, - anon_sym_EQ, - ACTIONS(5613), 1, - anon_sym_else, + ACTIONS(5272), 1, + anon_sym_GT, + ACTIONS(5274), 1, + anon_sym_COMMA, + STATE(2843), 1, + aux_sym_type_parameters_repeat1, + STATE(2860), 1, + sym_trait_bounds, STATE(2503), 2, sym_line_comment, sym_block_comment, - [77093] = 6, + [77086] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5440), 1, - anon_sym_RBRACK, - ACTIONS(3292), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4478), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(4324), 1, + anon_sym_LBRACE, + ACTIONS(5615), 1, + anon_sym_STAR, + STATE(2988), 1, + sym_use_list, + ACTIONS(5613), 2, + sym_identifier, + sym_super, STATE(2504), 2, sym_line_comment, sym_block_comment, - [77115] = 8, + [77110] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(4998), 1, - anon_sym_LBRACE, - ACTIONS(5615), 1, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(5617), 1, anon_sym_SEMI, - STATE(1309), 1, - sym_block, - STATE(3605), 1, - sym_label, + ACTIONS(5619), 1, + anon_sym_COLON, + ACTIONS(5621), 1, + anon_sym_EQ, + ACTIONS(5623), 1, + anon_sym_else, STATE(2505), 2, sym_line_comment, sym_block_comment, - [77141] = 7, + [77136] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3276), 1, - anon_sym_LT2, - ACTIONS(5152), 1, - sym_super, - ACTIONS(5617), 1, - sym_identifier, - STATE(1420), 1, - sym_type_arguments, STATE(2506), 2, sym_line_comment, sym_block_comment, - [77164] = 4, + ACTIONS(3800), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [77154] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5026), 1, + anon_sym_PLUS, + STATE(1817), 1, + sym_block, + STATE(3617), 1, + sym_label, STATE(2507), 2, sym_line_comment, sym_block_comment, - ACTIONS(4292), 4, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - [77181] = 7, + [77180] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, - anon_sym_LBRACE, - STATE(721), 1, - sym_declaration_list, - STATE(3286), 1, - sym_where_clause, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4488), 1, + anon_sym_COLON_COLON, + STATE(1946), 1, + sym_type_arguments, + STATE(1975), 1, + sym_parameters, STATE(2508), 2, sym_line_comment, sym_block_comment, - [77204] = 5, + [77206] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5619), 1, - anon_sym_COLON_COLON, + ACTIONS(4324), 1, + anon_sym_LBRACE, + ACTIONS(5254), 1, + anon_sym_STAR, + STATE(2995), 1, + sym_use_list, + ACTIONS(5252), 2, + sym_identifier, + sym_super, STATE(2509), 2, sym_line_comment, sym_block_comment, - ACTIONS(4693), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [77223] = 5, + [77230] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5621), 1, - anon_sym_COLON_COLON, STATE(2510), 2, sym_line_comment, sym_block_comment, - ACTIONS(4687), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [77242] = 5, + ACTIONS(5625), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77248] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5623), 1, - anon_sym_COLON_COLON, STATE(2511), 2, sym_line_comment, sym_block_comment, - ACTIONS(4687), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [77261] = 5, + ACTIONS(5627), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [77266] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5625), 1, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5629), 1, anon_sym_COLON_COLON, + ACTIONS(5631), 1, + anon_sym_for, + STATE(1946), 1, + sym_type_arguments, STATE(2512), 2, sym_line_comment, sym_block_comment, - ACTIONS(4687), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [77280] = 7, + [77289] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(5627), 1, - anon_sym_RPAREN, - ACTIONS(5629), 1, - anon_sym_COMMA, - STATE(2940), 1, - aux_sym_slice_pattern_repeat1, - STATE(2513), 2, + ACTIONS(5633), 1, + anon_sym_DQUOTE, + ACTIONS(5635), 2, + sym_string_content, + sym_escape_sequence, + STATE(2513), 3, sym_line_comment, sym_block_comment, - [77303] = 7, + aux_sym_string_literal_repeat1, + [77308] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(5631), 1, - anon_sym_RPAREN, - ACTIONS(5633), 1, - anon_sym_COMMA, - STATE(2944), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(5638), 1, + anon_sym_COLON_COLON, STATE(2514), 2, sym_line_comment, sym_block_comment, - [77326] = 5, + ACTIONS(4749), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77327] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5619), 1, - anon_sym_COLON_COLON, + ACTIONS(4324), 1, + anon_sym_LBRACE, + STATE(2834), 1, + sym_use_list, + ACTIONS(5640), 2, + sym_identifier, + sym_super, STATE(2515), 2, sym_line_comment, sym_block_comment, - ACTIONS(4737), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [77345] = 7, + [77348] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5495), 1, - anon_sym_RPAREN, - ACTIONS(5497), 1, + ACTIONS(5644), 1, anon_sym_COMMA, - STATE(2948), 1, - aux_sym_parameters_repeat1, - STATE(2516), 2, + ACTIONS(5642), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2516), 3, sym_line_comment, sym_block_comment, - [77368] = 6, + aux_sym_slice_pattern_repeat1, + [77367] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - STATE(3225), 1, - sym_type_arguments, - ACTIONS(5635), 2, - sym_identifier, - sym_super, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4960), 1, + anon_sym_LT, + STATE(2226), 1, + sym_parameters, + STATE(3335), 1, + sym_type_parameters, STATE(2517), 2, sym_line_comment, sym_block_comment, - [77389] = 6, + [77390] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - STATE(3246), 1, - sym_type_arguments, - ACTIONS(5635), 2, - sym_identifier, - sym_super, + ACTIONS(5008), 1, + anon_sym_COLON, + STATE(2860), 1, + sym_trait_bounds, + ACTIONS(5647), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2518), 2, sym_line_comment, sym_block_comment, - [77410] = 5, + [77411] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5621), 1, + ACTIONS(3284), 1, + anon_sym_LT2, + ACTIONS(3557), 1, anon_sym_COLON_COLON, + ACTIONS(4829), 1, + anon_sym_BANG, + STATE(1097), 1, + sym_type_arguments, STATE(2519), 2, sym_line_comment, sym_block_comment, - ACTIONS(4743), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [77429] = 5, + [77434] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5623), 1, - anon_sym_COLON_COLON, + ACTIONS(5272), 1, + anon_sym_GT, + ACTIONS(5274), 1, + anon_sym_COMMA, + ACTIONS(5650), 1, + anon_sym_EQ, + STATE(2843), 1, + aux_sym_type_parameters_repeat1, STATE(2520), 2, sym_line_comment, sym_block_comment, - ACTIONS(4743), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [77448] = 5, + [77457] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5637), 1, - anon_sym_COLON, STATE(2521), 2, sym_line_comment, sym_block_comment, - ACTIONS(4881), 3, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(3248), 4, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - [77467] = 7, + [77474] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4673), 1, - anon_sym_GT, - ACTIONS(5505), 1, - anon_sym_COMMA, - ACTIONS(5639), 1, - anon_sym_EQ, - STATE(2971), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5652), 1, + anon_sym_SEMI, + STATE(3610), 1, + sym_where_clause, STATE(2522), 2, sym_line_comment, sym_block_comment, - [77490] = 5, + [77497] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5625), 1, - anon_sym_COLON_COLON, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + STATE(1481), 1, + sym_declaration_list, + STATE(3056), 1, + sym_where_clause, STATE(2523), 2, sym_line_comment, sym_block_comment, - ACTIONS(4743), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [77509] = 7, + [77520] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5641), 1, - anon_sym_SEMI, - ACTIONS(5643), 1, - anon_sym_EQ, - ACTIONS(5645), 1, - anon_sym_else, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(1154), 1, + sym_block, + STATE(3567), 1, + sym_label, STATE(2524), 2, sym_line_comment, sym_block_comment, - [77532] = 7, + [77543] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(628), 1, - sym_declaration_list, - STATE(3112), 1, - sym_where_clause, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(1160), 1, + sym_block, + STATE(3567), 1, + sym_label, STATE(2525), 2, sym_line_comment, sym_block_comment, - [77555] = 7, + [77566] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(1210), 1, - sym_declaration_list, - STATE(3219), 1, - sym_where_clause, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(1475), 1, + sym_block, + STATE(3567), 1, + sym_label, STATE(2526), 2, sym_line_comment, sym_block_comment, - [77578] = 7, + [77589] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(5010), 1, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5647), 1, + ACTIONS(5654), 1, anon_sym_SEMI, - STATE(3378), 1, + STATE(3423), 1, sym_where_clause, STATE(2527), 2, sym_line_comment, sym_block_comment, - [77601] = 7, + [77612] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(1221), 1, - sym_declaration_list, - STATE(3222), 1, - sym_where_clause, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(3370), 1, + sym_block, + STATE(3567), 1, + sym_label, STATE(2528), 2, sym_line_comment, sym_block_comment, - [77624] = 7, + [77635] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5656), 1, + anon_sym_SEMI, + ACTIONS(5658), 1, + anon_sym_EQ, + ACTIONS(5660), 1, + anon_sym_else, + STATE(2529), 2, + sym_line_comment, + sym_block_comment, + [77658] = 7, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - STATE(382), 1, + STATE(390), 1, sym_block, - STATE(3569), 1, + STATE(3347), 1, sym_label, - STATE(2529), 2, + STATE(2530), 2, sym_line_comment, sym_block_comment, - [77647] = 7, - ACTIONS(103), 1, + [77681] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(5346), 1, - anon_sym_LBRACE, - STATE(1226), 1, - sym_enum_variant_list, - STATE(3230), 1, - sym_where_clause, - STATE(2530), 2, + ACTIONS(5662), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2531), 2, sym_line_comment, sym_block_comment, - [77670] = 5, + ACTIONS(5664), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [77700] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5649), 1, + ACTIONS(5666), 1, anon_sym_DQUOTE, - ACTIONS(5651), 2, + STATE(2575), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5668), 2, sym_string_content, sym_escape_sequence, - STATE(2531), 3, + STATE(2532), 2, sym_line_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [77689] = 7, + [77721] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4944), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(1232), 1, - sym_field_declaration_list, - STATE(3235), 1, - sym_where_clause, - STATE(2532), 2, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(3439), 1, + sym_block, + STATE(3567), 1, + sym_label, + STATE(2533), 2, sym_line_comment, sym_block_comment, - [77712] = 6, + [77744] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4488), 1, + ACTIONS(4500), 1, anon_sym_DOT_DOT, - ACTIONS(5226), 1, + ACTIONS(5172), 1, anon_sym_COLON_COLON, - ACTIONS(4490), 2, + ACTIONS(4502), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2533), 2, - sym_line_comment, - sym_block_comment, - [77733] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_identifier, - ACTIONS(5656), 1, - sym_super, - STATE(3225), 1, - sym_type_arguments, STATE(2534), 2, sym_line_comment, sym_block_comment, - [77756] = 7, + [77765] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(5250), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(726), 1, - sym_enum_variant_list, - STATE(3076), 1, - sym_where_clause, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(3567), 1, + sym_label, + STATE(3571), 1, + sym_block, STATE(2535), 2, sym_line_comment, sym_block_comment, - [77779] = 7, + [77788] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5670), 1, + anon_sym_LPAREN, + ACTIONS(5672), 1, + anon_sym_LBRACK, + ACTIONS(5674), 1, anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(1236), 1, - sym_block, - STATE(3556), 1, - sym_label, + STATE(399), 1, + sym_delim_token_tree, STATE(2536), 2, sym_line_comment, sym_block_comment, - [77802] = 7, + [77811] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5658), 1, - anon_sym_SEMI, - STATE(3492), 1, - sym_where_clause, STATE(2537), 2, sym_line_comment, sym_block_comment, - [77825] = 7, + ACTIONS(945), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [77828] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, + ACTIONS(5138), 1, + anon_sym_LPAREN, + ACTIONS(5140), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, anon_sym_LBRACE, - STATE(528), 1, - sym_declaration_list, - STATE(3170), 1, - sym_where_clause, + STATE(1164), 1, + sym_delim_token_tree, STATE(2538), 2, sym_line_comment, sym_block_comment, - [77848] = 7, + [77851] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(5660), 1, - anon_sym_RPAREN, - ACTIONS(5662), 1, - anon_sym_COMMA, - STATE(2894), 1, - aux_sym_tuple_pattern_repeat1, STATE(2539), 2, sym_line_comment, sym_block_comment, - [77871] = 7, + ACTIONS(941), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [77868] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1485), 1, - anon_sym_RPAREN, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5509), 1, - anon_sym_COMMA, - STATE(3030), 1, - aux_sym_parameters_repeat1, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5008), 1, + anon_sym_COLON, + STATE(1945), 1, + sym_type_arguments, + STATE(2650), 1, + sym_trait_bounds, STATE(2540), 2, sym_line_comment, sym_block_comment, - [77894] = 7, + [77891] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4898), 1, - anon_sym_LBRACE, - ACTIONS(4902), 1, - anon_sym_where, - STATE(732), 1, - sym_field_declaration_list, - STATE(3202), 1, - sym_where_clause, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(5676), 1, + anon_sym_RPAREN, + ACTIONS(5678), 1, + anon_sym_COMMA, + STATE(2806), 1, + aux_sym_slice_pattern_repeat1, STATE(2541), 2, sym_line_comment, sym_block_comment, - [77917] = 4, + [77914] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(5680), 1, + anon_sym_RPAREN, + ACTIONS(5682), 1, + anon_sym_COMMA, + STATE(2809), 1, + aux_sym_slice_pattern_repeat1, STATE(2542), 2, sym_line_comment, sym_block_comment, - ACTIONS(5443), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [77934] = 6, + [77937] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - STATE(3225), 1, - sym_type_arguments, - ACTIONS(5152), 2, - sym_identifier, - sym_super, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(1226), 1, + sym_block, + STATE(3567), 1, + sym_label, STATE(2543), 2, sym_line_comment, sym_block_comment, - [77955] = 7, + [77960] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_identifier, - ACTIONS(5656), 1, - sym_super, - STATE(3246), 1, - sym_type_arguments, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + STATE(665), 1, + sym_declaration_list, + STATE(3229), 1, + sym_where_clause, STATE(2544), 2, sym_line_comment, sym_block_comment, - [77978] = 7, + [77983] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - ACTIONS(4900), 1, - anon_sym_LT, - STATE(2185), 1, - sym_parameters, - STATE(3237), 1, - sym_type_parameters, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(1052), 1, + sym_block, + STATE(3567), 1, + sym_label, STATE(2545), 2, sym_line_comment, sym_block_comment, - [78001] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [78006] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, anon_sym_SQUOTE, - STATE(395), 1, + STATE(473), 1, sym_block, - STATE(3569), 1, + STATE(3616), 1, sym_label, STATE(2546), 2, sym_line_comment, sym_block_comment, - [78024] = 7, + [78029] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5664), 1, - anon_sym_SEMI, - ACTIONS(5666), 1, - anon_sym_EQ, - ACTIONS(5668), 1, - anon_sym_else, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(475), 1, + sym_block, + STATE(3616), 1, + sym_label, STATE(2547), 2, sym_line_comment, sym_block_comment, - [78047] = 6, + [78052] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - STATE(3246), 1, - sym_type_arguments, - ACTIONS(5152), 2, - sym_identifier, - sym_super, + ACTIONS(5684), 1, + anon_sym_DQUOTE, + STATE(2562), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5668), 2, + sym_string_content, + sym_escape_sequence, STATE(2548), 2, sym_line_comment, sym_block_comment, - [78068] = 5, - ACTIONS(3), 1, + [78073] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5670), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5451), 1, + anon_sym_RPAREN, + ACTIONS(5453), 1, + anon_sym_COMMA, + STATE(2814), 1, + aux_sym_parameters_repeat1, STATE(2549), 2, sym_line_comment, sym_block_comment, - ACTIONS(5672), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [78087] = 7, + [78096] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5674), 1, - anon_sym_SEMI, - STATE(3480), 1, - sym_where_clause, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + ACTIONS(5048), 1, + anon_sym_LBRACE, + STATE(2906), 1, + sym_block, + STATE(3615), 1, + sym_label, STATE(2550), 2, sym_line_comment, sym_block_comment, - [78110] = 7, + [78119] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - STATE(1279), 1, - sym_declaration_list, - STATE(3276), 1, - sym_where_clause, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(1652), 1, + sym_block, + STATE(3617), 1, + sym_label, STATE(2551), 2, sym_line_comment, sym_block_comment, - [78133] = 4, + [78142] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5629), 1, + anon_sym_COLON_COLON, + ACTIONS(5686), 1, + anon_sym_for, + STATE(1946), 1, + sym_type_arguments, STATE(2552), 2, sym_line_comment, sym_block_comment, - ACTIONS(5676), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [78150] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5678), 1, - anon_sym_SEMI, - STATE(3504), 1, - sym_where_clause, - STATE(2553), 2, - sym_line_comment, - sym_block_comment, - [78173] = 7, + [78165] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(1293), 1, - sym_declaration_list, - STATE(3281), 1, - sym_where_clause, - STATE(2554), 2, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(3444), 1, + sym_block, + STATE(3567), 1, + sym_label, + STATE(2553), 2, sym_line_comment, sym_block_comment, - [78196] = 6, + [78188] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4190), 1, - anon_sym_LBRACE, - STATE(2951), 1, - sym_use_list, - ACTIONS(5680), 2, - sym_identifier, - sym_super, - STATE(2555), 2, + ACTIONS(4000), 1, + anon_sym_LT2, + ACTIONS(4118), 1, + anon_sym_COLON_COLON, + ACTIONS(4869), 1, + anon_sym_BANG, + STATE(1598), 1, + sym_type_arguments, + STATE(2554), 2, sym_line_comment, sym_block_comment, - [78217] = 7, + [78211] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5016), 1, - anon_sym_COLON, - STATE(1939), 1, - sym_type_arguments, - STATE(2690), 1, - sym_trait_bounds, - STATE(2556), 2, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(463), 1, + sym_block, + STATE(3616), 1, + sym_label, + STATE(2555), 2, sym_line_comment, sym_block_comment, - [78240] = 4, + [78234] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2557), 2, + ACTIONS(5688), 1, + anon_sym_LPAREN, + ACTIONS(5690), 1, + anon_sym_LBRACK, + ACTIONS(5692), 1, + anon_sym_LBRACE, + STATE(1956), 1, + sym_delim_token_tree, + STATE(2556), 2, sym_line_comment, sym_block_comment, - ACTIONS(955), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, [78257] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5682), 1, - anon_sym_RPAREN, - ACTIONS(5684), 1, - anon_sym_COMMA, - STATE(2977), 1, - aux_sym_tuple_type_repeat1, - STATE(2558), 2, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(470), 1, + sym_block, + STATE(3616), 1, + sym_label, + STATE(2557), 2, sym_line_comment, sym_block_comment, [78280] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, anon_sym_SQUOTE, - STATE(389), 1, + STATE(452), 1, sym_block, - STATE(3569), 1, + STATE(3616), 1, sym_label, - STATE(2559), 2, + STATE(2558), 2, sym_line_comment, sym_block_comment, [78303] = 7, @@ -174719,3877 +175224,3923 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4898), 1, + ACTIONS(5670), 1, + anon_sym_LPAREN, + ACTIONS(5672), 1, + anon_sym_LBRACK, + ACTIONS(5674), 1, anon_sym_LBRACE, - ACTIONS(4902), 1, - anon_sym_where, - STATE(635), 1, - sym_field_declaration_list, - STATE(3231), 1, - sym_where_clause, + STATE(380), 1, + sym_delim_token_tree, + STATE(2559), 2, + sym_line_comment, + sym_block_comment, + [78326] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4486), 1, + anon_sym_LT2, + STATE(3162), 1, + sym_type_arguments, + ACTIONS(5694), 2, + sym_identifier, + sym_super, STATE(2560), 2, sym_line_comment, sym_block_comment, - [78326] = 5, + [78347] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5289), 1, - anon_sym_PLUS, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(459), 1, + sym_block, + STATE(3616), 1, + sym_label, STATE(2561), 2, sym_line_comment, sym_block_comment, - ACTIONS(5686), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [78345] = 7, + [78370] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5688), 1, - anon_sym_RPAREN, - ACTIONS(5690), 1, - anon_sym_COMMA, - STATE(3023), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(5696), 1, + anon_sym_DQUOTE, + STATE(2513), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5668), 2, + sym_string_content, + sym_escape_sequence, STATE(2562), 2, sym_line_comment, sym_block_comment, - [78368] = 7, + [78391] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4661), 1, - anon_sym_GT, - ACTIONS(5418), 1, - anon_sym_COMMA, - ACTIONS(5639), 1, - anon_sym_EQ, - STATE(2984), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5688), 1, + anon_sym_LPAREN, + ACTIONS(5690), 1, + anon_sym_LBRACK, + ACTIONS(5692), 1, + anon_sym_LBRACE, + STATE(1965), 1, + sym_delim_token_tree, STATE(2563), 2, sym_line_comment, sym_block_comment, - [78391] = 7, + [78414] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5692), 1, - anon_sym_SEMI, - STATE(3443), 1, - sym_where_clause, + ACTIONS(4000), 1, + anon_sym_LT2, + ACTIONS(5698), 1, + sym_identifier, + ACTIONS(5700), 1, + sym_super, + STATE(1568), 1, + sym_type_arguments, STATE(2564), 2, sym_line_comment, sym_block_comment, - [78414] = 5, + [78437] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5289), 1, - anon_sym_PLUS, + ACTIONS(4000), 1, + anon_sym_LT2, + ACTIONS(5698), 1, + sym_identifier, + ACTIONS(5700), 1, + sym_super, + STATE(1583), 1, + sym_type_arguments, STATE(2565), 2, sym_line_comment, sym_block_comment, - ACTIONS(5694), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [78433] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [78460] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(393), 1, - sym_block, - STATE(3569), 1, - sym_label, + ACTIONS(4486), 1, + anon_sym_LT2, + STATE(3162), 1, + sym_type_arguments, + ACTIONS(5252), 2, + sym_identifier, + sym_super, STATE(2566), 2, sym_line_comment, sym_block_comment, - [78456] = 7, + [78481] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(5696), 1, - anon_sym_COLON_COLON, - ACTIONS(5698), 1, - anon_sym_for, - STATE(1940), 1, + ACTIONS(5252), 1, + sym_super, + ACTIONS(5702), 1, + sym_identifier, + STATE(3162), 1, sym_type_arguments, STATE(2567), 2, sym_line_comment, sym_block_comment, - [78479] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [78504] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(376), 1, - sym_block, - STATE(3569), 1, - sym_label, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5252), 1, + sym_super, + ACTIONS(5702), 1, + sym_identifier, + STATE(3184), 1, + sym_type_arguments, STATE(2568), 2, sym_line_comment, sym_block_comment, - [78502] = 7, + [78527] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(1451), 1, - sym_block, - STATE(3556), 1, - sym_label, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5704), 1, + anon_sym_RPAREN, + ACTIONS(5706), 1, + anon_sym_COMMA, + STATE(2911), 1, + aux_sym_tuple_type_repeat1, STATE(2569), 2, sym_line_comment, sym_block_comment, - [78525] = 7, + [78550] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5700), 1, - anon_sym_SEMI, - STATE(3625), 1, - sym_where_clause, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4960), 1, + anon_sym_LT, + STATE(2243), 1, + sym_parameters, + STATE(3196), 1, + sym_type_parameters, STATE(2570), 2, sym_line_comment, sym_block_comment, - [78548] = 7, + [78573] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(1347), 1, - sym_declaration_list, - STATE(3050), 1, - sym_where_clause, + ACTIONS(4486), 1, + anon_sym_LT2, + STATE(3184), 1, + sym_type_arguments, + ACTIONS(5252), 2, + sym_identifier, + sym_super, STATE(2571), 2, sym_line_comment, sym_block_comment, - [78571] = 7, + [78594] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(1118), 1, - sym_block, - STATE(3556), 1, - sym_label, + ACTIONS(4486), 1, + anon_sym_LT2, + STATE(3184), 1, + sym_type_arguments, + ACTIONS(5694), 2, + sym_identifier, + sym_super, STATE(2572), 2, sym_line_comment, sym_block_comment, - [78594] = 5, + [78615] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4478), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5702), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5708), 1, + anon_sym_SEMI, + STATE(3532), 1, + sym_where_clause, STATE(2573), 2, sym_line_comment, sym_block_comment, - [78613] = 7, + [78638] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5704), 1, + ACTIONS(3994), 1, anon_sym_LPAREN, - ACTIONS(5706), 1, - anon_sym_LBRACK, - ACTIONS(5708), 1, - anon_sym_LBRACE, - STATE(2552), 1, - sym_token_tree, + ACTIONS(4486), 1, + anon_sym_LT2, + STATE(1622), 1, + sym_parameters, + STATE(1945), 1, + sym_type_arguments, STATE(2574), 2, sym_line_comment, sym_block_comment, - [78636] = 6, + [78661] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(5710), 1, anon_sym_DQUOTE, - STATE(2746), 1, + STATE(2513), 1, aux_sym_string_literal_repeat1, - ACTIONS(5712), 2, + ACTIONS(5668), 2, sym_string_content, sym_escape_sequence, STATE(2575), 2, sym_line_comment, sym_block_comment, - [78657] = 6, + [78682] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - STATE(3246), 1, - sym_type_arguments, - ACTIONS(5656), 2, - sym_identifier, - sym_super, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + STATE(730), 1, + sym_declaration_list, + STATE(3063), 1, + sym_where_clause, STATE(2576), 2, sym_line_comment, sym_block_comment, - [78678] = 6, + [78705] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5016), 1, - anon_sym_COLON, - STATE(2807), 1, - sym_trait_bounds, - ACTIONS(5714), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(465), 1, + sym_block, + STATE(3616), 1, + sym_label, STATE(2577), 2, sym_line_comment, sym_block_comment, - [78699] = 7, + [78728] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - ACTIONS(4900), 1, - anon_sym_LT, - STATE(2235), 1, - sym_parameters, - STATE(3238), 1, - sym_type_parameters, + ACTIONS(5538), 1, + anon_sym_PIPE, STATE(2578), 2, sym_line_comment, sym_block_comment, - [78722] = 7, + ACTIONS(5642), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [78747] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1589), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - STATE(2113), 1, + STATE(392), 1, sym_block, - STATE(3598), 1, + STATE(3347), 1, sym_label, STATE(2579), 2, sym_line_comment, sym_block_comment, - [78745] = 7, + [78770] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1217), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(458), 1, - sym_block, - STATE(3606), 1, - sym_label, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4510), 1, + anon_sym_BANG, + ACTIONS(4588), 1, + anon_sym_COLON_COLON, + STATE(1944), 1, + sym_type_arguments, STATE(2580), 2, sym_line_comment, sym_block_comment, - [78768] = 6, + [78793] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5016), 1, - anon_sym_COLON, - STATE(2807), 1, - sym_trait_bounds, - ACTIONS(5717), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4785), 1, + anon_sym_for, + ACTIONS(5629), 1, + anon_sym_COLON_COLON, + STATE(1946), 1, + sym_type_arguments, STATE(2581), 2, sym_line_comment, sym_block_comment, - [78789] = 7, + [78816] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, - anon_sym_LBRACE, - STATE(701), 1, - sym_declaration_list, - STATE(3165), 1, - sym_where_clause, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5496), 1, + anon_sym_RPAREN, + ACTIONS(5498), 1, + anon_sym_COMMA, + STATE(2919), 1, + aux_sym_parameters_repeat1, STATE(2582), 2, sym_line_comment, sym_block_comment, - [78812] = 7, + [78839] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5565), 1, + ACTIONS(5712), 1, anon_sym_COLON, - ACTIONS(5567), 1, - anon_sym_PIPE, - ACTIONS(5569), 1, - anon_sym_COMMA, - STATE(2939), 1, - aux_sym_closure_parameters_repeat1, STATE(2583), 2, sym_line_comment, sym_block_comment, - [78835] = 6, + ACTIONS(4843), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [78858] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4643), 1, - anon_sym_DOT_DOT, - ACTIONS(5719), 1, - anon_sym_COLON_COLON, - ACTIONS(4645), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5714), 1, + anon_sym_LBRACE, + ACTIONS(5716), 1, + anon_sym_for, + ACTIONS(5718), 1, + anon_sym_loop, + ACTIONS(5720), 1, + anon_sym_while, STATE(2584), 2, sym_line_comment, sym_block_comment, - [78856] = 7, + [78881] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1217), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(454), 1, - sym_block, - STATE(3606), 1, - sym_label, + ACTIONS(5305), 1, + anon_sym_PLUS, STATE(2585), 2, sym_line_comment, sym_block_comment, - [78879] = 7, + ACTIONS(5722), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [78900] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1217), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(459), 1, - sym_block, - STATE(3606), 1, - sym_label, + ACTIONS(4673), 1, + anon_sym_GT, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5650), 1, + anon_sym_EQ, + STATE(2821), 1, + aux_sym_type_parameters_repeat1, STATE(2586), 2, sym_line_comment, sym_block_comment, - [78902] = 6, + [78923] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5721), 1, - anon_sym_DQUOTE, - STATE(2598), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5712), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(467), 1, + sym_block, + STATE(3616), 1, + sym_label, STATE(2587), 2, sym_line_comment, sym_block_comment, - [78923] = 7, + [78946] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(5723), 1, - anon_sym_RBRACK, - ACTIONS(5725), 1, - anon_sym_COMMA, - STATE(2897), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(3419), 1, + sym_block, + STATE(3567), 1, + sym_label, STATE(2588), 2, sym_line_comment, sym_block_comment, - [78946] = 7, + [78969] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - ACTIONS(4998), 1, - anon_sym_LBRACE, - STATE(2796), 1, - sym_block, - STATE(3605), 1, - sym_label, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5724), 1, + anon_sym_SEMI, + ACTIONS(5726), 1, + anon_sym_EQ, + ACTIONS(5728), 1, + anon_sym_else, STATE(2589), 2, sym_line_comment, sym_block_comment, - [78969] = 7, + [78992] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - STATE(1673), 1, + STATE(1447), 1, sym_block, - STATE(3607), 1, + STATE(3567), 1, sym_label, STATE(2590), 2, sym_line_comment, sym_block_comment, - [78992] = 6, + [79015] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5016), 1, - anon_sym_COLON, - STATE(3259), 1, - sym_trait_bounds, - ACTIONS(5420), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5026), 1, + anon_sym_PLUS, STATE(2591), 2, sym_line_comment, sym_block_comment, - [79013] = 7, + ACTIONS(5730), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [79034] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3972), 1, - anon_sym_LT2, - ACTIONS(4110), 1, - anon_sym_COLON_COLON, - ACTIONS(4801), 1, - anon_sym_BANG, - STATE(1606), 1, - sym_type_arguments, + ACTIONS(1495), 1, + anon_sym_RPAREN, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5506), 1, + anon_sym_COMMA, + STATE(2923), 1, + aux_sym_parameters_repeat1, STATE(2592), 2, sym_line_comment, sym_block_comment, - [79036] = 7, + [79057] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1217), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(461), 1, - sym_block, - STATE(3606), 1, - sym_label, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5732), 1, + anon_sym_SEMI, + ACTIONS(5734), 1, + anon_sym_EQ, + ACTIONS(5736), 1, + anon_sym_else, STATE(2593), 2, sym_line_comment, sym_block_comment, - [79059] = 7, + [79080] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5727), 1, - anon_sym_LPAREN, - ACTIONS(5729), 1, - anon_sym_LBRACK, - ACTIONS(5731), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5270), 1, anon_sym_LBRACE, - STATE(1972), 1, - sym_delim_token_tree, + STATE(682), 1, + sym_enum_variant_list, + STATE(3130), 1, + sym_where_clause, STATE(2594), 2, sym_line_comment, sym_block_comment, - [79082] = 7, + [79103] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1217), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - STATE(463), 1, + STATE(381), 1, sym_block, - STATE(3606), 1, + STATE(3347), 1, sym_label, STATE(2595), 2, sym_line_comment, sym_block_comment, - [79105] = 7, + [79126] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1217), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(448), 1, - sym_block, - STATE(3606), 1, - sym_label, + ACTIONS(5738), 1, + anon_sym_DQUOTE, + STATE(2513), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5668), 2, + sym_string_content, + sym_escape_sequence, STATE(2596), 2, sym_line_comment, sym_block_comment, - [79128] = 7, + [79147] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1217), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(468), 1, - sym_block, - STATE(3606), 1, - sym_label, + ACTIONS(4962), 1, + anon_sym_where, + STATE(1196), 1, + sym_declaration_list, + STATE(3165), 1, + sym_where_clause, STATE(2597), 2, sym_line_comment, sym_block_comment, - [79151] = 6, + [79170] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5733), 1, - anon_sym_DQUOTE, - STATE(2531), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5712), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(1651), 1, + sym_block, + STATE(3617), 1, + sym_label, STATE(2598), 2, sym_line_comment, sym_block_comment, - [79172] = 7, + [79193] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5727), 1, - anon_sym_LPAREN, - ACTIONS(5729), 1, - anon_sym_LBRACK, - ACTIONS(5731), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - STATE(1948), 1, - sym_delim_token_tree, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(1653), 1, + sym_block, + STATE(3617), 1, + sym_label, STATE(2599), 2, sym_line_comment, sym_block_comment, - [79195] = 7, + [79216] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3972), 1, - anon_sym_LT2, - ACTIONS(5735), 1, - sym_identifier, - ACTIONS(5737), 1, - sym_super, - STATE(1571), 1, - sym_type_arguments, + ACTIONS(5740), 1, + anon_sym_DQUOTE, + STATE(2608), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5668), 2, + sym_string_content, + sym_escape_sequence, STATE(2600), 2, sym_line_comment, sym_block_comment, - [79218] = 7, + [79237] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3972), 1, - anon_sym_LT2, - ACTIONS(5735), 1, - sym_identifier, - ACTIONS(5737), 1, - sym_super, - STATE(1575), 1, - sym_type_arguments, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(474), 1, + sym_block, + STATE(3616), 1, + sym_label, STATE(2601), 2, sym_line_comment, sym_block_comment, - [79241] = 7, + [79260] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5152), 1, - sym_super, - ACTIONS(5739), 1, - sym_identifier, - STATE(3225), 1, - sym_type_arguments, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(5564), 1, + anon_sym_RPAREN, + ACTIONS(5568), 1, + anon_sym_COMMA, + STATE(2869), 1, + aux_sym_slice_pattern_repeat1, STATE(2602), 2, sym_line_comment, sym_block_comment, - [79264] = 7, + [79283] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5152), 1, - sym_super, - ACTIONS(5739), 1, - sym_identifier, - STATE(3246), 1, - sym_type_arguments, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(1658), 1, + sym_block, + STATE(3617), 1, + sym_label, STATE(2603), 2, sym_line_comment, sym_block_comment, - [79287] = 7, + [79306] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5741), 1, - anon_sym_RPAREN, - ACTIONS(5743), 1, - anon_sym_COMMA, - STATE(2824), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(5742), 1, + anon_sym_LPAREN, + ACTIONS(5744), 1, + anon_sym_LBRACK, + ACTIONS(5746), 1, + anon_sym_LBRACE, + STATE(1031), 1, + sym_delim_token_tree, STATE(2604), 2, sym_line_comment, sym_block_comment, - [79310] = 5, + [79329] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(1661), 1, + sym_block, + STATE(3617), 1, + sym_label, STATE(2605), 2, sym_line_comment, sym_block_comment, - ACTIONS(5745), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [79329] = 7, + [79352] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3276), 1, - anon_sym_LT2, - ACTIONS(3367), 1, - anon_sym_COLON_COLON, - ACTIONS(4869), 1, - anon_sym_BANG, - STATE(1053), 1, - sym_type_arguments, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(1557), 1, + sym_block, + STATE(3617), 1, + sym_label, STATE(2606), 2, sym_line_comment, sym_block_comment, - [79352] = 7, + [79375] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3966), 1, - anon_sym_LPAREN, - ACTIONS(4474), 1, - anon_sym_LT2, - STATE(1636), 1, - sym_parameters, - STATE(1939), 1, - sym_type_arguments, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(1664), 1, + sym_block, + STATE(3617), 1, + sym_label, STATE(2607), 2, sym_line_comment, sym_block_comment, - [79375] = 5, + [79398] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5747), 1, - anon_sym_COMMA, - ACTIONS(5745), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2608), 3, + ACTIONS(5748), 1, + anon_sym_DQUOTE, + STATE(2513), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5668), 2, + sym_string_content, + sym_escape_sequence, + STATE(2608), 2, sym_line_comment, sym_block_comment, - aux_sym_slice_pattern_repeat1, - [79394] = 4, + [79419] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5742), 1, + anon_sym_LPAREN, + ACTIONS(5744), 1, + anon_sym_LBRACK, + ACTIONS(5746), 1, + anon_sym_LBRACE, + STATE(1023), 1, + sym_delim_token_tree, STATE(2609), 2, sym_line_comment, sym_block_comment, - ACTIONS(3240), 4, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [79411] = 7, + [79442] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1217), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(476), 1, - sym_block, - STATE(3606), 1, - sym_label, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5252), 1, + sym_super, + ACTIONS(5750), 1, + sym_identifier, + STATE(3162), 1, + sym_type_arguments, STATE(2610), 2, sym_line_comment, sym_block_comment, - [79434] = 7, + [79465] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - ACTIONS(4900), 1, - anon_sym_LT, - STATE(2226), 1, - sym_parameters, - STATE(3126), 1, - sym_type_parameters, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5252), 1, + sym_super, + ACTIONS(5750), 1, + sym_identifier, + STATE(3184), 1, + sym_type_arguments, STATE(2611), 2, sym_line_comment, sym_block_comment, - [79457] = 6, + [79488] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5750), 1, - anon_sym_DQUOTE, - STATE(2531), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5712), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(1683), 1, + sym_block, + STATE(3617), 1, + sym_label, STATE(2612), 2, sym_line_comment, sym_block_comment, - [79478] = 7, + [79511] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(1456), 1, - sym_block, - STATE(3556), 1, - sym_label, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5752), 1, + anon_sym_SEMI, + STATE(3397), 1, + sym_where_clause, STATE(2613), 2, sym_line_comment, sym_block_comment, - [79501] = 7, + [79534] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(5549), 1, - anon_sym_RPAREN, - ACTIONS(5551), 1, - anon_sym_COMMA, - STATE(2838), 1, - aux_sym_parameters_repeat1, + ACTIONS(5754), 1, + anon_sym_SEMI, + STATE(3474), 1, + sym_where_clause, STATE(2614), 2, sym_line_comment, sym_block_comment, - [79524] = 7, + [79557] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(3373), 1, - sym_block, - STATE(3556), 1, - sym_label, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5750), 1, + sym_identifier, + ACTIONS(5756), 1, + sym_super, + STATE(3162), 1, + sym_type_arguments, STATE(2615), 2, sym_line_comment, sym_block_comment, - [79547] = 7, + [79580] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1217), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - STATE(464), 1, + STATE(1690), 1, sym_block, - STATE(3606), 1, + STATE(3617), 1, sym_label, STATE(2616), 2, sym_line_comment, sym_block_comment, - [79570] = 5, + [79603] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, + ACTIONS(5138), 1, + anon_sym_LPAREN, + ACTIONS(5140), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_LBRACE, + STATE(1451), 1, + sym_delim_token_tree, STATE(2617), 2, sym_line_comment, sym_block_comment, - ACTIONS(5752), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [79589] = 7, + [79626] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5754), 1, - anon_sym_LPAREN, - ACTIONS(5756), 1, - anon_sym_LBRACK, ACTIONS(5758), 1, - anon_sym_LBRACE, - STATE(385), 1, - sym_delim_token_tree, + anon_sym_DQUOTE, + STATE(2623), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5668), 2, + sym_string_content, + sym_escape_sequence, STATE(2618), 2, sym_line_comment, sym_block_comment, - [79612] = 7, + [79647] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3276), 1, - anon_sym_LT2, - ACTIONS(5152), 1, - sym_super, - ACTIONS(5617), 1, - sym_identifier, - STATE(1408), 1, - sym_type_arguments, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(1695), 1, + sym_block, + STATE(3617), 1, + sym_label, STATE(2619), 2, sym_line_comment, sym_block_comment, - [79635] = 7, + [79670] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5188), 1, - anon_sym_LPAREN, - ACTIONS(5190), 1, - anon_sym_LBRACK, - ACTIONS(5194), 1, + ACTIONS(4929), 1, anon_sym_LBRACE, - STATE(1457), 1, - sym_delim_token_tree, + ACTIONS(4962), 1, + anon_sym_where, + STATE(746), 1, + sym_declaration_list, + STATE(3105), 1, + sym_where_clause, STATE(2620), 2, sym_line_comment, sym_block_comment, - [79658] = 7, + [79693] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(1096), 1, - sym_block, - STATE(3556), 1, - sym_label, + ACTIONS(4962), 1, + anon_sym_where, + STATE(1207), 1, + sym_declaration_list, + STATE(3172), 1, + sym_where_clause, STATE(2621), 2, sym_line_comment, sym_block_comment, - [79681] = 7, + [79716] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1489), 1, - anon_sym_RPAREN, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5553), 1, - anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, + ACTIONS(5760), 1, + anon_sym_LPAREN, + ACTIONS(5762), 1, + anon_sym_LBRACK, + ACTIONS(5764), 1, + anon_sym_LBRACE, + STATE(1700), 1, + sym_delim_token_tree, STATE(2622), 2, sym_line_comment, sym_block_comment, - [79704] = 7, + [79739] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(1063), 1, - sym_block, - STATE(3556), 1, - sym_label, + ACTIONS(5766), 1, + anon_sym_DQUOTE, + STATE(2513), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5668), 2, + sym_string_content, + sym_escape_sequence, STATE(2623), 2, sym_line_comment, sym_block_comment, - [79727] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [79760] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(330), 1, - sym_block, - STATE(3569), 1, - sym_label, + ACTIONS(5760), 1, + anon_sym_LPAREN, + ACTIONS(5762), 1, + anon_sym_LBRACK, + ACTIONS(5764), 1, + anon_sym_LBRACE, + STATE(1703), 1, + sym_delim_token_tree, STATE(2624), 2, sym_line_comment, sym_block_comment, - [79750] = 7, + [79783] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(3408), 1, - sym_block, - STATE(3556), 1, - sym_label, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5756), 1, + sym_super, + ACTIONS(5768), 1, + sym_identifier, + STATE(3162), 1, + sym_type_arguments, STATE(2625), 2, sym_line_comment, sym_block_comment, - [79773] = 7, + [79806] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(1110), 1, - sym_block, - STATE(3556), 1, - sym_label, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5756), 1, + sym_super, + ACTIONS(5768), 1, + sym_identifier, + STATE(3184), 1, + sym_type_arguments, STATE(2626), 2, sym_line_comment, sym_block_comment, - [79796] = 7, + [79829] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(1672), 1, - sym_block, - STATE(3607), 1, - sym_label, + ACTIONS(3284), 1, + anon_sym_LT2, + ACTIONS(5252), 1, + sym_super, + ACTIONS(5770), 1, + sym_identifier, + STATE(1580), 1, + sym_type_arguments, STATE(2627), 2, sym_line_comment, sym_block_comment, - [79819] = 7, + [79852] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(1674), 1, - sym_block, - STATE(3607), 1, - sym_label, + ACTIONS(5026), 1, + anon_sym_PLUS, STATE(2628), 2, sym_line_comment, sym_block_comment, - [79842] = 6, + ACTIONS(5772), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [79871] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5760), 1, + ACTIONS(5774), 1, anon_sym_DQUOTE, - STATE(2636), 1, + STATE(2630), 1, aux_sym_string_literal_repeat1, - ACTIONS(5712), 2, + ACTIONS(5668), 2, sym_string_content, sym_escape_sequence, STATE(2629), 2, sym_line_comment, sym_block_comment, - [79863] = 7, + [79892] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1217), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(460), 1, - sym_block, - STATE(3606), 1, - sym_label, + ACTIONS(5776), 1, + anon_sym_DQUOTE, + STATE(2513), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5668), 2, + sym_string_content, + sym_escape_sequence, STATE(2630), 2, sym_line_comment, sym_block_comment, - [79886] = 7, + [79913] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(1682), 1, - sym_block, - STATE(3607), 1, - sym_label, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5756), 1, + sym_super, + ACTIONS(5778), 1, + sym_identifier, + STATE(3162), 1, + sym_type_arguments, STATE(2631), 2, sym_line_comment, sym_block_comment, - [79909] = 7, + [79936] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5762), 1, - anon_sym_LPAREN, - ACTIONS(5764), 1, - anon_sym_LBRACK, - ACTIONS(5766), 1, - anon_sym_LBRACE, - STATE(1024), 1, - sym_delim_token_tree, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5756), 1, + sym_super, + ACTIONS(5778), 1, + sym_identifier, + STATE(3184), 1, + sym_type_arguments, STATE(2632), 2, sym_line_comment, sym_block_comment, - [79932] = 7, + [79959] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(1684), 1, - sym_block, - STATE(3607), 1, - sym_label, + ACTIONS(3284), 1, + anon_sym_LT2, + ACTIONS(5252), 1, + sym_super, + ACTIONS(5780), 1, + sym_identifier, + STATE(1433), 1, + sym_type_arguments, STATE(2633), 2, sym_line_comment, sym_block_comment, - [79955] = 7, + [79982] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - STATE(1555), 1, + STATE(317), 1, sym_block, - STATE(3607), 1, + STATE(3347), 1, sym_label, STATE(2634), 2, sym_line_comment, sym_block_comment, - [79978] = 7, + [80005] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(1688), 1, - sym_block, - STATE(3607), 1, - sym_label, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(5782), 1, + anon_sym_RPAREN, + ACTIONS(5784), 1, + anon_sym_COMMA, + STATE(2886), 1, + aux_sym_slice_pattern_repeat1, STATE(2635), 2, sym_line_comment, sym_block_comment, - [80001] = 6, + [80028] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5768), 1, - anon_sym_DQUOTE, - STATE(2531), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5712), 2, - sym_string_content, - sym_escape_sequence, STATE(2636), 2, sym_line_comment, sym_block_comment, - [80022] = 7, + ACTIONS(5786), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [80045] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5762), 1, - anon_sym_LPAREN, - ACTIONS(5764), 1, - anon_sym_LBRACK, - ACTIONS(5766), 1, - anon_sym_LBRACE, - STATE(1032), 1, - sym_delim_token_tree, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5694), 1, + sym_super, + ACTIONS(5788), 1, + sym_identifier, + STATE(3162), 1, + sym_type_arguments, STATE(2637), 2, sym_line_comment, sym_block_comment, - [80045] = 7, + [80068] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(1169), 1, - sym_block, - STATE(3556), 1, - sym_label, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5694), 1, + sym_super, + ACTIONS(5788), 1, + sym_identifier, + STATE(3184), 1, + sym_type_arguments, STATE(2638), 2, sym_line_comment, sym_block_comment, - [80068] = 7, + [80091] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(5152), 1, - sym_super, - ACTIONS(5654), 1, + ACTIONS(5750), 1, sym_identifier, - STATE(3225), 1, + ACTIONS(5756), 1, + sym_super, + STATE(3184), 1, sym_type_arguments, STATE(2639), 2, sym_line_comment, sym_block_comment, - [80091] = 7, + [80114] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(5152), 1, + ACTIONS(5252), 1, sym_super, - ACTIONS(5654), 1, + ACTIONS(5768), 1, sym_identifier, - STATE(3246), 1, + STATE(3162), 1, sym_type_arguments, STATE(2640), 2, sym_line_comment, sym_block_comment, - [80114] = 7, + [80137] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(3411), 1, - sym_block, - STATE(3556), 1, - sym_label, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5252), 1, + sym_super, + ACTIONS(5768), 1, + sym_identifier, + STATE(3184), 1, + sym_type_arguments, STATE(2641), 2, sym_line_comment, sym_block_comment, - [80137] = 7, + [80160] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(1706), 1, - sym_block, - STATE(3607), 1, - sym_label, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5756), 1, + sym_super, + ACTIONS(5790), 1, + sym_identifier, + STATE(3162), 1, + sym_type_arguments, STATE(2642), 2, sym_line_comment, sym_block_comment, - [80160] = 5, + [80183] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5770), 1, - anon_sym_COMMA, - ACTIONS(4106), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2643), 3, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5756), 1, + sym_super, + ACTIONS(5790), 1, + sym_identifier, + STATE(3184), 1, + sym_type_arguments, + STATE(2643), 2, sym_line_comment, sym_block_comment, - aux_sym_arguments_repeat1, - [80179] = 7, + [80206] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(1712), 1, - sym_block, - STATE(3607), 1, - sym_label, + ACTIONS(4648), 1, + anon_sym_DOT_DOT, + ACTIONS(5792), 1, + anon_sym_COLON_COLON, + ACTIONS(4650), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2644), 2, sym_line_comment, sym_block_comment, - [80202] = 6, + [80227] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5773), 1, - anon_sym_DQUOTE, - STATE(2648), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5712), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5756), 1, + sym_super, + ACTIONS(5794), 1, + sym_identifier, + STATE(3184), 1, + sym_type_arguments, STATE(2645), 2, sym_line_comment, sym_block_comment, - [80223] = 7, + [80250] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(1717), 1, - sym_block, - STATE(3607), 1, - sym_label, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5756), 1, + sym_super, + ACTIONS(5796), 1, + sym_identifier, + STATE(3162), 1, + sym_type_arguments, STATE(2646), 2, sym_line_comment, sym_block_comment, - [80246] = 7, + [80273] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, - anon_sym_LPAREN, - ACTIONS(5777), 1, - anon_sym_LBRACK, - ACTIONS(5779), 1, - anon_sym_LBRACE, - STATE(1721), 1, - sym_delim_token_tree, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5756), 1, + sym_super, + ACTIONS(5796), 1, + sym_identifier, + STATE(3184), 1, + sym_type_arguments, STATE(2647), 2, sym_line_comment, sym_block_comment, - [80269] = 6, + [80296] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5781), 1, - anon_sym_DQUOTE, - STATE(2531), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5712), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5252), 1, + sym_super, + ACTIONS(5796), 1, + sym_identifier, + STATE(3162), 1, + sym_type_arguments, STATE(2648), 2, sym_line_comment, sym_block_comment, - [80290] = 7, + [80319] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, - anon_sym_LPAREN, - ACTIONS(5777), 1, - anon_sym_LBRACK, - ACTIONS(5779), 1, - anon_sym_LBRACE, - STATE(1724), 1, - sym_delim_token_tree, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5252), 1, + sym_super, + ACTIONS(5796), 1, + sym_identifier, + STATE(3184), 1, + sym_type_arguments, STATE(2649), 2, sym_line_comment, sym_block_comment, - [80313] = 7, + [80342] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5188), 1, - anon_sym_LPAREN, - ACTIONS(5190), 1, - anon_sym_LBRACK, - ACTIONS(5194), 1, - anon_sym_LBRACE, - STATE(1111), 1, - sym_delim_token_tree, STATE(2650), 2, sym_line_comment, sym_block_comment, - [80336] = 7, + ACTIONS(5798), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + [80359] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5656), 1, - sym_super, - ACTIONS(5783), 1, - sym_identifier, - STATE(3225), 1, - sym_type_arguments, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5276), 1, + anon_sym_LBRACE, + STATE(1212), 1, + sym_enum_variant_list, + STATE(3204), 1, + sym_where_clause, STATE(2651), 2, sym_line_comment, sym_block_comment, - [80359] = 7, + [80382] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5656), 1, - sym_super, - ACTIONS(5783), 1, - sym_identifier, - STATE(3246), 1, - sym_type_arguments, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5800), 1, + anon_sym_RPAREN, + ACTIONS(5802), 1, + anon_sym_COMMA, + STATE(2966), 1, + aux_sym_tuple_type_repeat1, STATE(2652), 2, sym_line_comment, sym_block_comment, - [80382] = 7, + [80405] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3276), 1, - anon_sym_LT2, - ACTIONS(5152), 1, - sym_super, - ACTIONS(5785), 1, - sym_identifier, - STATE(1557), 1, - sym_type_arguments, + ACTIONS(5305), 1, + anon_sym_PLUS, STATE(2653), 2, sym_line_comment, sym_block_comment, - [80405] = 7, + ACTIONS(5804), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [80424] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4948), 1, - anon_sym_LBRACE, - STATE(710), 1, - sym_declaration_list, - STATE(3320), 1, - sym_where_clause, + ACTIONS(3284), 1, + anon_sym_LT2, + ACTIONS(5252), 1, + sym_super, + ACTIONS(5770), 1, + sym_identifier, + STATE(1581), 1, + sym_type_arguments, STATE(2654), 2, sym_line_comment, sym_block_comment, - [80428] = 7, + [80447] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - ACTIONS(4474), 1, - anon_sym_LT2, - STATE(1939), 1, - sym_type_arguments, - STATE(1969), 1, - sym_parameters, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + STATE(1218), 1, + sym_field_declaration_list, + STATE(3210), 1, + sym_where_clause, STATE(2655), 2, sym_line_comment, sym_block_comment, - [80451] = 6, + [80470] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5787), 1, - anon_sym_DQUOTE, - STATE(2658), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5712), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(5216), 1, + anon_sym_COLON_COLON, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2656), 2, sym_line_comment, sym_block_comment, - [80472] = 7, + [80491] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5789), 1, - anon_sym_SEMI, - STATE(3617), 1, - sym_where_clause, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(3567), 1, + sym_label, + STATE(3575), 1, + sym_block, STATE(2657), 2, sym_line_comment, sym_block_comment, - [80495] = 6, + [80514] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5791), 1, - anon_sym_DQUOTE, - STATE(2531), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5712), 2, - sym_string_content, - sym_escape_sequence, STATE(2658), 2, sym_line_comment, sym_block_comment, - [80516] = 7, + ACTIONS(5806), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + [80531] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5656), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, - STATE(3225), 1, - sym_type_arguments, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(1471), 1, + sym_block, + STATE(3567), 1, + sym_label, STATE(2659), 2, sym_line_comment, sym_block_comment, - [80539] = 7, + [80554] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5656), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, - STATE(3246), 1, - sym_type_arguments, + ACTIONS(5008), 1, + anon_sym_COLON, + STATE(3129), 1, + sym_trait_bounds, + ACTIONS(5528), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2660), 2, sym_line_comment, sym_block_comment, - [80562] = 5, + [80575] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5795), 1, - anon_sym_COLON, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4960), 1, + anon_sym_LT, + STATE(2207), 1, + sym_parameters, + STATE(3232), 1, + sym_type_parameters, STATE(2661), 2, sym_line_comment, sym_block_comment, - ACTIONS(4881), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [80581] = 7, + [80598] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3276), 1, - anon_sym_LT2, - ACTIONS(5152), 1, - sym_super, - ACTIONS(5785), 1, - sym_identifier, - STATE(1577), 1, - sym_type_arguments, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5808), 1, + anon_sym_RPAREN, + ACTIONS(5810), 1, + anon_sym_COMMA, + STATE(2800), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2662), 2, sym_line_comment, sym_block_comment, - [80604] = 7, + [80621] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1487), 1, - anon_sym_RPAREN, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5573), 1, - anon_sym_COMMA, - STATE(3007), 1, - aux_sym_parameters_repeat1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(1222), 1, + sym_block, + STATE(3567), 1, + sym_label, STATE(2663), 2, sym_line_comment, sym_block_comment, - [80627] = 5, + [80644] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5797), 1, + ACTIONS(5812), 1, anon_sym_in, STATE(2664), 2, sym_line_comment, sym_block_comment, - ACTIONS(5799), 3, + ACTIONS(5814), 3, sym_self, sym_super, sym_crate, - [80646] = 7, + [80663] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5635), 1, - sym_super, - ACTIONS(5801), 1, - sym_identifier, - STATE(3225), 1, - sym_type_arguments, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5816), 1, + anon_sym_RPAREN, + ACTIONS(5818), 1, + anon_sym_COMMA, + STATE(2819), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2665), 2, sym_line_comment, sym_block_comment, - [80669] = 7, + [80686] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5635), 1, - sym_super, - ACTIONS(5801), 1, - sym_identifier, - STATE(3246), 1, - sym_type_arguments, + ACTIONS(5008), 1, + anon_sym_COLON, + STATE(2860), 1, + sym_trait_bounds, + ACTIONS(5820), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2666), 2, sym_line_comment, sym_block_comment, - [80692] = 7, + [80707] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5152), 1, - sym_super, - ACTIONS(5783), 1, - sym_identifier, - STATE(3225), 1, - sym_type_arguments, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(4998), 1, + anon_sym_LBRACE, + STATE(688), 1, + sym_field_declaration_list, + STATE(3145), 1, + sym_where_clause, STATE(2667), 2, sym_line_comment, sym_block_comment, - [80715] = 7, + [80730] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5152), 1, - sym_super, - ACTIONS(5783), 1, - sym_identifier, - STATE(3246), 1, - sym_type_arguments, + ACTIONS(5822), 1, + anon_sym_LBRACE, + ACTIONS(5824), 1, + anon_sym_for, + ACTIONS(5826), 1, + anon_sym_loop, + ACTIONS(5828), 1, + anon_sym_while, STATE(2668), 2, sym_line_comment, sym_block_comment, - [80738] = 7, + [80753] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5656), 1, - sym_super, - ACTIONS(5803), 1, - sym_identifier, - STATE(3225), 1, - sym_type_arguments, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(5830), 1, + anon_sym_RPAREN, + ACTIONS(5832), 1, + anon_sym_COMMA, + STATE(2760), 1, + aux_sym_tuple_pattern_repeat1, STATE(2669), 2, sym_line_comment, sym_block_comment, - [80761] = 7, + [80776] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5656), 1, - sym_super, - ACTIONS(5803), 1, - sym_identifier, - STATE(3246), 1, - sym_type_arguments, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(5834), 1, + anon_sym_RBRACK, + ACTIONS(5836), 1, + anon_sym_COMMA, + STATE(2762), 1, + aux_sym_slice_pattern_repeat1, STATE(2670), 2, sym_line_comment, sym_block_comment, - [80784] = 7, + [80799] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5656), 1, - sym_super, - ACTIONS(5805), 1, - sym_identifier, - STATE(3225), 1, - sym_type_arguments, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + STATE(604), 1, + sym_declaration_list, + STATE(3079), 1, + sym_where_clause, STATE(2671), 2, sym_line_comment, sym_block_comment, - [80807] = 7, + [80822] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5656), 1, - sym_super, - ACTIONS(5805), 1, - sym_identifier, - STATE(3246), 1, - sym_type_arguments, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4960), 1, + anon_sym_LT, + STATE(2229), 1, + sym_parameters, + STATE(3158), 1, + sym_type_parameters, STATE(2672), 2, sym_line_comment, sym_block_comment, - [80830] = 7, + [80845] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5656), 1, - sym_super, - ACTIONS(5807), 1, - sym_identifier, - STATE(3225), 1, - sym_type_arguments, + ACTIONS(5838), 1, + anon_sym_COLON, STATE(2673), 2, sym_line_comment, sym_block_comment, - [80853] = 7, + ACTIONS(4843), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [80864] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(5656), 1, - sym_super, - ACTIONS(5807), 1, + ACTIONS(5702), 1, sym_identifier, - STATE(3246), 1, + ACTIONS(5756), 1, + sym_super, + STATE(3162), 1, sym_type_arguments, STATE(2674), 2, sym_line_comment, sym_block_comment, - [80876] = 7, + [80887] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5152), 1, - sym_super, - ACTIONS(5807), 1, - sym_identifier, - STATE(3225), 1, - sym_type_arguments, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(384), 1, + sym_block, + STATE(3347), 1, + sym_label, STATE(2675), 2, sym_line_comment, sym_block_comment, - [80899] = 7, + [80910] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(5152), 1, - sym_super, - ACTIONS(5807), 1, - sym_identifier, - STATE(3246), 1, + ACTIONS(5629), 1, + anon_sym_COLON_COLON, + ACTIONS(5840), 1, + anon_sym_for, + STATE(1946), 1, sym_type_arguments, STATE(2676), 2, sym_line_comment, sym_block_comment, - [80922] = 5, - ACTIONS(3), 1, + [80933] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5809), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(376), 1, + sym_block, + STATE(3347), 1, + sym_label, STATE(2677), 2, sym_line_comment, sym_block_comment, - ACTIONS(5811), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [80941] = 4, + [80956] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(3422), 1, + sym_block, + STATE(3567), 1, + sym_label, STATE(2678), 2, sym_line_comment, sym_block_comment, - ACTIONS(959), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [80958] = 7, + [80979] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(5813), 1, - anon_sym_RPAREN, - ACTIONS(5815), 1, - anon_sym_COMMA, - STATE(2837), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5702), 1, + sym_identifier, + ACTIONS(5756), 1, + sym_super, + STATE(3184), 1, + sym_type_arguments, STATE(2679), 2, sym_line_comment, sym_block_comment, - [80981] = 7, + [81002] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5426), 1, - anon_sym_RPAREN, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(5432), 1, - anon_sym_COMMA, - STATE(2844), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4960), 1, + anon_sym_LT, + STATE(2210), 1, + sym_parameters, + STATE(3258), 1, + sym_type_parameters, STATE(2680), 2, sym_line_comment, sym_block_comment, - [81004] = 6, - ACTIONS(103), 1, + [81025] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4488), 1, - anon_sym_DOT_DOT, - ACTIONS(5156), 1, - anon_sym_COLON_COLON, - ACTIONS(4490), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5842), 1, + aux_sym_token_repetition_pattern_token1, STATE(2681), 2, sym_line_comment, sym_block_comment, - [81025] = 7, + ACTIONS(5844), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [81044] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - ACTIONS(4900), 1, - anon_sym_LT, - STATE(2227), 1, - sym_parameters, - STATE(3226), 1, - sym_type_parameters, + ACTIONS(1499), 1, + anon_sym_RPAREN, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5595), 1, + anon_sym_COMMA, + STATE(2847), 1, + aux_sym_parameters_repeat1, STATE(2682), 2, sym_line_comment, sym_block_comment, - [81048] = 7, + [81067] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(3433), 1, - sym_block, - STATE(3556), 1, - sym_label, + ACTIONS(5461), 1, + anon_sym_COLON, + ACTIONS(5463), 1, + anon_sym_PIPE, + ACTIONS(5465), 1, + anon_sym_COMMA, + STATE(2948), 1, + aux_sym_closure_parameters_repeat1, STATE(2683), 2, sym_line_comment, sym_block_comment, - [81071] = 5, + [81090] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5817), 1, - anon_sym_in, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(398), 1, + sym_block, + STATE(3347), 1, + sym_label, STATE(2684), 2, sym_line_comment, sym_block_comment, - ACTIONS(5819), 3, - sym_self, - sym_super, - sym_crate, - [81090] = 7, + [81113] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5821), 1, - anon_sym_LBRACE, - ACTIONS(5823), 1, - anon_sym_for, - ACTIONS(5825), 1, - anon_sym_loop, - ACTIONS(5827), 1, - anon_sym_while, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5846), 1, + anon_sym_RPAREN, + ACTIONS(5848), 1, + anon_sym_COMMA, + STATE(2769), 1, + aux_sym_tuple_type_repeat1, STATE(2685), 2, sym_line_comment, sym_block_comment, - [81113] = 7, + [81136] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4498), 1, - anon_sym_BANG, - ACTIONS(4581), 1, - anon_sym_COLON_COLON, - STATE(1943), 1, - sym_type_arguments, + ACTIONS(4490), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5850), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2686), 2, sym_line_comment, sym_block_comment, - [81136] = 7, + [81155] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(5829), 1, - anon_sym_RBRACK, - ACTIONS(5831), 1, - anon_sym_COMMA, - STATE(2840), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(4998), 1, + anon_sym_LBRACE, + STATE(610), 1, + sym_field_declaration_list, + STATE(3154), 1, + sym_where_clause, STATE(2687), 2, sym_line_comment, sym_block_comment, - [81159] = 7, + [81178] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5656), 1, - sym_super, - ACTIONS(5739), 1, - sym_identifier, - STATE(3225), 1, - sym_type_arguments, + ACTIONS(4681), 1, + anon_sym_GT, + ACTIONS(5578), 1, + anon_sym_COMMA, + ACTIONS(5650), 1, + anon_sym_EQ, + STATE(3030), 1, + aux_sym_type_parameters_repeat1, STATE(2688), 2, sym_line_comment, sym_block_comment, - [81182] = 7, + [81201] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5656), 1, - sym_super, - ACTIONS(5739), 1, - sym_identifier, - STATE(3246), 1, - sym_type_arguments, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(1473), 1, + sym_block, + STATE(3567), 1, + sym_label, STATE(2689), 2, sym_line_comment, sym_block_comment, - [81205] = 4, - ACTIONS(103), 1, + [81224] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, + ACTIONS(5852), 1, + aux_sym_token_repetition_pattern_token1, STATE(2690), 2, sym_line_comment, sym_block_comment, - ACTIONS(5833), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [81222] = 4, + ACTIONS(5854), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [81243] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5856), 1, + anon_sym_RPAREN, + ACTIONS(5858), 1, + anon_sym_COMMA, + STATE(2931), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2691), 2, sym_line_comment, sym_block_comment, - ACTIONS(5835), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [81239] = 5, + [81266] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(1476), 1, + sym_block, + STATE(3567), 1, + sym_label, STATE(2692), 2, sym_line_comment, sym_block_comment, - ACTIONS(5837), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [81258] = 7, + [81289] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5839), 1, - anon_sym_RPAREN, - ACTIONS(5841), 1, - anon_sym_COMMA, - STATE(2854), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(3276), 1, + anon_sym_LPAREN, + ACTIONS(4486), 1, + anon_sym_LT2, + STATE(1066), 1, + sym_parameters, + STATE(1945), 1, + sym_type_arguments, STATE(2693), 2, sym_line_comment, sym_block_comment, - [81281] = 7, + [81312] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - STATE(3481), 1, + STATE(3442), 1, sym_block, - STATE(3556), 1, + STATE(3567), 1, sym_label, STATE(2694), 2, sym_line_comment, sym_block_comment, - [81304] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [81335] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(372), 1, - sym_block, - STATE(3569), 1, - sym_label, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5544), 1, + anon_sym_RPAREN, + ACTIONS(5546), 1, + anon_sym_COMMA, + STATE(2901), 1, + aux_sym_parameters_repeat1, STATE(2695), 2, sym_line_comment, sym_block_comment, - [81327] = 7, + [81358] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - ACTIONS(4900), 1, - anon_sym_LT, - STATE(2184), 1, - sym_parameters, - STATE(3252), 1, - sym_type_parameters, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_RPAREN, + ACTIONS(5862), 1, + anon_sym_COMMA, + STATE(2895), 1, + aux_sym_tuple_pattern_repeat1, STATE(2696), 2, sym_line_comment, sym_block_comment, - [81350] = 7, + [81381] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(5250), 1, - anon_sym_LBRACE, - STATE(598), 1, - sym_enum_variant_list, - STATE(3200), 1, - sym_where_clause, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4960), 1, + anon_sym_LT, + STATE(2217), 1, + sym_parameters, + STATE(3271), 1, + sym_type_parameters, STATE(2697), 2, sym_line_comment, sym_block_comment, - [81373] = 7, + [81404] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(4948), 1, + ACTIONS(5276), 1, anon_sym_LBRACE, - STATE(657), 1, - sym_declaration_list, - STATE(3094), 1, + STATE(1120), 1, + sym_enum_variant_list, + STATE(3168), 1, sym_where_clause, STATE(2698), 2, sym_line_comment, sym_block_comment, - [81396] = 7, + [81427] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(5843), 1, - anon_sym_RPAREN, - ACTIONS(5845), 1, - anon_sym_COMMA, - STATE(2873), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(5864), 1, + anon_sym_DQUOTE, + STATE(2596), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5668), 2, + sym_string_content, + sym_escape_sequence, STATE(2699), 2, sym_line_comment, sym_block_comment, - [81419] = 7, + [81448] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3268), 1, - anon_sym_LPAREN, - ACTIONS(4474), 1, - anon_sym_LT2, - STATE(1094), 1, - sym_parameters, - STATE(1939), 1, - sym_type_arguments, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(3463), 1, + sym_block, + STATE(3567), 1, + sym_label, STATE(2700), 2, sym_line_comment, sym_block_comment, - [81442] = 6, + [81471] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5016), 1, - anon_sym_COLON, - STATE(2807), 1, - sym_trait_bounds, - ACTIONS(5847), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(3465), 1, + sym_block, + STATE(3567), 1, + sym_label, STATE(2701), 2, sym_line_comment, sym_block_comment, - [81463] = 7, + [81494] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(3472), 1, - sym_block, - STATE(3556), 1, - sym_label, + ACTIONS(5866), 1, + anon_sym_in, STATE(2702), 2, sym_line_comment, sym_block_comment, - [81486] = 7, + ACTIONS(5868), 3, + sym_self, + sym_super, + sym_crate, + [81513] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(5346), 1, - anon_sym_LBRACE, - STATE(1134), 1, - sym_enum_variant_list, - STATE(3092), 1, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5870), 1, + anon_sym_SEMI, + STATE(3388), 1, sym_where_clause, STATE(2703), 2, sym_line_comment, sym_block_comment, - [81509] = 7, + [81536] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(3347), 1, - sym_block, - STATE(3556), 1, - sym_label, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5872), 1, + anon_sym_SEMI, + ACTIONS(5874), 1, + anon_sym_EQ, + ACTIONS(5876), 1, + anon_sym_else, STATE(2704), 2, sym_line_comment, sym_block_comment, - [81532] = 5, - ACTIONS(3), 1, + [81559] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5849), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2705), 2, + ACTIONS(5878), 1, + anon_sym_COMMA, + ACTIONS(4112), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2705), 3, sym_line_comment, sym_block_comment, - ACTIONS(5851), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [81551] = 7, + aux_sym_arguments_repeat1, + [81578] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - STATE(1447), 1, - sym_block, - STATE(3556), 1, + STATE(3567), 1, sym_label, + STATE(3585), 1, + sym_block, STATE(2706), 2, sym_line_comment, sym_block_comment, - [81574] = 7, + [81601] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - ACTIONS(4900), 1, - anon_sym_LT, - STATE(2205), 1, - sym_parameters, - STATE(3264), 1, - sym_type_parameters, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(3567), 1, + sym_label, + STATE(3586), 1, + sym_block, STATE(2707), 2, sym_line_comment, sym_block_comment, - [81597] = 7, + [81624] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5853), 1, - anon_sym_SEMI, - ACTIONS(5855), 1, - anon_sym_EQ, - ACTIONS(5857), 1, - anon_sym_else, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(3567), 1, + sym_label, + STATE(3600), 1, + sym_block, STATE(2708), 2, sym_line_comment, sym_block_comment, - [81620] = 7, + [81647] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4759), 1, - anon_sym_for, - ACTIONS(5696), 1, - anon_sym_COLON_COLON, - STATE(1940), 1, - sym_type_arguments, STATE(2709), 2, sym_line_comment, sym_block_comment, - [81643] = 7, + ACTIONS(5588), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + [81664] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - STATE(3471), 1, + STATE(3545), 1, sym_block, - STATE(3556), 1, + STATE(3567), 1, sym_label, STATE(2710), 2, sym_line_comment, sym_block_comment, - [81666] = 7, + [81687] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(3473), 1, - sym_block, - STATE(3556), 1, - sym_label, + ACTIONS(5490), 1, + anon_sym_GT, + ACTIONS(5492), 1, + anon_sym_COMMA, + ACTIONS(5650), 1, + anon_sym_EQ, + STATE(2778), 1, + aux_sym_type_parameters_repeat1, STATE(2711), 2, sym_line_comment, sym_block_comment, - [81689] = 7, + [81710] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5499), 1, - anon_sym_GT, - ACTIONS(5501), 1, - anon_sym_COMMA, - ACTIONS(5639), 1, - anon_sym_EQ, - STATE(2887), 1, - aux_sym_type_parameters_repeat1, STATE(2712), 2, sym_line_comment, sym_block_comment, - [81712] = 7, + ACTIONS(4208), 4, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + [81727] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5696), 1, - anon_sym_COLON_COLON, - ACTIONS(5859), 1, - anon_sym_for, - STATE(1940), 1, - sym_type_arguments, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5881), 1, + anon_sym_SEMI, + STATE(3479), 1, + sym_where_clause, STATE(2713), 2, sym_line_comment, sym_block_comment, - [81735] = 7, + [81750] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(3556), 1, - sym_label, - STATE(3568), 1, - sym_block, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(5222), 1, + anon_sym_COLON_COLON, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2714), 2, sym_line_comment, sym_block_comment, - [81758] = 7, + [81771] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(3556), 1, - sym_label, - STATE(3571), 1, - sym_block, + ACTIONS(4962), 1, + anon_sym_where, + STATE(1264), 1, + sym_declaration_list, + STATE(3278), 1, + sym_where_clause, STATE(2715), 2, sym_line_comment, sym_block_comment, - [81781] = 5, - ACTIONS(3), 1, + [81794] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5861), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(5883), 1, + anon_sym_LBRACE, + ACTIONS(5885), 1, + anon_sym_for, + ACTIONS(5887), 1, + anon_sym_loop, + ACTIONS(5889), 1, + anon_sym_while, STATE(2716), 2, sym_line_comment, sym_block_comment, - ACTIONS(5863), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [81800] = 7, + [81817] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5865), 1, - anon_sym_SEMI, - ACTIONS(5867), 1, - anon_sym_EQ, - ACTIONS(5869), 1, - anon_sym_else, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(5891), 1, + anon_sym_RBRACK, + ACTIONS(5893), 1, + anon_sym_COMMA, + STATE(2898), 1, + aux_sym_slice_pattern_repeat1, STATE(2717), 2, sym_line_comment, sym_block_comment, - [81823] = 7, + [81840] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5895), 1, + anon_sym_LPAREN, + ACTIONS(5897), 1, + anon_sym_LBRACK, + ACTIONS(5899), 1, anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(3556), 1, - sym_label, - STATE(3583), 1, - sym_block, + STATE(2636), 1, + sym_token_tree, STATE(2718), 2, sym_line_comment, sym_block_comment, - [81846] = 7, + [81863] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5307), 1, - anon_sym_GT, - ACTIONS(5309), 1, + ACTIONS(4490), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5901), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(5639), 1, - anon_sym_EQ, - STATE(2801), 1, - aux_sym_type_parameters_repeat1, STATE(2719), 2, sym_line_comment, sym_block_comment, - [81869] = 7, + [81882] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(3510), 1, - sym_block, - STATE(3556), 1, - sym_label, + ACTIONS(1493), 1, + anon_sym_RPAREN, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5601), 1, + anon_sym_COMMA, + STATE(2999), 1, + aux_sym_parameters_repeat1, STATE(2720), 2, sym_line_comment, sym_block_comment, - [81892] = 7, + [81905] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(3391), 1, - sym_block, - STATE(3556), 1, - sym_label, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5903), 1, + anon_sym_SEMI, + STATE(3501), 1, + sym_where_clause, STATE(2721), 2, sym_line_comment, sym_block_comment, - [81915] = 7, + [81928] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(3400), 1, - sym_block, - STATE(3556), 1, - sym_label, + ACTIONS(4962), 1, + anon_sym_where, + STATE(1278), 1, + sym_declaration_list, + STATE(3289), 1, + sym_where_clause, STATE(2722), 2, sym_line_comment, sym_block_comment, - [81938] = 7, + [81951] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, + ACTIONS(3443), 1, anon_sym_SQUOTE, - STATE(1097), 1, + STATE(385), 1, sym_block, - STATE(3556), 1, + STATE(3347), 1, sym_label, STATE(2723), 2, sym_line_comment, sym_block_comment, - [81961] = 6, + [81974] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4488), 1, - anon_sym_DOT_DOT, - ACTIONS(5172), 1, - anon_sym_COLON_COLON, - ACTIONS(4490), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5008), 1, + anon_sym_COLON, + STATE(2860), 1, + sym_trait_bounds, + ACTIONS(5905), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2724), 2, sym_line_comment, sym_block_comment, - [81982] = 7, + [81995] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5871), 1, - anon_sym_LBRACE, - ACTIONS(5873), 1, - anon_sym_for, - ACTIONS(5875), 1, - anon_sym_loop, - ACTIONS(5877), 1, - anon_sym_while, + ACTIONS(4500), 1, + anon_sym_DOT_DOT, + ACTIONS(5244), 1, + anon_sym_COLON_COLON, + ACTIONS(4502), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2725), 2, sym_line_comment, sym_block_comment, - [82005] = 7, + [82016] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5599), 1, - anon_sym_RPAREN, - ACTIONS(5601), 1, - anon_sym_COMMA, - STATE(2898), 1, - aux_sym_parameters_repeat1, + ACTIONS(1597), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(2110), 1, + sym_block, + STATE(3608), 1, + sym_label, STATE(2726), 2, sym_line_comment, sym_block_comment, - [82028] = 5, + [82039] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4478), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5879), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5907), 1, + anon_sym_LBRACE, + ACTIONS(5909), 1, + anon_sym_for, + ACTIONS(5911), 1, + anon_sym_loop, + ACTIONS(5913), 1, + anon_sym_while, STATE(2727), 2, sym_line_comment, sym_block_comment, - [82047] = 7, + [82062] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5754), 1, - anon_sym_LPAREN, - ACTIONS(5756), 1, - anon_sym_LBRACK, - ACTIONS(5758), 1, - anon_sym_LBRACE, - STATE(391), 1, - sym_delim_token_tree, + ACTIONS(4486), 1, + anon_sym_LT2, + STATE(3162), 1, + sym_type_arguments, + ACTIONS(5756), 2, + sym_identifier, + sym_super, STATE(2728), 2, sym_line_comment, sym_block_comment, - [82070] = 7, + [82083] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(1150), 1, - sym_declaration_list, - STATE(3114), 1, - sym_where_clause, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5629), 1, + anon_sym_COLON_COLON, + ACTIONS(5915), 1, + anon_sym_for, + STATE(1946), 1, + sym_type_arguments, STATE(2729), 2, sym_line_comment, sym_block_comment, - [82093] = 7, + [82106] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5881), 1, - anon_sym_RPAREN, - ACTIONS(5883), 1, - anon_sym_COMMA, - STATE(2785), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4486), 1, + anon_sym_LT2, + STATE(3184), 1, + sym_type_arguments, + ACTIONS(5756), 2, + sym_identifier, + sym_super, STATE(2730), 2, sym_line_comment, sym_block_comment, - [82116] = 7, + [82127] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(4944), 1, - anon_sym_LBRACE, - STATE(1156), 1, - sym_field_declaration_list, - STATE(3120), 1, - sym_where_clause, + ACTIONS(5917), 1, + anon_sym_COLON_COLON, STATE(2731), 2, sym_line_comment, sym_block_comment, - [82139] = 6, + ACTIONS(4759), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82146] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4488), 1, - anon_sym_DOT_DOT, - ACTIONS(5212), 1, + ACTIONS(5919), 1, anon_sym_COLON_COLON, - ACTIONS(4490), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(2732), 2, sym_line_comment, sym_block_comment, - [82160] = 7, - ACTIONS(103), 1, + ACTIONS(4703), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82165] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5696), 1, - anon_sym_COLON_COLON, - ACTIONS(5885), 1, - anon_sym_for, - STATE(1940), 1, - sym_type_arguments, + ACTIONS(5921), 1, + aux_sym_token_repetition_pattern_token1, STATE(2733), 2, sym_line_comment, sym_block_comment, - [82183] = 7, + ACTIONS(5923), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [82184] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5887), 1, - anon_sym_LBRACE, - ACTIONS(5889), 1, - anon_sym_for, - ACTIONS(5891), 1, - anon_sym_loop, - ACTIONS(5893), 1, - anon_sym_while, + ACTIONS(5925), 1, + anon_sym_COLON_COLON, STATE(2734), 2, sym_line_comment, sym_block_comment, - [82206] = 7, + ACTIONS(4703), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82203] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5895), 1, - anon_sym_RPAREN, - ACTIONS(5897), 1, - anon_sym_COMMA, - STATE(2870), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(5638), 1, + anon_sym_COLON_COLON, STATE(2735), 2, sym_line_comment, sym_block_comment, - [82229] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + ACTIONS(4703), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82222] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(388), 1, - sym_block, - STATE(3569), 1, - sym_label, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4777), 1, + anon_sym_for, + ACTIONS(5629), 1, + anon_sym_COLON_COLON, + STATE(1946), 1, + sym_type_arguments, STATE(2736), 2, sym_line_comment, sym_block_comment, - [82252] = 7, + [82245] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4769), 1, - anon_sym_for, - ACTIONS(5696), 1, - anon_sym_COLON_COLON, - STATE(1940), 1, - sym_type_arguments, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + STATE(676), 1, + sym_declaration_list, + STATE(3096), 1, + sym_where_clause, STATE(2737), 2, sym_line_comment, sym_block_comment, - [82275] = 7, + [82268] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5899), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(5901), 1, - anon_sym_for, - ACTIONS(5903), 1, - anon_sym_loop, - ACTIONS(5905), 1, - anon_sym_while, + ACTIONS(4962), 1, + anon_sym_where, + STATE(1135), 1, + sym_declaration_list, + STATE(3275), 1, + sym_where_clause, STATE(2738), 2, sym_line_comment, sym_block_comment, - [82298] = 7, + [82291] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3365), 1, - anon_sym_SQUOTE, - STATE(3466), 1, - sym_block, - STATE(3556), 1, - sym_label, + ACTIONS(5917), 1, + anon_sym_COLON_COLON, STATE(2739), 2, sym_line_comment, sym_block_comment, - [82321] = 7, + ACTIONS(4739), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82310] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5696), 1, - anon_sym_COLON_COLON, - ACTIONS(5907), 1, - anon_sym_for, - STATE(1940), 1, - sym_type_arguments, + ACTIONS(1223), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(466), 1, + sym_block, + STATE(3616), 1, + sym_label, STATE(2740), 2, sym_line_comment, sym_block_comment, - [82344] = 7, + [82333] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5696), 1, - anon_sym_COLON_COLON, - ACTIONS(5909), 1, - anon_sym_for, - STATE(1940), 1, - sym_type_arguments, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + STATE(527), 1, + sym_declaration_list, + STATE(3236), 1, + sym_where_clause, STATE(2741), 2, sym_line_comment, sym_block_comment, - [82367] = 7, + [82356] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(5696), 1, + ACTIONS(5629), 1, anon_sym_COLON_COLON, - ACTIONS(5911), 1, + ACTIONS(5927), 1, anon_sym_for, - STATE(1940), 1, + STATE(1946), 1, sym_type_arguments, STATE(2742), 2, sym_line_comment, sym_block_comment, - [82390] = 6, + [82379] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - STATE(3225), 1, + ACTIONS(5629), 1, + anon_sym_COLON_COLON, + ACTIONS(5929), 1, + anon_sym_for, + STATE(1946), 1, sym_type_arguments, - ACTIONS(5656), 2, - sym_identifier, - sym_super, STATE(2743), 2, sym_line_comment, sym_block_comment, - [82411] = 6, + [82402] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5913), 1, - anon_sym_DQUOTE, - STATE(2612), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5712), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(3284), 1, + anon_sym_LT2, + ACTIONS(5252), 1, + sym_super, + ACTIONS(5780), 1, + sym_identifier, + STATE(1450), 1, + sym_type_arguments, STATE(2744), 2, sym_line_comment, sym_block_comment, - [82432] = 7, + [82425] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5915), 1, - anon_sym_SEMI, - STATE(3385), 1, + ACTIONS(5270), 1, + anon_sym_LBRACE, + STATE(589), 1, + sym_enum_variant_list, + STATE(3119), 1, sym_where_clause, STATE(2745), 2, sym_line_comment, sym_block_comment, - [82455] = 6, + [82448] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5917), 1, - anon_sym_DQUOTE, - STATE(2531), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5712), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4958), 1, + anon_sym_LBRACE, + ACTIONS(4962), 1, + anon_sym_where, + STATE(1141), 1, + sym_field_declaration_list, + STATE(3300), 1, + sym_where_clause, STATE(2746), 2, sym_line_comment, sym_block_comment, - [82476] = 6, + [82471] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, + anon_sym_SLASH_STAR, ACTIONS(5919), 1, - anon_sym_SEMI, - STATE(1369), 1, - sym_declaration_list, + anon_sym_COLON_COLON, STATE(2747), 2, sym_line_comment, sym_block_comment, - [82496] = 6, + ACTIONS(4749), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82490] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5921), 1, - anon_sym_SEMI, - STATE(1321), 1, - sym_declaration_list, + ACTIONS(4480), 1, + anon_sym_LPAREN, + ACTIONS(4486), 1, + anon_sym_LT2, + STATE(1945), 1, + sym_type_arguments, + STATE(1964), 1, + sym_parameters, STATE(2748), 2, sym_line_comment, sym_block_comment, - [82516] = 6, + [82513] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(985), 1, - anon_sym_RBRACK, - ACTIONS(4046), 1, - anon_sym_COMMA, - STATE(2643), 1, - aux_sym_arguments_repeat1, + ACTIONS(5925), 1, + anon_sym_COLON_COLON, STATE(2749), 2, sym_line_comment, sym_block_comment, - [82536] = 6, + ACTIONS(4749), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82532] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5923), 1, - anon_sym_SEMI, - ACTIONS(5925), 1, - anon_sym_EQ, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(3486), 1, + sym_block, + STATE(3567), 1, + sym_label, STATE(2750), 2, sym_line_comment, sym_block_comment, - [82556] = 4, + [82555] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3443), 1, + anon_sym_SQUOTE, + STATE(3567), 1, + sym_label, + STATE(3570), 1, + sym_block, STATE(2751), 2, sym_line_comment, sym_block_comment, - ACTIONS(4885), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82572] = 6, + [82578] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5813), 1, - anon_sym_RPAREN, - ACTIONS(5815), 1, - anon_sym_COMMA, - STATE(2837), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(5756), 1, + sym_super, + ACTIONS(5794), 1, + sym_identifier, + STATE(3162), 1, + sym_type_arguments, STATE(2752), 2, sym_line_comment, sym_block_comment, - [82592] = 6, + [82601] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4909), 1, - anon_sym_RBRACE, - ACTIONS(5927), 1, - anon_sym_COMMA, - STATE(2816), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5931), 1, + anon_sym_SEMI, + STATE(3481), 1, + sym_where_clause, STATE(2753), 2, sym_line_comment, sym_block_comment, - [82612] = 5, + [82621] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(5929), 2, + ACTIONS(5933), 1, anon_sym_RBRACE, + ACTIONS(5935), 1, anon_sym_COMMA, + STATE(2792), 1, + aux_sym_field_initializer_list_repeat1, STATE(2754), 2, sym_line_comment, sym_block_comment, - [82630] = 4, + [82641] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5465), 1, + anon_sym_COMMA, + ACTIONS(5937), 1, + anon_sym_PIPE, + STATE(2948), 1, + aux_sym_closure_parameters_repeat1, STATE(2755), 2, sym_line_comment, sym_block_comment, - ACTIONS(4847), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82646] = 4, + [82661] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(5939), 1, + anon_sym_SEMI, + STATE(1149), 1, + sym_declaration_list, STATE(2756), 2, sym_line_comment, sym_block_comment, - ACTIONS(4851), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82662] = 6, + [82681] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5931), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5941), 1, anon_sym_SEMI, - ACTIONS(5933), 1, - anon_sym_EQ, + STATE(3483), 1, + sym_where_clause, STATE(2757), 2, sym_line_comment, sym_block_comment, - [82682] = 5, + [82701] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4571), 1, - anon_sym_COLON_COLON, - ACTIONS(5935), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(5943), 1, + anon_sym_SEMI, + STATE(715), 1, + sym_declaration_list, STATE(2758), 2, sym_line_comment, sym_block_comment, - [82700] = 4, + [82721] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(977), 1, + anon_sym_RBRACK, + ACTIONS(4148), 1, + anon_sym_COMMA, + STATE(2705), 1, + aux_sym_arguments_repeat1, STATE(2759), 2, sym_line_comment, sym_block_comment, - ACTIONS(4853), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82716] = 6, + [82741] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(5937), 1, - anon_sym_SEMI, - STATE(3626), 1, - sym_where_clause, + ACTIONS(2980), 1, + anon_sym_RPAREN, + ACTIONS(5945), 1, + anon_sym_COMMA, + STATE(2853), 1, + aux_sym_tuple_pattern_repeat1, STATE(2760), 2, sym_line_comment, sym_block_comment, - [82736] = 5, + [82761] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5702), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5947), 1, + anon_sym_SEMI, + STATE(3372), 1, + sym_where_clause, STATE(2761), 2, sym_line_comment, sym_block_comment, - [82754] = 4, + [82781] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3056), 1, + anon_sym_RBRACK, + ACTIONS(5949), 1, + anon_sym_COMMA, + STATE(2516), 1, + aux_sym_slice_pattern_repeat1, STATE(2762), 2, sym_line_comment, sym_block_comment, - ACTIONS(4881), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82770] = 6, + [82801] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5939), 1, - anon_sym_SEMI, - ACTIONS(5941), 1, - anon_sym_EQ, + ACTIONS(5951), 1, + anon_sym_EQ_GT, + ACTIONS(5953), 1, + anon_sym_PIPE, + ACTIONS(5955), 1, + anon_sym_if, STATE(2763), 2, sym_line_comment, sym_block_comment, - [82790] = 6, + [82821] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4845), 1, - anon_sym_LBRACE, - STATE(1939), 1, - sym_type_arguments, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5957), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2764), 2, sym_line_comment, sym_block_comment, - [82810] = 6, + [82839] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4669), 1, - anon_sym_GT, - ACTIONS(5943), 1, - anon_sym_COMMA, - STATE(2976), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4931), 1, + anon_sym_for, + STATE(1945), 1, + sym_type_arguments, STATE(2765), 2, sym_line_comment, sym_block_comment, - [82830] = 6, + [82859] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5945), 1, - anon_sym_SEMI, - STATE(1360), 1, - sym_declaration_list, + ACTIONS(5959), 1, + anon_sym_RBRACE, + ACTIONS(5961), 1, + anon_sym_COMMA, + STATE(2807), 1, + aux_sym_struct_pattern_repeat1, STATE(2766), 2, sym_line_comment, sym_block_comment, - [82850] = 6, + [82879] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5947), 1, - anon_sym_SEMI, - STATE(1362), 1, - sym_declaration_list, + ACTIONS(5963), 1, + anon_sym_RBRACE, + ACTIONS(5965), 1, + anon_sym_COMMA, + STATE(2811), 1, + aux_sym_struct_pattern_repeat1, STATE(2767), 2, sym_line_comment, sym_block_comment, - [82870] = 6, + [82899] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5949), 1, - anon_sym_SEMI, - ACTIONS(5951), 1, - anon_sym_RBRACK, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(5967), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2768), 2, sym_line_comment, sym_block_comment, - [82890] = 6, + [82917] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5953), 1, - anon_sym_SEMI, - STATE(1371), 1, - sym_declaration_list, + ACTIONS(3170), 1, + anon_sym_RPAREN, + ACTIONS(5969), 1, + anon_sym_COMMA, + STATE(2892), 1, + aux_sym_tuple_type_repeat1, STATE(2769), 2, sym_line_comment, sym_block_comment, - [82910] = 4, + [82937] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5451), 1, + anon_sym_RPAREN, + ACTIONS(5453), 1, + anon_sym_COMMA, + STATE(2814), 1, + aux_sym_parameters_repeat1, STATE(2770), 2, sym_line_comment, sym_block_comment, - ACTIONS(4811), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82926] = 6, + [82957] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5955), 1, - anon_sym_SEMI, - STATE(1377), 1, - sym_declaration_list, STATE(2771), 2, sym_line_comment, sym_block_comment, - [82946] = 6, + ACTIONS(5971), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [82973] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5957), 1, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5973), 1, anon_sym_SEMI, - STATE(1379), 1, - sym_declaration_list, + ACTIONS(5975), 1, + anon_sym_EQ, STATE(2772), 2, sym_line_comment, sym_block_comment, - [82966] = 4, + [82993] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5977), 1, + anon_sym_RBRACE, + ACTIONS(5979), 1, + anon_sym_COMMA, + STATE(2816), 1, + aux_sym_enum_variant_list_repeat2, STATE(2773), 2, sym_line_comment, sym_block_comment, - ACTIONS(4827), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82982] = 6, + [83013] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5959), 1, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(5981), 1, anon_sym_SEMI, - ACTIONS(5961), 1, - anon_sym_EQ, + STATE(573), 1, + sym_declaration_list, STATE(2774), 2, sym_line_comment, sym_block_comment, - [83002] = 6, + [83033] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5963), 1, - anon_sym_for, - STATE(1939), 1, - sym_type_arguments, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(5983), 1, + anon_sym_SEMI, + STATE(575), 1, + sym_declaration_list, STATE(2775), 2, sym_line_comment, sym_block_comment, - [83022] = 6, + [83053] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5965), 1, - anon_sym_SEMI, - STATE(1395), 1, - sym_declaration_list, + ACTIONS(4609), 1, + anon_sym_COLON_COLON, + ACTIONS(5985), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2776), 2, sym_line_comment, sym_block_comment, - [83042] = 6, + [83071] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5967), 1, - anon_sym_SEMI, - STATE(1397), 1, - sym_declaration_list, + ACTIONS(4675), 1, + anon_sym_GT, + ACTIONS(5987), 1, + anon_sym_COMMA, + STATE(3001), 1, + aux_sym_type_parameters_repeat1, STATE(2777), 2, sym_line_comment, sym_block_comment, - [83062] = 4, + [83091] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4673), 1, + anon_sym_GT, + ACTIONS(5512), 1, + anon_sym_COMMA, + STATE(3001), 1, + aux_sym_type_parameters_repeat1, STATE(2778), 2, sym_line_comment, sym_block_comment, - ACTIONS(4843), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83078] = 4, + [83111] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4673), 1, + anon_sym_GT, + ACTIONS(5512), 1, + anon_sym_COMMA, + STATE(2821), 1, + aux_sym_type_parameters_repeat1, STATE(2779), 2, sym_line_comment, sym_block_comment, - ACTIONS(4849), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83094] = 6, + [83131] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5969), 1, - anon_sym_COLON_COLON, - STATE(1943), 1, - sym_type_arguments, + ACTIONS(1027), 1, + anon_sym_RPAREN, + ACTIONS(4146), 1, + anon_sym_COMMA, + STATE(2705), 1, + aux_sym_arguments_repeat1, STATE(2780), 2, sym_line_comment, sym_block_comment, - [83114] = 4, + [83151] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5901), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2781), 2, sym_line_comment, sym_block_comment, - ACTIONS(4873), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83130] = 6, + [83169] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3347), 1, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4875), 1, anon_sym_LBRACE, - ACTIONS(5971), 1, - anon_sym_COLON_COLON, - STATE(1204), 1, - sym_field_initializer_list, + STATE(1945), 1, + sym_type_arguments, STATE(2782), 2, sym_line_comment, sym_block_comment, - [83150] = 4, + [83189] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(5989), 1, + anon_sym_SEMI, + STATE(1183), 1, + sym_declaration_list, STATE(2783), 2, sym_line_comment, sym_block_comment, - ACTIONS(4743), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83166] = 4, + [83209] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5991), 1, + anon_sym_SEMI, + ACTIONS(5993), 1, + anon_sym_EQ, STATE(2784), 2, sym_line_comment, sym_block_comment, - ACTIONS(4875), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83182] = 6, + [83229] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5973), 1, - anon_sym_RPAREN, - ACTIONS(5975), 1, - anon_sym_COMMA, - STATE(2806), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5995), 1, + anon_sym_SEMI, + ACTIONS(5997), 1, + anon_sym_EQ, STATE(2785), 2, sym_line_comment, sym_block_comment, - [83202] = 6, + [83249] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, - anon_sym_SQUOTE, - ACTIONS(5977), 1, - anon_sym_GT, - STATE(3096), 1, - sym_lifetime, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(5999), 1, + anon_sym_SEMI, + STATE(3410), 1, + sym_where_clause, STATE(2786), 2, sym_line_comment, sym_block_comment, - [83222] = 5, + [83269] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5979), 1, - anon_sym_GT, - ACTIONS(5981), 1, + ACTIONS(6001), 1, + anon_sym_RBRACE, + ACTIONS(6003), 1, anon_sym_COMMA, - STATE(2787), 3, + STATE(2826), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2787), 2, sym_line_comment, sym_block_comment, - aux_sym_for_lifetimes_repeat1, - [83240] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [83289] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5984), 1, - anon_sym_move, - STATE(221), 1, - sym_closure_parameters, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(6005), 1, + anon_sym_SEMI, + STATE(3468), 1, + sym_where_clause, STATE(2788), 2, sym_line_comment, sym_block_comment, - [83260] = 4, + [83309] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(6007), 1, + anon_sym_SEMI, + STATE(3495), 1, + sym_where_clause, STATE(2789), 2, sym_line_comment, sym_block_comment, - ACTIONS(4871), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83276] = 6, + [83329] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5499), 1, - anon_sym_GT, - ACTIONS(5501), 1, - anon_sym_COMMA, - STATE(2887), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(6009), 1, + anon_sym_SEMI, + STATE(1205), 1, + sym_declaration_list, STATE(2790), 2, sym_line_comment, sym_block_comment, - [83296] = 4, + [83349] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4619), 1, + anon_sym_COLON, + ACTIONS(4992), 1, + anon_sym_COLON_COLON, + STATE(2650), 1, + sym_trait_bounds, STATE(2791), 2, sym_line_comment, sym_block_comment, - ACTIONS(4803), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83312] = 6, + [83369] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4919), 1, - anon_sym_COLON_COLON, - STATE(1943), 1, - sym_type_arguments, + ACTIONS(4801), 1, + anon_sym_RBRACE, + ACTIONS(6011), 1, + anon_sym_COMMA, + STATE(2918), 1, + aux_sym_field_initializer_list_repeat1, STATE(2792), 2, sym_line_comment, sym_block_comment, - [83332] = 6, + [83389] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_RBRACK, - ACTIONS(5986), 1, - anon_sym_COMMA, - STATE(2643), 1, - aux_sym_arguments_repeat1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(6013), 1, + anon_sym_SEMI, + STATE(3630), 1, + sym_where_clause, STATE(2793), 2, sym_line_comment, sym_block_comment, - [83352] = 4, + [83409] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2794), 2, + ACTIONS(6015), 1, + anon_sym_RBRACE, + ACTIONS(6017), 1, + anon_sym_COMMA, + STATE(2794), 3, sym_line_comment, sym_block_comment, - ACTIONS(4839), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83368] = 6, + aux_sym_field_declaration_list_repeat1, + [83427] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_SEMI, - STATE(1141), 1, - sym_declaration_list, + ACTIONS(1015), 1, + anon_sym_RPAREN, + ACTIONS(4104), 1, + anon_sym_COMMA, + STATE(2705), 1, + aux_sym_arguments_repeat1, STATE(2795), 2, sym_line_comment, sym_block_comment, - [83388] = 4, + [83447] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5272), 1, + anon_sym_GT, + ACTIONS(5274), 1, + anon_sym_COMMA, + STATE(2843), 1, + aux_sym_type_parameters_repeat1, STATE(2796), 2, sym_line_comment, sym_block_comment, - ACTIONS(1321), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83404] = 5, + [83467] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5990), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2797), 2, sym_line_comment, sym_block_comment, - [83422] = 5, + ACTIONS(6020), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [83483] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(5992), 2, - anon_sym_RPAREN, + ACTIONS(6022), 1, + anon_sym_RBRACE, + ACTIONS(6024), 1, anon_sym_COMMA, + STATE(2927), 1, + aux_sym_enum_variant_list_repeat2, STATE(2798), 2, sym_line_comment, sym_block_comment, - [83440] = 6, + [83503] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(5994), 1, - anon_sym_SEMI, - STATE(3559), 1, - sym_where_clause, + ACTIONS(4901), 1, + anon_sym_RBRACE, + ACTIONS(6026), 1, + anon_sym_COMMA, + STATE(2794), 1, + aux_sym_field_declaration_list_repeat1, STATE(2799), 2, sym_line_comment, sym_block_comment, - [83460] = 4, + [83523] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6028), 1, + anon_sym_RPAREN, + ACTIONS(6030), 1, + anon_sym_COMMA, + STATE(2973), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2800), 2, sym_line_comment, sym_block_comment, - ACTIONS(5996), 3, - sym_string_content, - anon_sym_DQUOTE, - sym_escape_sequence, - [83476] = 6, + [83543] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4661), 1, - anon_sym_GT, - ACTIONS(5418), 1, + ACTIONS(913), 1, + anon_sym_RBRACK, + ACTIONS(6032), 1, anon_sym_COMMA, - STATE(2976), 1, - aux_sym_type_parameters_repeat1, + STATE(2705), 1, + aux_sym_arguments_repeat1, STATE(2801), 2, sym_line_comment, sym_block_comment, - [83496] = 6, + [83563] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5660), 1, - anon_sym_RPAREN, - ACTIONS(5662), 1, + ACTIONS(4970), 1, + anon_sym_RBRACE, + ACTIONS(6034), 1, anon_sym_COMMA, - STATE(2894), 1, - aux_sym_tuple_pattern_repeat1, + STATE(2794), 1, + aux_sym_field_declaration_list_repeat1, STATE(2802), 2, sym_line_comment, sym_block_comment, - [83516] = 6, + [83583] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(5998), 1, - anon_sym_for, - STATE(1939), 1, - sym_type_arguments, + ACTIONS(1629), 1, + anon_sym_GT, + ACTIONS(6036), 1, + anon_sym_COMMA, + STATE(2841), 1, + aux_sym_type_arguments_repeat1, STATE(2803), 2, sym_line_comment, sym_block_comment, - [83536] = 6, + [83603] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(6000), 1, - anon_sym_SEMI, - STATE(3584), 1, - sym_where_clause, + ACTIONS(1629), 1, + anon_sym_GT, + ACTIONS(6036), 1, + anon_sym_COMMA, + STATE(2978), 1, + aux_sym_type_arguments_repeat1, STATE(2804), 2, sym_line_comment, sym_block_comment, - [83556] = 5, + [83623] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5992), 1, - anon_sym_RPAREN, - ACTIONS(6002), 1, + ACTIONS(4970), 1, + anon_sym_RBRACE, + ACTIONS(6034), 1, anon_sym_COMMA, - STATE(2805), 3, + STATE(2799), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2805), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_pattern_repeat1, - [83574] = 5, + [83643] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6005), 1, + ACTIONS(3064), 1, anon_sym_RPAREN, - ACTIONS(6007), 1, + ACTIONS(6038), 1, anon_sym_COMMA, - STATE(2806), 3, + STATE(2516), 1, + aux_sym_slice_pattern_repeat1, + STATE(2806), 2, sym_line_comment, sym_block_comment, - aux_sym_ordered_field_declaration_list_repeat1, - [83592] = 4, + [83663] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5230), 1, + anon_sym_RBRACE, + ACTIONS(6040), 1, + anon_sym_COMMA, + STATE(2985), 1, + aux_sym_struct_pattern_repeat1, STATE(2807), 2, sym_line_comment, sym_block_comment, - ACTIONS(6010), 3, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - [83608] = 5, + [83683] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6012), 1, - anon_sym_AMP_AMP, - ACTIONS(4328), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(6042), 1, + anon_sym_move, + STATE(241), 1, + sym_closure_parameters, STATE(2808), 2, sym_line_comment, sym_block_comment, - [83626] = 6, + [83703] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(6014), 1, - anon_sym_SEMI, - ACTIONS(6016), 1, - anon_sym_RBRACK, + ACTIONS(3066), 1, + anon_sym_RPAREN, + ACTIONS(6044), 1, + anon_sym_COMMA, + STATE(2516), 1, + aux_sym_slice_pattern_repeat1, STATE(2809), 2, sym_line_comment, sym_block_comment, - [83646] = 6, + [83723] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(6018), 1, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(6046), 1, anon_sym_SEMI, - STATE(539), 1, - sym_declaration_list, + ACTIONS(6048), 1, + anon_sym_EQ, STATE(2810), 2, sym_line_comment, sym_block_comment, - [83666] = 6, + [83743] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6020), 1, + ACTIONS(5232), 1, anon_sym_RBRACE, - ACTIONS(6022), 1, + ACTIONS(6050), 1, anon_sym_COMMA, - STATE(2915), 1, - aux_sym_field_initializer_list_repeat1, + STATE(2985), 1, + aux_sym_struct_pattern_repeat1, STATE(2811), 2, sym_line_comment, sym_block_comment, - [83686] = 6, + [83763] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3276), 1, - anon_sym_LT2, - ACTIONS(4992), 1, - anon_sym_COLON_COLON, - STATE(1053), 1, - sym_type_arguments, STATE(2812), 2, sym_line_comment, sym_block_comment, - [83706] = 5, + ACTIONS(5441), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [83779] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(6024), 2, - anon_sym_RBRACE, + ACTIONS(5860), 1, + anon_sym_RPAREN, + ACTIONS(5862), 1, anon_sym_COMMA, + STATE(2895), 1, + aux_sym_tuple_pattern_repeat1, STATE(2813), 2, sym_line_comment, sym_block_comment, - [83724] = 6, + [83799] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(6026), 1, - anon_sym_SEMI, - STATE(1164), 1, - sym_declaration_list, + ACTIONS(1499), 1, + anon_sym_RPAREN, + ACTIONS(5595), 1, + anon_sym_COMMA, + STATE(2996), 1, + aux_sym_parameters_repeat1, STATE(2814), 2, sym_line_comment, sym_block_comment, - [83744] = 6, + [83819] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(6028), 1, - anon_sym_SEMI, - STATE(541), 1, - sym_declaration_list, + ACTIONS(1499), 1, + anon_sym_RPAREN, + ACTIONS(5595), 1, + anon_sym_COMMA, + STATE(2847), 1, + aux_sym_parameters_repeat1, STATE(2815), 2, sym_line_comment, sym_block_comment, - [83764] = 5, + [83839] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6030), 1, + ACTIONS(4974), 1, anon_sym_RBRACE, - ACTIONS(6032), 1, + ACTIONS(6052), 1, anon_sym_COMMA, - STATE(2816), 3, + STATE(3010), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2816), 2, sym_line_comment, sym_block_comment, - aux_sym_field_declaration_list_repeat1, - [83782] = 6, + [83859] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4661), 1, - anon_sym_GT, - ACTIONS(5418), 1, + ACTIONS(4974), 1, + anon_sym_RBRACE, + ACTIONS(6052), 1, anon_sym_COMMA, - STATE(2984), 1, - aux_sym_type_parameters_repeat1, + STATE(2849), 1, + aux_sym_enum_variant_list_repeat2, STATE(2817), 2, sym_line_comment, sym_block_comment, - [83802] = 4, + [83879] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -178597,538 +179148,531 @@ static const uint16_t ts_small_parse_table[] = { STATE(2818), 2, sym_line_comment, sym_block_comment, - ACTIONS(4829), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83818] = 6, + ACTIONS(6054), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [83895] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(6035), 1, - anon_sym_SEMI, - STATE(751), 1, - sym_declaration_list, + ACTIONS(6056), 1, + anon_sym_RPAREN, + ACTIONS(6058), 1, + anon_sym_COMMA, + STATE(2973), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2819), 2, sym_line_comment, sym_block_comment, - [83838] = 4, + [83915] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4697), 1, + anon_sym_GT, + ACTIONS(6060), 1, + anon_sym_COMMA, + STATE(3001), 1, + aux_sym_type_parameters_repeat1, STATE(2820), 2, sym_line_comment, sym_block_comment, - ACTIONS(4831), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83854] = 4, + [83935] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4693), 1, + anon_sym_GT, + ACTIONS(6062), 1, + anon_sym_COMMA, + STATE(3001), 1, + aux_sym_type_parameters_repeat1, STATE(2821), 2, sym_line_comment, sym_block_comment, - ACTIONS(4833), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83870] = 5, + [83955] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6037), 1, - anon_sym_RBRACE, - ACTIONS(6039), 1, - anon_sym_COMMA, - STATE(2822), 3, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(6064), 1, + anon_sym_SEMI, + STATE(1243), 1, + sym_declaration_list, + STATE(2822), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat2, - [83888] = 4, + [83975] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(6066), 1, + anon_sym_SEMI, + STATE(1249), 1, + sym_declaration_list, STATE(2823), 2, sym_line_comment, sym_block_comment, - ACTIONS(4835), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83904] = 6, + [83995] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3194), 1, - anon_sym_RPAREN, - ACTIONS(6042), 1, - anon_sym_COMMA, - STATE(2884), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(6068), 1, + anon_sym_SEMI, + ACTIONS(6070), 1, + anon_sym_EQ, STATE(2824), 2, sym_line_comment, sym_block_comment, - [83924] = 6, + [84015] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4960), 1, - anon_sym_RBRACE, - ACTIONS(6044), 1, - anon_sym_COMMA, - STATE(2816), 1, - aux_sym_field_declaration_list_repeat1, STATE(2825), 2, sym_line_comment, sym_block_comment, - [83944] = 6, + ACTIONS(6072), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [84031] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4900), 1, - anon_sym_LT, - ACTIONS(6046), 1, - anon_sym_EQ, - STATE(3479), 1, - sym_type_parameters, + ACTIONS(4976), 1, + anon_sym_RBRACE, + ACTIONS(6074), 1, + anon_sym_COMMA, + STATE(2794), 1, + aux_sym_field_declaration_list_repeat1, STATE(2826), 2, sym_line_comment, sym_block_comment, - [83964] = 6, + [84051] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5549), 1, - anon_sym_RPAREN, - ACTIONS(5551), 1, + ACTIONS(4976), 1, + anon_sym_RBRACE, + ACTIONS(6074), 1, anon_sym_COMMA, - STATE(2838), 1, - aux_sym_parameters_repeat1, + STATE(2859), 1, + aux_sym_field_declaration_list_repeat1, STATE(2827), 2, sym_line_comment, sym_block_comment, - [83984] = 6, + [84071] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(6048), 1, - anon_sym_SEMI, - STATE(719), 1, - sym_declaration_list, + ACTIONS(6076), 1, + anon_sym_RBRACE, + ACTIONS(6078), 1, + anon_sym_COMMA, + STATE(2983), 1, + aux_sym_use_list_repeat1, STATE(2828), 2, sym_line_comment, sym_block_comment, - [84004] = 5, + [84091] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6052), 1, - anon_sym_EQ, - ACTIONS(6050), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(6080), 1, + anon_sym_SEMI, + STATE(1261), 1, + sym_declaration_list, STATE(2829), 2, sym_line_comment, sym_block_comment, - [84022] = 6, + [84111] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1611), 1, - anon_sym_GT, - ACTIONS(6054), 1, - anon_sym_COMMA, - STATE(2889), 1, - aux_sym_type_arguments_repeat1, STATE(2830), 2, sym_line_comment, sym_block_comment, - [84042] = 6, + ACTIONS(6082), 3, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + [84127] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1611), 1, + ACTIONS(4671), 1, anon_sym_GT, - ACTIONS(6054), 1, + ACTIONS(6084), 1, anon_sym_COMMA, - STATE(2900), 1, - aux_sym_type_arguments_repeat1, + STATE(3001), 1, + aux_sym_type_parameters_repeat1, STATE(2831), 2, sym_line_comment, sym_block_comment, - [84062] = 6, + [84147] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4917), 1, - anon_sym_RBRACE, - ACTIONS(6056), 1, - anon_sym_COMMA, - STATE(2822), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(6086), 1, + anon_sym_SEMI, + ACTIONS(6088), 1, + anon_sym_EQ, STATE(2832), 2, sym_line_comment, sym_block_comment, - [84082] = 4, + [84167] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(6090), 1, + anon_sym_SEMI, + STATE(3497), 1, + sym_where_clause, STATE(2833), 2, sym_line_comment, sym_block_comment, - ACTIONS(6058), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84098] = 6, + [84187] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1623), 1, - anon_sym_GT, - ACTIONS(6060), 1, - anon_sym_COMMA, - STATE(2845), 1, - aux_sym_type_arguments_repeat1, STATE(2834), 2, sym_line_comment, sym_block_comment, - [84118] = 6, + ACTIONS(6092), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [84203] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1623), 1, - anon_sym_GT, - ACTIONS(6060), 1, - anon_sym_COMMA, - STATE(2900), 1, - aux_sym_type_arguments_repeat1, STATE(2835), 2, sym_line_comment, sym_block_comment, - [84138] = 6, + ACTIONS(4807), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84219] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(987), 1, - anon_sym_RBRACK, - ACTIONS(4102), 1, + ACTIONS(1031), 1, + anon_sym_RPAREN, + ACTIONS(6094), 1, anon_sym_COMMA, - STATE(2643), 1, + STATE(2705), 1, aux_sym_arguments_repeat1, STATE(2836), 2, sym_line_comment, sym_block_comment, - [84158] = 6, + [84239] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2976), 1, - anon_sym_RPAREN, - ACTIONS(6062), 1, - anon_sym_COMMA, - STATE(2805), 1, - aux_sym_tuple_pattern_repeat1, STATE(2837), 2, sym_line_comment, sym_block_comment, - [84178] = 6, + ACTIONS(4839), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84255] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1489), 1, - anon_sym_RPAREN, - ACTIONS(5553), 1, - anon_sym_COMMA, - STATE(2987), 1, - aux_sym_parameters_repeat1, STATE(2838), 2, sym_line_comment, sym_block_comment, - [84198] = 6, + ACTIONS(6096), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [84271] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(6064), 1, - anon_sym_SEMI, - STATE(3435), 1, - sym_where_clause, STATE(2839), 2, sym_line_comment, sym_block_comment, - [84218] = 6, + ACTIONS(967), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [84287] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3048), 1, - anon_sym_RBRACK, - ACTIONS(6066), 1, - anon_sym_COMMA, - STATE(2608), 1, - aux_sym_slice_pattern_repeat1, STATE(2840), 2, sym_line_comment, sym_block_comment, - [84238] = 6, + ACTIONS(4703), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84303] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1489), 1, - anon_sym_RPAREN, - ACTIONS(5553), 1, + ACTIONS(1625), 1, + anon_sym_GT, + ACTIONS(6098), 1, anon_sym_COMMA, - STATE(2846), 1, - aux_sym_parameters_repeat1, + STATE(2978), 1, + aux_sym_type_arguments_repeat1, STATE(2841), 2, sym_line_comment, sym_block_comment, - [84258] = 6, + [84323] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(6068), 1, - anon_sym_SEMI, - ACTIONS(6070), 1, - anon_sym_EQ, STATE(2842), 2, sym_line_comment, sym_block_comment, - [84278] = 4, + ACTIONS(4833), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84339] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4681), 1, + anon_sym_GT, + ACTIONS(5578), 1, + anon_sym_COMMA, + STATE(3001), 1, + aux_sym_type_parameters_repeat1, STATE(2843), 2, sym_line_comment, sym_block_comment, - ACTIONS(4807), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84294] = 6, + [84359] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3052), 1, - anon_sym_RPAREN, - ACTIONS(6072), 1, - anon_sym_COMMA, - STATE(2608), 1, - aux_sym_slice_pattern_repeat1, STATE(2844), 2, sym_line_comment, sym_block_comment, - [84314] = 6, + ACTIONS(4803), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84375] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1625), 1, - anon_sym_GT, - ACTIONS(6074), 1, - anon_sym_COMMA, - STATE(2900), 1, - aux_sym_type_arguments_repeat1, STATE(2845), 2, sym_line_comment, sym_block_comment, - [84334] = 6, + ACTIONS(4897), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84391] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1479), 1, - anon_sym_RPAREN, - ACTIONS(6076), 1, - anon_sym_COMMA, - STATE(2987), 1, - aux_sym_parameters_repeat1, STATE(2846), 2, sym_line_comment, sym_block_comment, - [84354] = 5, + ACTIONS(4841), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84407] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6080), 1, - anon_sym_COLON, - ACTIONS(6078), 2, - anon_sym_RBRACE, + ACTIONS(1487), 1, + anon_sym_RPAREN, + ACTIONS(6100), 1, anon_sym_COMMA, + STATE(2996), 1, + aux_sym_parameters_repeat1, STATE(2847), 2, sym_line_comment, sym_block_comment, - [84372] = 5, + [84427] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6012), 1, - anon_sym_AMP_AMP, - ACTIONS(6082), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(947), 1, + anon_sym_RBRACK, + ACTIONS(6102), 1, + anon_sym_COMMA, + STATE(2705), 1, + aux_sym_arguments_repeat1, STATE(2848), 2, sym_line_comment, sym_block_comment, - [84390] = 4, + [84447] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4978), 1, + anon_sym_RBRACE, + ACTIONS(6104), 1, + anon_sym_COMMA, + STATE(3010), 1, + aux_sym_enum_variant_list_repeat2, STATE(2849), 2, sym_line_comment, sym_block_comment, - ACTIONS(4809), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84406] = 6, + [84467] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, - anon_sym_RBRACE, - ACTIONS(6086), 1, - anon_sym_COMMA, - STATE(2941), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(6106), 1, + anon_sym_SEMI, + STATE(1295), 1, + sym_declaration_list, STATE(2850), 2, sym_line_comment, sym_block_comment, - [84426] = 6, + [84487] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(6088), 1, + ACTIONS(6108), 1, anon_sym_SEMI, - STATE(654), 1, + STATE(1297), 1, sym_declaration_list, STATE(2851), 2, sym_line_comment, sym_block_comment, - [84446] = 6, + [84507] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6090), 1, - anon_sym_RBRACE, - ACTIONS(6092), 1, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(6110), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2945), 1, - aux_sym_struct_pattern_repeat1, STATE(2852), 2, sym_line_comment, sym_block_comment, - [84466] = 6, + [84525] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4390), 1, - anon_sym_RBRACE, - ACTIONS(6094), 1, + ACTIONS(6110), 1, + anon_sym_RPAREN, + ACTIONS(6112), 1, anon_sym_COMMA, - STATE(2918), 1, - aux_sym_use_list_repeat1, - STATE(2853), 2, + STATE(2853), 3, sym_line_comment, sym_block_comment, - [84486] = 6, + aux_sym_tuple_pattern_repeat1, + [84543] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3204), 1, - anon_sym_RPAREN, - ACTIONS(6096), 1, - anon_sym_COMMA, - STATE(2884), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(6115), 1, + anon_sym_SEMI, + STATE(1303), 1, + sym_declaration_list, STATE(2854), 2, sym_line_comment, sym_block_comment, - [84506] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [84563] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6098), 1, - anon_sym_move, - STATE(233), 1, - sym_closure_parameters, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(6117), 1, + anon_sym_SEMI, + STATE(1305), 1, + sym_declaration_list, STATE(2855), 2, sym_line_comment, sym_block_comment, - [84526] = 5, + [84583] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(6100), 2, - anon_sym_RPAREN, + ACTIONS(6119), 1, + anon_sym_RBRACE, + ACTIONS(6121), 1, anon_sym_COMMA, + STATE(2802), 1, + aux_sym_field_declaration_list_repeat1, STATE(2856), 2, sym_line_comment, sym_block_comment, - [84544] = 4, + [84603] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(6123), 1, + anon_sym_SEMI, + ACTIONS(6125), 1, + anon_sym_EQ, STATE(2857), 2, sym_line_comment, sym_block_comment, - ACTIONS(6102), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84560] = 4, + [84623] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -179136,1265 +179680,1256 @@ static const uint16_t ts_small_parse_table[] = { STATE(2858), 2, sym_line_comment, sym_block_comment, - ACTIONS(6104), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84576] = 4, + ACTIONS(4749), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84639] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4980), 1, + anon_sym_RBRACE, + ACTIONS(6127), 1, + anon_sym_COMMA, + STATE(2794), 1, + aux_sym_field_declaration_list_repeat1, STATE(2859), 2, sym_line_comment, sym_block_comment, - ACTIONS(6106), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84592] = 6, + [84659] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5495), 1, - anon_sym_RPAREN, - ACTIONS(5497), 1, - anon_sym_COMMA, - STATE(2948), 1, - aux_sym_parameters_repeat1, STATE(2860), 2, sym_line_comment, sym_block_comment, - [84612] = 4, + ACTIONS(6129), 3, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + [84675] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1621), 1, + anon_sym_GT, + ACTIONS(6131), 1, + anon_sym_COMMA, + STATE(2976), 1, + aux_sym_type_arguments_repeat1, STATE(2861), 2, sym_line_comment, sym_block_comment, - ACTIONS(4813), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84628] = 4, + [84695] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1621), 1, + anon_sym_GT, + ACTIONS(6131), 1, + anon_sym_COMMA, + STATE(2978), 1, + aux_sym_type_arguments_repeat1, STATE(2862), 2, sym_line_comment, sym_block_comment, - ACTIONS(6108), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84644] = 4, + [84715] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(6133), 1, + anon_sym_SEMI, + STATE(537), 1, + sym_declaration_list, STATE(2863), 2, sym_line_comment, sym_block_comment, - ACTIONS(6110), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84660] = 6, + [84735] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(6112), 1, - anon_sym_SEMI, - STATE(3488), 1, - sym_where_clause, + ACTIONS(975), 1, + anon_sym_RBRACK, + ACTIONS(4122), 1, + anon_sym_COMMA, + STATE(2705), 1, + aux_sym_arguments_repeat1, STATE(2864), 2, sym_line_comment, sym_block_comment, - [84680] = 5, + [84755] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6116), 1, - anon_sym_COLON, - ACTIONS(6114), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(2865), 2, sym_line_comment, sym_block_comment, - [84698] = 6, + ACTIONS(4817), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84771] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(6118), 1, - anon_sym_SEMI, - ACTIONS(6120), 1, - anon_sym_EQ, + ACTIONS(6137), 1, + anon_sym_COLON, + ACTIONS(6135), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2866), 2, sym_line_comment, sym_block_comment, - [84718] = 6, + [84789] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3972), 1, - anon_sym_LT2, - ACTIONS(4954), 1, - anon_sym_COLON_COLON, - STATE(1606), 1, - sym_type_arguments, STATE(2867), 2, sym_line_comment, sym_block_comment, - [84738] = 6, + ACTIONS(4831), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84805] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5218), 1, - anon_sym_RBRACE, - ACTIONS(6122), 1, - anon_sym_COMMA, - STATE(2919), 1, - aux_sym_struct_pattern_repeat1, STATE(2868), 2, sym_line_comment, sym_block_comment, - [84758] = 4, + ACTIONS(4795), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84821] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3058), 1, + anon_sym_RPAREN, + ACTIONS(6139), 1, + anon_sym_COMMA, + STATE(2516), 1, + aux_sym_slice_pattern_repeat1, STATE(2869), 2, sym_line_comment, sym_block_comment, - ACTIONS(6124), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84774] = 6, + [84841] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6126), 1, - anon_sym_RPAREN, - ACTIONS(6128), 1, + ACTIONS(6141), 1, + anon_sym_RBRACE, + ACTIONS(6143), 1, anon_sym_COMMA, - STATE(2806), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(3045), 1, + aux_sym_field_initializer_list_repeat1, STATE(2870), 2, sym_line_comment, sym_block_comment, - [84794] = 4, + [84861] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(6145), 1, + anon_sym_SEMI, + STATE(1342), 1, + sym_declaration_list, STATE(2871), 2, sym_line_comment, sym_block_comment, - ACTIONS(6130), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84810] = 6, + [84881] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6132), 1, - anon_sym_RBRACE, - ACTIONS(6134), 1, - anon_sym_COMMA, - STATE(2956), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(6147), 1, + anon_sym_SEMI, + STATE(1344), 1, + sym_declaration_list, STATE(2872), 2, sym_line_comment, sym_block_comment, - [84830] = 6, + [84901] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3054), 1, - anon_sym_RPAREN, - ACTIONS(6136), 1, + ACTIONS(6151), 1, + anon_sym_COLON, + ACTIONS(6149), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2608), 1, - aux_sym_slice_pattern_repeat1, STATE(2873), 2, sym_line_comment, sym_block_comment, - [84850] = 5, + [84919] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(6138), 2, - anon_sym_RBRACE, + ACTIONS(6153), 2, + anon_sym_RPAREN, anon_sym_COMMA, STATE(2874), 2, sym_line_comment, sym_block_comment, - [84868] = 6, + [84937] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(983), 1, - anon_sym_RBRACK, - ACTIONS(4116), 1, - anon_sym_COMMA, - STATE(2643), 1, - aux_sym_arguments_repeat1, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(6155), 1, + anon_sym_SEMI, + STATE(1350), 1, + sym_declaration_list, STATE(2875), 2, sym_line_comment, sym_block_comment, - [84888] = 6, + [84957] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5242), 1, - anon_sym_RBRACE, - ACTIONS(6140), 1, - anon_sym_COMMA, - STATE(2919), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(6157), 1, + anon_sym_SEMI, + STATE(1352), 1, + sym_declaration_list, STATE(2876), 2, sym_line_comment, sym_block_comment, - [84908] = 6, + [84977] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(6142), 1, - anon_sym_SEMI, - STATE(491), 1, - sym_declaration_list, + anon_sym_SLASH_STAR, + ACTIONS(5166), 1, + anon_sym_RBRACE, + ACTIONS(6159), 1, + anon_sym_COMMA, + STATE(2985), 1, + aux_sym_struct_pattern_repeat1, STATE(2877), 2, sym_line_comment, sym_block_comment, - [84928] = 6, + [84997] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(6144), 1, + ACTIONS(6161), 1, anon_sym_SEMI, - STATE(549), 1, + STATE(1358), 1, sym_declaration_list, STATE(2878), 2, sym_line_comment, sym_block_comment, - [84948] = 5, + [85017] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(6146), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(6163), 1, + anon_sym_SEMI, + STATE(1360), 1, + sym_declaration_list, STATE(2879), 2, sym_line_comment, sym_block_comment, - [84966] = 6, + [85037] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6148), 1, - anon_sym_RBRACE, - ACTIONS(6150), 1, - anon_sym_COMMA, - STATE(2893), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(6165), 1, + anon_sym_SEMI, + STATE(539), 1, + sym_declaration_list, STATE(2880), 2, sym_line_comment, sym_block_comment, - [84986] = 6, + [85057] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(6152), 1, - anon_sym_for, - STATE(1939), 1, - sym_type_arguments, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(6167), 1, + anon_sym_SEMI, + ACTIONS(6169), 1, + anon_sym_EQ, STATE(2881), 2, sym_line_comment, sym_block_comment, - [85006] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [85077] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6154), 1, - anon_sym_move, - STATE(241), 1, - sym_closure_parameters, STATE(2882), 2, sym_line_comment, sym_block_comment, - [85026] = 6, + ACTIONS(4490), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85093] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(6156), 1, - anon_sym_SEMI, - STATE(551), 1, - sym_declaration_list, STATE(2883), 2, sym_line_comment, sym_block_comment, - [85046] = 5, + ACTIONS(4793), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85109] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6146), 1, - anon_sym_RPAREN, - ACTIONS(6158), 1, - anon_sym_COMMA, - STATE(2884), 3, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(6171), 1, + anon_sym_SEMI, + STATE(1376), 1, + sym_declaration_list, + STATE(2884), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_type_repeat1, - [85064] = 6, + [85129] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, - anon_sym_GT, - ACTIONS(6161), 1, - anon_sym_COMMA, - STATE(2976), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(6173), 1, + anon_sym_SEMI, + STATE(1378), 1, + sym_declaration_list, STATE(2885), 2, sym_line_comment, sym_block_comment, - [85084] = 4, + [85149] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3062), 1, + anon_sym_RPAREN, + ACTIONS(6175), 1, + anon_sym_COMMA, + STATE(2516), 1, + aux_sym_slice_pattern_repeat1, STATE(2886), 2, sym_line_comment, sym_block_comment, - ACTIONS(6163), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85100] = 6, + [85169] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4673), 1, - anon_sym_GT, - ACTIONS(5505), 1, - anon_sym_COMMA, - STATE(2976), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6177), 1, + sym_identifier, + ACTIONS(6179), 1, + anon_sym_await, + ACTIONS(6181), 1, + sym_integer_literal, STATE(2887), 2, sym_line_comment, sym_block_comment, - [85120] = 6, + [85189] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4673), 1, - anon_sym_GT, - ACTIONS(5505), 1, - anon_sym_COMMA, - STATE(2971), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6183), 1, + sym_identifier, + ACTIONS(6185), 2, + anon_sym_default, + anon_sym_union, STATE(2888), 2, sym_line_comment, sym_block_comment, - [85140] = 6, + [85207] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1621), 1, + ACTIONS(4681), 1, anon_sym_GT, - ACTIONS(6165), 1, + ACTIONS(5578), 1, anon_sym_COMMA, - STATE(2900), 1, - aux_sym_type_arguments_repeat1, + STATE(3030), 1, + aux_sym_type_parameters_repeat1, STATE(2889), 2, sym_line_comment, sym_block_comment, - [85160] = 6, + [85227] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(6167), 1, - anon_sym_SEMI, - STATE(493), 1, - sym_declaration_list, + ACTIONS(5242), 1, + anon_sym_RBRACE, + ACTIONS(6187), 1, + anon_sym_COMMA, + STATE(2985), 1, + aux_sym_struct_pattern_repeat1, STATE(2890), 2, sym_line_comment, sym_block_comment, - [85180] = 6, + [85247] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(6169), 1, - anon_sym_SEMI, - STATE(1196), 1, - sym_declaration_list, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(6189), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2891), 2, sym_line_comment, sym_block_comment, - [85200] = 6, + [85265] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(6171), 1, - anon_sym_SEMI, - STATE(557), 1, - sym_declaration_list, - STATE(2892), 2, + ACTIONS(6189), 1, + anon_sym_RPAREN, + ACTIONS(6191), 1, + anon_sym_COMMA, + STATE(2892), 3, sym_line_comment, sym_block_comment, - [85220] = 6, + aux_sym_tuple_type_repeat1, + [85283] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4855), 1, - anon_sym_RBRACE, - ACTIONS(6173), 1, - anon_sym_COMMA, - STATE(2963), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(6194), 1, + anon_sym_move, + STATE(221), 1, + sym_closure_parameters, STATE(2893), 2, sym_line_comment, sym_block_comment, - [85240] = 6, + [85303] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2970), 1, - anon_sym_RPAREN, - ACTIONS(6175), 1, - anon_sym_COMMA, - STATE(2805), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(6196), 1, + anon_sym_for, + STATE(1945), 1, + sym_type_arguments, STATE(2894), 2, sym_line_comment, sym_block_comment, - [85260] = 6, + [85323] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(6177), 1, - anon_sym_SEMI, - STATE(559), 1, - sym_declaration_list, + ACTIONS(2984), 1, + anon_sym_RPAREN, + ACTIONS(6198), 1, + anon_sym_COMMA, + STATE(2853), 1, + aux_sym_tuple_pattern_repeat1, STATE(2895), 2, sym_line_comment, sym_block_comment, - [85280] = 5, + [85343] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(6179), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(6200), 1, + anon_sym_SEMI, + STATE(727), 1, + sym_declaration_list, STATE(2896), 2, sym_line_comment, sym_block_comment, - [85298] = 6, + [85363] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3064), 1, - anon_sym_RBRACK, - ACTIONS(6181), 1, - anon_sym_COMMA, - STATE(2608), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(6202), 1, + anon_sym_SEMI, + STATE(595), 1, + sym_declaration_list, STATE(2897), 2, sym_line_comment, sym_block_comment, - [85318] = 6, + [85383] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1487), 1, - anon_sym_RPAREN, - ACTIONS(5573), 1, + ACTIONS(3072), 1, + anon_sym_RBRACK, + ACTIONS(6204), 1, anon_sym_COMMA, - STATE(2987), 1, - aux_sym_parameters_repeat1, + STATE(2516), 1, + aux_sym_slice_pattern_repeat1, STATE(2898), 2, sym_line_comment, sym_block_comment, - [85338] = 6, + [85403] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(6183), 1, - anon_sym_SEMI, - ACTIONS(6185), 1, - anon_sym_EQ, + ACTIONS(6206), 1, + sym_identifier, + ACTIONS(6208), 1, + anon_sym_ref, + ACTIONS(6210), 1, + sym_mutable_specifier, STATE(2899), 2, sym_line_comment, sym_block_comment, - [85358] = 5, + [85423] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5420), 1, - anon_sym_GT, - ACTIONS(6187), 1, - anon_sym_COMMA, - STATE(2900), 3, + ACTIONS(4743), 1, + anon_sym_COLON_COLON, + ACTIONS(4809), 1, + anon_sym_BANG, + ACTIONS(6212), 1, + sym_identifier, + STATE(2900), 2, sym_line_comment, sym_block_comment, - aux_sym_type_arguments_repeat1, - [85376] = 6, + [85443] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6190), 1, - anon_sym_RBRACE, - ACTIONS(6192), 1, + ACTIONS(1493), 1, + anon_sym_RPAREN, + ACTIONS(5601), 1, anon_sym_COMMA, - STATE(2990), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2996), 1, + aux_sym_parameters_repeat1, STATE(2901), 2, sym_line_comment, sym_block_comment, - [85396] = 6, + [85463] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(6194), 1, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(6214), 1, anon_sym_SEMI, - STATE(3375), 1, - sym_where_clause, + ACTIONS(6216), 1, + anon_sym_EQ, STATE(2902), 2, sym_line_comment, sym_block_comment, - [85416] = 6, + [85483] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4607), 1, - anon_sym_COLON, - ACTIONS(4919), 1, - anon_sym_COLON_COLON, - STATE(2690), 1, - sym_trait_bounds, + ACTIONS(1493), 1, + anon_sym_RPAREN, + ACTIONS(5601), 1, + anon_sym_COMMA, + STATE(2999), 1, + aux_sym_parameters_repeat1, STATE(2903), 2, sym_line_comment, sym_block_comment, - [85436] = 6, + [85503] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(6196), 1, + ACTIONS(6218), 1, anon_sym_SEMI, - ACTIONS(6198), 1, - anon_sym_EQ, + ACTIONS(6220), 1, + anon_sym_RBRACK, STATE(2904), 2, sym_line_comment, sym_block_comment, - [85456] = 5, + [85523] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6202), 1, - anon_sym_COLON, - ACTIONS(6200), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(3284), 1, + anon_sym_LT2, + ACTIONS(4966), 1, + anon_sym_COLON_COLON, + STATE(1097), 1, + sym_type_arguments, STATE(2905), 2, sym_line_comment, sym_block_comment, - [85474] = 6, + [85543] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(6204), 1, - anon_sym_SEMI, - STATE(3380), 1, - sym_where_clause, STATE(2906), 2, sym_line_comment, sym_block_comment, - [85494] = 6, + ACTIONS(1329), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85559] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1487), 1, - anon_sym_RPAREN, - ACTIONS(5573), 1, - anon_sym_COMMA, - STATE(3007), 1, - aux_sym_parameters_repeat1, STATE(2907), 2, sym_line_comment, sym_block_comment, - [85514] = 5, + ACTIONS(4837), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85575] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6208), 1, - anon_sym_COLON, - ACTIONS(6206), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(2994), 1, + anon_sym_SQUOTE, + ACTIONS(6222), 1, + anon_sym_GT, + STATE(3257), 1, + sym_lifetime, STATE(2908), 2, sym_line_comment, sym_block_comment, - [85532] = 6, + [85595] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(6210), 1, - anon_sym_SEMI, - STATE(1219), 1, - sym_declaration_list, + ACTIONS(6222), 1, + anon_sym_GT, + ACTIONS(6224), 1, + anon_sym_COMMA, + STATE(3003), 1, + aux_sym_for_lifetimes_repeat1, STATE(2909), 2, sym_line_comment, sym_block_comment, - [85552] = 5, + [85615] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(6212), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(2910), 2, sym_line_comment, sym_block_comment, - [85570] = 6, + ACTIONS(6226), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [85631] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(6214), 1, - anon_sym_SEMI, - STATE(1319), 1, - sym_declaration_list, + ACTIONS(3184), 1, + anon_sym_RPAREN, + ACTIONS(6228), 1, + anon_sym_COMMA, + STATE(2892), 1, + aux_sym_tuple_type_repeat1, STATE(2911), 2, sym_line_comment, sym_block_comment, - [85590] = 6, + [85651] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, - anon_sym_SQUOTE, - ACTIONS(6216), 1, - anon_sym_GT, - STATE(3096), 1, - sym_lifetime, + ACTIONS(5496), 1, + anon_sym_RPAREN, + ACTIONS(5498), 1, + anon_sym_COMMA, + STATE(2919), 1, + aux_sym_parameters_repeat1, STATE(2912), 2, sym_line_comment, sym_block_comment, - [85610] = 6, + [85671] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6216), 1, - anon_sym_GT, - ACTIONS(6218), 1, - anon_sym_COMMA, - STATE(2787), 1, - aux_sym_for_lifetimes_repeat1, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(6230), 1, + anon_sym_SEMI, + STATE(618), 1, + sym_declaration_list, STATE(2913), 2, sym_line_comment, sym_block_comment, - [85630] = 6, + [85691] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6220), 1, - sym_identifier, - ACTIONS(6222), 1, - anon_sym_ref, - ACTIONS(6224), 1, - sym_mutable_specifier, - STATE(2914), 2, + ACTIONS(6232), 1, + anon_sym_RBRACE, + ACTIONS(6234), 1, + anon_sym_COMMA, + STATE(2914), 3, sym_line_comment, sym_block_comment, - [85650] = 6, + aux_sym_use_list_repeat1, + [85709] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4841), 1, - anon_sym_RBRACE, - ACTIONS(6226), 1, - anon_sym_COMMA, - STATE(2963), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(4960), 1, + anon_sym_LT, + ACTIONS(6237), 1, + anon_sym_EQ, + STATE(3432), 1, + sym_type_parameters, STATE(2915), 2, sym_line_comment, sym_block_comment, - [85670] = 6, + [85729] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3996), 1, - anon_sym_LBRACE, - ACTIONS(6228), 1, - anon_sym_COLON_COLON, - STATE(1748), 1, - sym_field_initializer_list, + ACTIONS(1623), 1, + anon_sym_GT, + ACTIONS(6239), 1, + anon_sym_COMMA, + STATE(2922), 1, + aux_sym_type_arguments_repeat1, STATE(2916), 2, sym_line_comment, sym_block_comment, - [85690] = 6, + [85749] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, + ACTIONS(4962), 1, anon_sym_where, - ACTIONS(6230), 1, + ACTIONS(6241), 1, anon_sym_SEMI, - STATE(3398), 1, + STATE(3522), 1, sym_where_clause, STATE(2917), 2, sym_line_comment, sym_block_comment, - [85710] = 5, + [85769] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6232), 1, + ACTIONS(6243), 1, anon_sym_RBRACE, - ACTIONS(6234), 1, + ACTIONS(6245), 1, anon_sym_COMMA, STATE(2918), 3, sym_line_comment, sym_block_comment, - aux_sym_use_list_repeat1, - [85728] = 5, + aux_sym_field_initializer_list_repeat1, + [85787] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6237), 1, - anon_sym_RBRACE, - ACTIONS(6239), 1, + ACTIONS(1495), 1, + anon_sym_RPAREN, + ACTIONS(5506), 1, anon_sym_COMMA, - STATE(2919), 3, + STATE(2996), 1, + aux_sym_parameters_repeat1, + STATE(2919), 2, sym_line_comment, sym_block_comment, - aux_sym_struct_pattern_repeat1, - [85746] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [85807] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6242), 1, - anon_sym_move, - STATE(224), 1, - sym_closure_parameters, + ACTIONS(1495), 1, + anon_sym_RPAREN, + ACTIONS(5506), 1, + anon_sym_COMMA, + STATE(2923), 1, + aux_sym_parameters_repeat1, STATE(2920), 2, sym_line_comment, sym_block_comment, - [85766] = 4, + [85827] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(6248), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2921), 2, sym_line_comment, sym_block_comment, - ACTIONS(6244), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85782] = 6, + [85845] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(989), 1, - anon_sym_RPAREN, - ACTIONS(4104), 1, + ACTIONS(1633), 1, + anon_sym_GT, + ACTIONS(6250), 1, anon_sym_COMMA, - STATE(2643), 1, - aux_sym_arguments_repeat1, + STATE(2978), 1, + aux_sym_type_arguments_repeat1, STATE(2922), 2, sym_line_comment, sym_block_comment, - [85802] = 6, + [85865] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5569), 1, + ACTIONS(1501), 1, + anon_sym_RPAREN, + ACTIONS(6252), 1, anon_sym_COMMA, - ACTIONS(6246), 1, - anon_sym_PIPE, - STATE(2939), 1, - aux_sym_closure_parameters_repeat1, + STATE(2996), 1, + aux_sym_parameters_repeat1, STATE(2923), 2, sym_line_comment, sym_block_comment, - [85822] = 5, + [85885] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5639), 1, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(6254), 1, + anon_sym_SEMI, + ACTIONS(6256), 1, anon_sym_EQ, - ACTIONS(5717), 2, - anon_sym_GT, - anon_sym_COMMA, STATE(2924), 2, sym_line_comment, sym_block_comment, - [85840] = 4, + [85905] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6260), 1, + anon_sym_EQ, + ACTIONS(6258), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2925), 2, sym_line_comment, sym_block_comment, - ACTIONS(6248), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [85856] = 6, + [85923] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6250), 1, - anon_sym_RBRACE, - ACTIONS(6252), 1, - anon_sym_COMMA, - STATE(2853), 1, - aux_sym_use_list_repeat1, + ACTIONS(6262), 1, + anon_sym_move, + STATE(223), 1, + sym_closure_parameters, STATE(2926), 2, sym_line_comment, sym_block_comment, - [85876] = 6, + [85943] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(6254), 1, - anon_sym_SEMI, - STATE(3352), 1, - sym_where_clause, + ACTIONS(4948), 1, + anon_sym_RBRACE, + ACTIONS(6264), 1, + anon_sym_COMMA, + STATE(3010), 1, + aux_sym_enum_variant_list_repeat2, STATE(2927), 2, sym_line_comment, sym_block_comment, - [85896] = 6, + [85963] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, - anon_sym_RBRACK, - ACTIONS(6256), 1, - anon_sym_COMMA, - STATE(2643), 1, - aux_sym_arguments_repeat1, STATE(2928), 2, sym_line_comment, sym_block_comment, - [85916] = 5, + ACTIONS(4871), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85979] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(6258), 2, + ACTIONS(4948), 1, anon_sym_RBRACE, + ACTIONS(6264), 1, anon_sym_COMMA, + STATE(3014), 1, + aux_sym_enum_variant_list_repeat2, STATE(2929), 2, sym_line_comment, sym_block_comment, - [85934] = 6, + [85999] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3347), 1, - anon_sym_LBRACE, - ACTIONS(6260), 1, - anon_sym_COLON_COLON, - STATE(1204), 1, - sym_field_initializer_list, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(6266), 1, + anon_sym_SEMI, + STATE(3637), 1, + sym_where_clause, STATE(2930), 2, sym_line_comment, sym_block_comment, - [85954] = 6, + [86019] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6262), 1, - anon_sym_LPAREN, - ACTIONS(6264), 1, - anon_sym_LBRACK, - ACTIONS(6266), 1, - anon_sym_LBRACE, + ACTIONS(6268), 1, + anon_sym_RPAREN, + ACTIONS(6270), 1, + anon_sym_COMMA, + STATE(2973), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2931), 2, sym_line_comment, sym_block_comment, - [85974] = 6, + [86039] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6268), 1, - anon_sym_LPAREN, - ACTIONS(6270), 1, - anon_sym_LBRACK, - ACTIONS(6272), 1, - anon_sym_LBRACE, STATE(2932), 2, sym_line_comment, sym_block_comment, - [85994] = 6, + ACTIONS(4861), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86055] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6274), 1, - anon_sym_RBRACE, - ACTIONS(6276), 1, - anon_sym_COMMA, - STATE(3027), 1, - aux_sym_field_declaration_list_repeat1, STATE(2933), 2, sym_line_comment, sym_block_comment, - [86014] = 6, + ACTIONS(4789), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86071] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1617), 1, - anon_sym_GT, - ACTIONS(6278), 1, - anon_sym_COMMA, - STATE(3022), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4000), 1, + anon_sym_LT2, + ACTIONS(4986), 1, + anon_sym_COLON_COLON, + STATE(1598), 1, + sym_type_arguments, STATE(2934), 2, sym_line_comment, sym_block_comment, - [86034] = 6, + [86091] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(6280), 1, - anon_sym_LBRACE, - STATE(1939), 1, - sym_type_arguments, + ACTIONS(6274), 1, + anon_sym_COLON, + ACTIONS(6272), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2935), 2, sym_line_comment, sym_block_comment, - [86054] = 5, + [86109] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6284), 1, - anon_sym_COLON, - ACTIONS(6282), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(6276), 1, + anon_sym_SEMI, + STATE(3620), 1, + sym_where_clause, STATE(2936), 2, sym_line_comment, sym_block_comment, - [86072] = 6, + [86129] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1617), 1, - anon_sym_GT, ACTIONS(6278), 1, + anon_sym_RBRACE, + ACTIONS(6280), 1, anon_sym_COMMA, - STATE(2900), 1, - aux_sym_type_arguments_repeat1, + STATE(2877), 1, + aux_sym_struct_pattern_repeat1, STATE(2937), 2, sym_line_comment, sym_block_comment, - [86092] = 6, + [86149] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6286), 1, - anon_sym_RBRACE, - ACTIONS(6288), 1, - anon_sym_COMMA, - STATE(2868), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(6282), 1, + anon_sym_for, + STATE(1945), 1, + sym_type_arguments, STATE(2938), 2, sym_line_comment, sym_block_comment, - [86112] = 6, + [86169] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5569), 1, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(6284), 2, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(6290), 1, - anon_sym_PIPE, - STATE(2960), 1, - aux_sym_closure_parameters_repeat1, STATE(2939), 2, sym_line_comment, sym_block_comment, - [86132] = 6, + [86187] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3032), 1, - anon_sym_RPAREN, - ACTIONS(6292), 1, - anon_sym_COMMA, - STATE(2608), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(6286), 1, + anon_sym_move, + STATE(228), 1, + sym_closure_parameters, STATE(2940), 2, sym_line_comment, sym_block_comment, - [86152] = 6, + [86207] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5186), 1, - anon_sym_RBRACE, - ACTIONS(6294), 1, - anon_sym_COMMA, - STATE(2919), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(4006), 1, + anon_sym_LBRACE, + ACTIONS(6288), 1, + anon_sym_COLON_COLON, + STATE(1845), 1, + sym_field_initializer_list, STATE(2941), 2, sym_line_comment, sym_block_comment, - [86172] = 6, + [86227] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6296), 1, - anon_sym_LPAREN, - ACTIONS(6298), 1, - anon_sym_LBRACK, - ACTIONS(6300), 1, - anon_sym_LBRACE, STATE(2942), 2, sym_line_comment, sym_block_comment, - [86192] = 5, + ACTIONS(4883), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86243] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6304), 1, - anon_sym_EQ, - ACTIONS(6302), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6290), 1, + anon_sym_move, + STATE(216), 1, + sym_closure_parameters, STATE(2943), 2, sym_line_comment, sym_block_comment, - [86210] = 6, + [86263] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3062), 1, - anon_sym_RPAREN, - ACTIONS(6306), 1, - anon_sym_COMMA, - STATE(2608), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(6292), 1, + anon_sym_SEMI, + STATE(546), 1, + sym_declaration_list, STATE(2944), 2, sym_line_comment, sym_block_comment, - [86230] = 6, + [86283] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5198), 1, - anon_sym_RBRACE, - ACTIONS(6308), 1, - anon_sym_COMMA, - STATE(2919), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(6294), 1, + anon_sym_AMP_AMP, + ACTIONS(4348), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, STATE(2945), 2, sym_line_comment, sym_block_comment, - [86250] = 5, + [86301] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(6310), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6294), 1, + anon_sym_AMP_AMP, + ACTIONS(6296), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, STATE(2946), 2, sym_line_comment, sym_block_comment, - [86268] = 6, + [86319] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(6312), 1, - anon_sym_SEMI, - ACTIONS(6314), 1, - anon_sym_EQ, + ACTIONS(969), 1, + anon_sym_RPAREN, + ACTIONS(6298), 1, + anon_sym_COMMA, + STATE(2705), 1, + aux_sym_arguments_repeat1, STATE(2947), 2, sym_line_comment, sym_block_comment, - [86288] = 6, + [86339] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1485), 1, - anon_sym_RPAREN, - ACTIONS(5509), 1, + ACTIONS(5465), 1, anon_sym_COMMA, - STATE(2987), 1, - aux_sym_parameters_repeat1, + ACTIONS(6300), 1, + anon_sym_PIPE, + STATE(2958), 1, + aux_sym_closure_parameters_repeat1, STATE(2948), 2, sym_line_comment, sym_block_comment, - [86308] = 6, + [86359] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4970), 1, - anon_sym_RBRACE, - ACTIONS(6316), 1, + ACTIONS(5461), 1, + anon_sym_COLON, + ACTIONS(6302), 2, + anon_sym_PIPE, anon_sym_COMMA, - STATE(2822), 1, - aux_sym_enum_variant_list_repeat2, STATE(2949), 2, sym_line_comment, sym_block_comment, - [86328] = 6, + [86377] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4970), 1, - anon_sym_RBRACE, - ACTIONS(6316), 1, - anon_sym_COMMA, - STATE(2832), 1, - aux_sym_enum_variant_list_repeat2, STATE(2950), 2, sym_line_comment, sym_block_comment, - [86348] = 4, + ACTIONS(4865), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86393] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -180402,902 +180937,880 @@ static const uint16_t ts_small_parse_table[] = { STATE(2951), 2, sym_line_comment, sym_block_comment, - ACTIONS(6318), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86364] = 6, + ACTIONS(4881), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86409] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1485), 1, - anon_sym_RPAREN, - ACTIONS(5509), 1, - anon_sym_COMMA, - STATE(3030), 1, - aux_sym_parameters_repeat1, STATE(2952), 2, sym_line_comment, sym_block_comment, - [86384] = 6, + ACTIONS(4791), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86425] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1027), 1, - anon_sym_RPAREN, - ACTIONS(6320), 1, - anon_sym_COMMA, - STATE(2643), 1, - aux_sym_arguments_repeat1, STATE(2953), 2, sym_line_comment, sym_block_comment, - [86404] = 6, + ACTIONS(4797), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86441] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6322), 1, - anon_sym_RBRACE, - ACTIONS(6324), 1, - anon_sym_COMMA, - STATE(2949), 1, - aux_sym_enum_variant_list_repeat2, STATE(2954), 2, sym_line_comment, sym_block_comment, - [86424] = 6, + ACTIONS(4819), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86457] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(6326), 1, - anon_sym_SEMI, - STATE(575), 1, - sym_declaration_list, STATE(2955), 2, sym_line_comment, sym_block_comment, - [86444] = 6, + ACTIONS(4859), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86473] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4964), 1, - anon_sym_RBRACE, - ACTIONS(6328), 1, - anon_sym_COMMA, - STATE(2822), 1, - aux_sym_enum_variant_list_repeat2, STATE(2956), 2, sym_line_comment, sym_block_comment, - [86464] = 5, + ACTIONS(4889), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86489] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5565), 1, - anon_sym_COLON, - ACTIONS(6330), 2, - anon_sym_PIPE, - anon_sym_COMMA, STATE(2957), 2, sym_line_comment, sym_block_comment, - [86482] = 6, + ACTIONS(4855), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86505] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(6332), 1, - anon_sym_SEMI, - STATE(577), 1, - sym_declaration_list, - STATE(2958), 2, + ACTIONS(6302), 1, + anon_sym_PIPE, + ACTIONS(6304), 1, + anon_sym_COMMA, + STATE(2958), 3, sym_line_comment, sym_block_comment, - [86502] = 6, + aux_sym_closure_parameters_repeat1, + [86523] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4964), 1, - anon_sym_RBRACE, - ACTIONS(6328), 1, - anon_sym_COMMA, - STATE(3035), 1, - aux_sym_enum_variant_list_repeat2, STATE(2959), 2, sym_line_comment, sym_block_comment, - [86522] = 5, + ACTIONS(4863), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86539] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6330), 1, - anon_sym_PIPE, - ACTIONS(6334), 1, - anon_sym_COMMA, - STATE(2960), 3, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(6307), 1, + anon_sym_for, + STATE(1945), 1, + sym_type_arguments, + STATE(2960), 2, sym_line_comment, sym_block_comment, - aux_sym_closure_parameters_repeat1, - [86540] = 6, + [86559] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(6337), 1, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(6309), 1, anon_sym_SEMI, - STATE(3565), 1, - sym_where_clause, + STATE(548), 1, + sym_declaration_list, STATE(2961), 2, sym_line_comment, sym_block_comment, - [86560] = 5, + [86579] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4571), 1, - anon_sym_COLON_COLON, - ACTIONS(5281), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2962), 2, sym_line_comment, sym_block_comment, - [86578] = 5, + ACTIONS(4887), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86595] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6339), 1, - anon_sym_RBRACE, - ACTIONS(6341), 1, - anon_sym_COMMA, - STATE(2963), 3, + ACTIONS(6311), 1, + sym_identifier, + ACTIONS(6313), 1, + anon_sym_ref, + ACTIONS(6315), 1, + sym_mutable_specifier, + STATE(2963), 2, sym_line_comment, sym_block_comment, - aux_sym_field_initializer_list_repeat1, - [86596] = 6, + [86615] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4565), 1, - anon_sym_COLON_COLON, - ACTIONS(4607), 1, - anon_sym_COLON, - STATE(2690), 1, - sym_trait_bounds, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(6317), 1, + anon_sym_SEMI, + STATE(554), 1, + sym_declaration_list, STATE(2964), 2, sym_line_comment, sym_block_comment, - [86616] = 6, + [86635] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6344), 1, - anon_sym_LPAREN, - ACTIONS(6346), 1, - anon_sym_LBRACK, - ACTIONS(6348), 1, - anon_sym_LBRACE, + ACTIONS(6319), 1, + anon_sym_RBRACE, + ACTIONS(6321), 1, + anon_sym_COMMA, + STATE(2890), 1, + aux_sym_struct_pattern_repeat1, STATE(2965), 2, sym_line_comment, sym_block_comment, - [86636] = 6, + [86655] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6350), 1, - anon_sym_RBRACE, - ACTIONS(6352), 1, + ACTIONS(3168), 1, + anon_sym_RPAREN, + ACTIONS(6323), 1, anon_sym_COMMA, - STATE(2876), 1, - aux_sym_struct_pattern_repeat1, + STATE(2892), 1, + aux_sym_tuple_type_repeat1, STATE(2966), 2, sym_line_comment, sym_block_comment, - [86656] = 5, + [86675] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(6354), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(6325), 1, + anon_sym_SEMI, + STATE(649), 1, + sym_declaration_list, STATE(2967), 2, sym_line_comment, sym_block_comment, - [86674] = 4, + [86695] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(6327), 1, + anon_sym_SEMI, + ACTIONS(6329), 1, + anon_sym_RBRACK, STATE(2968), 2, sym_line_comment, sym_block_comment, - ACTIONS(6356), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86690] = 5, + [86715] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5639), 1, - anon_sym_EQ, - ACTIONS(5847), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3348), 1, + anon_sym_LBRACE, + ACTIONS(6331), 1, + anon_sym_COLON_COLON, + STATE(1407), 1, + sym_field_initializer_list, STATE(2969), 2, sym_line_comment, sym_block_comment, - [86708] = 6, + [86735] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, - anon_sym_GT, - ACTIONS(6358), 1, - anon_sym_COMMA, - STATE(2976), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6333), 1, + anon_sym_LPAREN, + ACTIONS(6335), 1, + anon_sym_LBRACK, + ACTIONS(6337), 1, + anon_sym_LBRACE, STATE(2970), 2, sym_line_comment, sym_block_comment, - [86728] = 6, + [86755] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4659), 1, - anon_sym_GT, - ACTIONS(6360), 1, - anon_sym_COMMA, - STATE(2976), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(6339), 1, + anon_sym_LPAREN, + ACTIONS(6341), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, + anon_sym_LBRACE, STATE(2971), 2, sym_line_comment, sym_block_comment, - [86748] = 6, + [86775] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, + ACTIONS(4929), 1, anon_sym_LBRACE, - ACTIONS(6362), 1, + ACTIONS(6345), 1, anon_sym_SEMI, - STATE(1257), 1, + STATE(556), 1, sym_declaration_list, STATE(2972), 2, sym_line_comment, sym_block_comment, - [86768] = 4, + [86795] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2973), 2, + ACTIONS(6347), 1, + anon_sym_RPAREN, + ACTIONS(6349), 1, + anon_sym_COMMA, + STATE(2973), 3, sym_line_comment, sym_block_comment, - ACTIONS(6364), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [86784] = 6, + aux_sym_ordered_field_declaration_list_repeat1, + [86813] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(6352), 1, anon_sym_LBRACE, - ACTIONS(6366), 1, - anon_sym_SEMI, - STATE(499), 1, - sym_declaration_list, + STATE(1945), 1, + sym_type_arguments, STATE(2974), 2, sym_line_comment, sym_block_comment, - [86804] = 4, + [86833] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(6354), 1, + anon_sym_SEMI, + STATE(674), 1, + sym_declaration_list, STATE(2975), 2, sym_line_comment, sym_block_comment, - ACTIONS(4785), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86820] = 5, + [86853] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5847), 1, + ACTIONS(1619), 1, anon_sym_GT, - ACTIONS(6368), 1, + ACTIONS(6356), 1, anon_sym_COMMA, - STATE(2976), 3, + STATE(2978), 1, + aux_sym_type_arguments_repeat1, + STATE(2976), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [86838] = 6, + [86873] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3190), 1, - anon_sym_RPAREN, - ACTIONS(6371), 1, - anon_sym_COMMA, - STATE(2884), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4952), 1, + anon_sym_LBRACE, + ACTIONS(6358), 1, + anon_sym_SEMI, + STATE(1390), 1, + sym_declaration_list, STATE(2977), 2, sym_line_comment, sym_block_comment, - [86858] = 5, + [86893] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(6373), 2, + ACTIONS(5528), 1, anon_sym_GT, + ACTIONS(6360), 1, anon_sym_COMMA, - STATE(2978), 2, + STATE(2978), 3, sym_line_comment, sym_block_comment, - [86876] = 6, + aux_sym_type_arguments_repeat1, + [86911] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(6375), 1, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(6363), 1, anon_sym_SEMI, - STATE(1263), 1, - sym_declaration_list, + ACTIONS(6365), 1, + anon_sym_EQ, STATE(2979), 2, sym_line_comment, sym_block_comment, - [86896] = 5, + [86931] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(5879), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2980), 2, sym_line_comment, sym_block_comment, - [86914] = 4, + ACTIONS(6367), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86947] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6371), 1, + anon_sym_COLON, + ACTIONS(6369), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2981), 2, sym_line_comment, sym_block_comment, - ACTIONS(4787), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86930] = 6, + [86965] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5289), 1, - anon_sym_PLUS, - ACTIONS(6377), 1, - anon_sym_GT, - ACTIONS(6379), 1, - anon_sym_as, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(6373), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2982), 2, sym_line_comment, sym_block_comment, - [86950] = 6, + [86983] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4663), 1, - anon_sym_GT, - ACTIONS(6381), 1, + ACTIONS(4372), 1, + anon_sym_RBRACE, + ACTIONS(6375), 1, anon_sym_COMMA, - STATE(2976), 1, - aux_sym_type_parameters_repeat1, + STATE(2914), 1, + aux_sym_use_list_repeat1, STATE(2983), 2, sym_line_comment, sym_block_comment, - [86970] = 6, + [87003] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(6377), 2, anon_sym_GT, - ACTIONS(6383), 1, anon_sym_COMMA, - STATE(2976), 1, - aux_sym_type_parameters_repeat1, STATE(2984), 2, sym_line_comment, sym_block_comment, - [86990] = 6, + [87021] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(6385), 1, - anon_sym_SEMI, - ACTIONS(6387), 1, - anon_sym_EQ, - STATE(2985), 2, + ACTIONS(6379), 1, + anon_sym_RBRACE, + ACTIONS(6381), 1, + anon_sym_COMMA, + STATE(2985), 3, sym_line_comment, sym_block_comment, - [87010] = 5, + aux_sym_struct_pattern_repeat1, + [87039] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6389), 1, - sym_identifier, - ACTIONS(6391), 2, - anon_sym_default, - anon_sym_union, STATE(2986), 2, sym_line_comment, sym_block_comment, - [87028] = 5, + ACTIONS(6384), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87055] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5879), 1, - anon_sym_RPAREN, - ACTIONS(6393), 1, - anon_sym_COMMA, - STATE(2987), 3, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(6386), 1, + anon_sym_SEMI, + STATE(641), 1, + sym_declaration_list, + STATE(2987), 2, sym_line_comment, sym_block_comment, - aux_sym_parameters_repeat1, - [87046] = 6, + [87075] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(6396), 1, - anon_sym_SEMI, - STATE(590), 1, - sym_declaration_list, STATE(2988), 2, sym_line_comment, sym_block_comment, - [87066] = 6, + ACTIONS(6388), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87091] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4915), 1, - anon_sym_for, - STATE(1939), 1, - sym_type_arguments, + ACTIONS(4609), 1, + anon_sym_COLON_COLON, + ACTIONS(5386), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2989), 2, sym_line_comment, sym_block_comment, - [87086] = 6, + [87109] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4990), 1, - anon_sym_RBRACE, - ACTIONS(6398), 1, - anon_sym_COMMA, - STATE(2816), 1, - aux_sym_field_declaration_list_repeat1, STATE(2990), 2, sym_line_comment, sym_block_comment, - [87106] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + ACTIONS(6390), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87125] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6400), 1, - anon_sym_move, - STATE(217), 1, - sym_closure_parameters, + ACTIONS(6392), 1, + sym_identifier, + ACTIONS(6394), 1, + anon_sym_await, + ACTIONS(6396), 1, + sym_integer_literal, STATE(2991), 2, sym_line_comment, sym_block_comment, - [87126] = 6, + [87145] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4990), 1, - anon_sym_RBRACE, - ACTIONS(6398), 1, - anon_sym_COMMA, - STATE(2753), 1, - aux_sym_field_declaration_list_repeat1, STATE(2992), 2, sym_line_comment, sym_block_comment, - [87146] = 4, + ACTIONS(6398), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87161] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5650), 1, + anon_sym_EQ, + ACTIONS(5820), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2993), 2, sym_line_comment, sym_block_comment, - ACTIONS(6402), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [87162] = 6, + [87179] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(6404), 1, - anon_sym_SEMI, - STATE(3451), 1, - sym_where_clause, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(5850), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2994), 2, sym_line_comment, sym_block_comment, - [87182] = 6, + [87197] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(6406), 1, - anon_sym_SEMI, - STATE(1276), 1, - sym_declaration_list, STATE(2995), 2, sym_line_comment, sym_block_comment, - [87202] = 6, + ACTIONS(6400), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87213] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(6408), 1, - anon_sym_SEMI, - STATE(501), 1, - sym_declaration_list, - STATE(2996), 2, + ACTIONS(5850), 1, + anon_sym_RPAREN, + ACTIONS(6402), 1, + anon_sym_COMMA, + STATE(2996), 3, sym_line_comment, sym_block_comment, - [87222] = 6, + aux_sym_parameters_repeat1, + [87231] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(6410), 1, - anon_sym_SEMI, - STATE(600), 1, - sym_declaration_list, + ACTIONS(5544), 1, + anon_sym_RPAREN, + ACTIONS(5546), 1, + anon_sym_COMMA, + STATE(2901), 1, + aux_sym_parameters_repeat1, STATE(2997), 2, sym_line_comment, sym_block_comment, - [87242] = 4, + [87251] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1017), 1, + anon_sym_RBRACK, + ACTIONS(4046), 1, + anon_sym_COMMA, + STATE(2705), 1, + aux_sym_arguments_repeat1, STATE(2998), 2, sym_line_comment, sym_block_comment, - ACTIONS(4793), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87258] = 6, + [87271] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5307), 1, - anon_sym_GT, - ACTIONS(5309), 1, + ACTIONS(1505), 1, + anon_sym_RPAREN, + ACTIONS(6405), 1, anon_sym_COMMA, - STATE(2801), 1, - aux_sym_type_parameters_repeat1, + STATE(2996), 1, + aux_sym_parameters_repeat1, STATE(2999), 2, sym_line_comment, sym_block_comment, - [87278] = 4, + [87291] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5305), 1, + anon_sym_PLUS, + ACTIONS(6407), 1, + anon_sym_GT, + ACTIONS(6409), 1, + anon_sym_as, STATE(3000), 2, sym_line_comment, sym_block_comment, - ACTIONS(4799), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87294] = 6, + [87311] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(6412), 1, - anon_sym_SEMI, - STATE(1103), 1, - sym_declaration_list, - STATE(3001), 2, + ACTIONS(5820), 1, + anon_sym_GT, + ACTIONS(6411), 1, + anon_sym_COMMA, + STATE(3001), 3, sym_line_comment, sym_block_comment, - [87314] = 4, + aux_sym_type_parameters_repeat1, + [87329] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(2994), 1, + anon_sym_SQUOTE, + ACTIONS(6414), 1, + anon_sym_GT, + STATE(3257), 1, + sym_lifetime, STATE(3002), 2, sym_line_comment, sym_block_comment, - ACTIONS(6414), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [87330] = 6, + [87349] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, ACTIONS(6416), 1, - anon_sym_SEMI, + anon_sym_GT, ACTIONS(6418), 1, - anon_sym_EQ, - STATE(3003), 2, + anon_sym_COMMA, + STATE(3003), 3, sym_line_comment, sym_block_comment, - [87350] = 4, + aux_sym_for_lifetimes_repeat1, + [87367] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5830), 1, + anon_sym_RPAREN, + ACTIONS(5832), 1, + anon_sym_COMMA, + STATE(2760), 1, + aux_sym_tuple_pattern_repeat1, STATE(3004), 2, sym_line_comment, sym_block_comment, - ACTIONS(963), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [87366] = 6, + [87387] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4902), 1, - anon_sym_where, - ACTIONS(6420), 1, - anon_sym_SEMI, - STATE(3503), 1, - sym_where_clause, + ACTIONS(3084), 1, + anon_sym_PLUS, + ACTIONS(6421), 1, + sym_mutable_specifier, + ACTIONS(6423), 1, + sym_self, STATE(3005), 2, sym_line_comment, sym_block_comment, - [87386] = 6, + [87407] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6422), 1, - sym_identifier, - ACTIONS(6424), 1, - anon_sym_ref, - ACTIONS(6426), 1, - sym_mutable_specifier, + anon_sym_SLASH_STAR, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(4992), 1, + anon_sym_COLON_COLON, + STATE(1944), 1, + sym_type_arguments, STATE(3006), 2, sym_line_comment, sym_block_comment, - [87406] = 6, + [87427] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1497), 1, - anon_sym_RPAREN, - ACTIONS(6428), 1, + ACTIONS(6425), 1, + anon_sym_GT, + ACTIONS(6427), 1, anon_sym_COMMA, - STATE(2987), 1, - aux_sym_parameters_repeat1, + STATE(2909), 1, + aux_sym_for_lifetimes_repeat1, STATE(3007), 2, sym_line_comment, sym_block_comment, - [87426] = 4, + [87447] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3348), 1, + anon_sym_LBRACE, + ACTIONS(6429), 1, + anon_sym_COLON_COLON, + STATE(1407), 1, + sym_field_initializer_list, STATE(3008), 2, sym_line_comment, sym_block_comment, - ACTIONS(4805), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87442] = 6, + [87467] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6430), 1, - sym_identifier, - ACTIONS(6432), 1, - anon_sym_await, - ACTIONS(6434), 1, - sym_integer_literal, STATE(3009), 2, sym_line_comment, sym_block_comment, - [87462] = 6, + ACTIONS(6431), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87483] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5599), 1, - anon_sym_RPAREN, - ACTIONS(5601), 1, + ACTIONS(6433), 1, + anon_sym_RBRACE, + ACTIONS(6435), 1, anon_sym_COMMA, - STATE(2898), 1, - aux_sym_parameters_repeat1, - STATE(3010), 2, + STATE(3010), 3, sym_line_comment, sym_block_comment, - [87482] = 4, + aux_sym_enum_variant_list_repeat2, + [87501] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6440), 1, + anon_sym_EQ, + ACTIONS(6438), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3011), 2, sym_line_comment, sym_block_comment, - ACTIONS(4823), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87498] = 6, + [87519] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1003), 1, - anon_sym_RPAREN, - ACTIONS(4148), 1, - anon_sym_COMMA, - STATE(2643), 1, - aux_sym_arguments_repeat1, STATE(3012), 2, sym_line_comment, sym_block_comment, - [87518] = 6, + ACTIONS(4799), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87535] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3148), 1, - anon_sym_PLUS, - ACTIONS(6436), 1, - sym_mutable_specifier, - ACTIONS(6438), 1, - sym_self, STATE(3013), 2, sym_line_comment, sym_block_comment, - [87538] = 6, + ACTIONS(4857), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87551] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, - anon_sym_RPAREN, - ACTIONS(6440), 1, + ACTIONS(4994), 1, + anon_sym_RBRACE, + ACTIONS(6442), 1, anon_sym_COMMA, - STATE(2643), 1, - aux_sym_arguments_repeat1, + STATE(3010), 1, + aux_sym_enum_variant_list_repeat2, STATE(3014), 2, sym_line_comment, sym_block_comment, - [87558] = 6, + [87571] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(6442), 1, - anon_sym_SEMI, - ACTIONS(6444), 1, - anon_sym_EQ, STATE(3015), 2, sym_line_comment, sym_block_comment, - [87578] = 6, + ACTIONS(4867), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87587] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6446), 1, - anon_sym_EQ_GT, - ACTIONS(6448), 1, - anon_sym_PIPE, - ACTIONS(6450), 1, - anon_sym_if, STATE(3016), 2, sym_line_comment, sym_block_comment, - [87598] = 6, + ACTIONS(4873), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87603] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6452), 1, - anon_sym_GT, - ACTIONS(6454), 1, - anon_sym_COMMA, - STATE(2913), 1, - aux_sym_for_lifetimes_repeat1, STATE(3017), 2, sym_line_comment, sym_block_comment, - [87618] = 4, + ACTIONS(4835), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87619] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -181305,11 +181818,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(3018), 2, sym_line_comment, sym_block_comment, - ACTIONS(4789), 3, + ACTIONS(4895), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87634] = 4, + [87635] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -181317,184 +181830,187 @@ static const uint16_t ts_small_parse_table[] = { STATE(3019), 2, sym_line_comment, sym_block_comment, - ACTIONS(4791), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87650] = 4, + ACTIONS(6444), 3, + sym_string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [87651] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(6446), 1, + anon_sym_SEMI, + ACTIONS(6448), 1, + anon_sym_RBRACK, STATE(3020), 2, sym_line_comment, sym_block_comment, - ACTIONS(4795), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87666] = 6, + [87671] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, + ACTIONS(5026), 1, anon_sym_PLUS, - ACTIONS(6456), 1, - anon_sym_SEMI, - ACTIONS(6458), 1, - anon_sym_RBRACK, + ACTIONS(6450), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3021), 2, sym_line_comment, sym_block_comment, - [87686] = 6, + [87689] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1619), 1, - anon_sym_GT, - ACTIONS(6460), 1, - anon_sym_COMMA, - STATE(2900), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(6452), 1, + anon_sym_LPAREN, + ACTIONS(6454), 1, + anon_sym_LBRACK, + ACTIONS(6456), 1, + anon_sym_LBRACE, STATE(3022), 2, sym_line_comment, sym_block_comment, - [87706] = 6, + [87709] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6462), 1, - anon_sym_RPAREN, - ACTIONS(6464), 1, - anon_sym_COMMA, - STATE(2806), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(6458), 1, + anon_sym_SEMI, + STATE(492), 1, + sym_declaration_list, STATE(3023), 2, sym_line_comment, sym_block_comment, - [87726] = 6, + [87729] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, - anon_sym_RBRACK, - ACTIONS(4078), 1, + ACTIONS(4663), 1, + anon_sym_GT, + ACTIONS(6460), 1, anon_sym_COMMA, - STATE(2643), 1, - aux_sym_arguments_repeat1, + STATE(3001), 1, + aux_sym_type_parameters_repeat1, STATE(3024), 2, sym_line_comment, sym_block_comment, - [87746] = 6, + [87749] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, + ACTIONS(4929), 1, anon_sym_LBRACE, - ACTIONS(6466), 1, + ACTIONS(6462), 1, anon_sym_SEMI, - STATE(611), 1, + STATE(494), 1, sym_declaration_list, STATE(3025), 2, sym_line_comment, sym_block_comment, - [87766] = 4, + [87769] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(6464), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3026), 2, sym_line_comment, sym_block_comment, - ACTIONS(6468), 3, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - [87782] = 6, + [87787] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4892), 1, - anon_sym_RBRACE, - ACTIONS(6470), 1, - anon_sym_COMMA, - STATE(2816), 1, - aux_sym_field_declaration_list_repeat1, STATE(3027), 2, sym_line_comment, sym_block_comment, - [87802] = 5, + ACTIONS(6466), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [87803] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6472), 1, - sym_identifier, - ACTIONS(6474), 2, - anon_sym_default, - anon_sym_union, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(6468), 1, + anon_sym_COLON_COLON, + STATE(1944), 1, + sym_type_arguments, STATE(3028), 2, sym_line_comment, sym_block_comment, - [87820] = 6, + [87823] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4892), 1, - anon_sym_RBRACE, - ACTIONS(6470), 1, + ACTIONS(5650), 1, + anon_sym_EQ, + ACTIONS(5905), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2825), 1, - aux_sym_field_declaration_list_repeat1, STATE(3029), 2, sym_line_comment, sym_block_comment, - [87840] = 6, + [87841] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1493), 1, - anon_sym_RPAREN, - ACTIONS(6476), 1, + ACTIONS(4691), 1, + anon_sym_GT, + ACTIONS(6470), 1, anon_sym_COMMA, - STATE(2987), 1, - aux_sym_parameters_repeat1, + STATE(3001), 1, + aux_sym_type_parameters_repeat1, STATE(3030), 2, sym_line_comment, sym_block_comment, - [87860] = 4, + [87861] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(6472), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3031), 2, sym_line_comment, sym_block_comment, - ACTIONS(4478), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87876] = 4, + [87879] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6474), 1, + anon_sym_LPAREN, + ACTIONS(6476), 1, + anon_sym_LBRACK, + ACTIONS(6478), 1, + anon_sym_LBRACE, STATE(3032), 2, sym_line_comment, sym_block_comment, - ACTIONS(4837), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87892] = 4, + [87899] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -181502,12671 +182018,12814 @@ static const uint16_t ts_small_parse_table[] = { STATE(3033), 2, sym_line_comment, sym_block_comment, - ACTIONS(4797), 3, + ACTIONS(4843), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87908] = 6, + [87915] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(4986), 1, - anon_sym_for, - STATE(1939), 1, - sym_type_arguments, + ACTIONS(6480), 1, + sym_identifier, + ACTIONS(6482), 2, + anon_sym_default, + anon_sym_union, STATE(3034), 2, sym_line_comment, sym_block_comment, - [87928] = 6, + [87933] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4890), 1, - anon_sym_RBRACE, - ACTIONS(6478), 1, - anon_sym_COMMA, - STATE(2822), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(6484), 1, + anon_sym_SEMI, + ACTIONS(6486), 1, + anon_sym_EQ, STATE(3035), 2, sym_line_comment, sym_block_comment, - [87948] = 4, + [87953] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(955), 1, + anon_sym_RBRACK, + ACTIONS(4050), 1, + anon_sym_COMMA, + STATE(2705), 1, + aux_sym_arguments_repeat1, STATE(3036), 2, sym_line_comment, sym_block_comment, - ACTIONS(5394), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87964] = 6, + [87973] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4900), 1, - anon_sym_LT, - ACTIONS(6480), 1, - anon_sym_EQ, - STATE(3589), 1, - sym_type_parameters, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(6488), 1, + anon_sym_SEMI, + STATE(709), 1, + sym_declaration_list, STATE(3037), 2, sym_line_comment, sym_block_comment, - [87984] = 6, + [87993] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6482), 1, - sym_identifier, - ACTIONS(6484), 1, - anon_sym_await, - ACTIONS(6486), 1, - sym_integer_literal, STATE(3038), 2, sym_line_comment, sym_block_comment, - [88004] = 6, + ACTIONS(6490), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88009] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, + ACTIONS(4486), 1, anon_sym_LT2, - ACTIONS(6488), 1, + ACTIONS(4946), 1, anon_sym_for, - STATE(1939), 1, + STATE(1945), 1, sym_type_arguments, STATE(3039), 2, sym_line_comment, sym_block_comment, - [88024] = 6, + [88029] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(6490), 1, - anon_sym_SEMI, - STATE(1311), 1, - sym_declaration_list, + ACTIONS(5490), 1, + anon_sym_GT, + ACTIONS(5492), 1, + anon_sym_COMMA, + STATE(2778), 1, + aux_sym_type_parameters_repeat1, STATE(3040), 2, sym_line_comment, sym_block_comment, - [88044] = 6, + [88049] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(6492), 1, - anon_sym_for, - STATE(1939), 1, - sym_type_arguments, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + ACTIONS(4619), 1, + anon_sym_COLON, + STATE(2650), 1, + sym_trait_bounds, STATE(3041), 2, sym_line_comment, sym_block_comment, - [88064] = 6, + [88069] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - ACTIONS(6494), 1, + ACTIONS(6492), 1, anon_sym_SEMI, - STATE(1313), 1, + STATE(1127), 1, sym_declaration_list, STATE(3042), 2, sym_line_comment, sym_block_comment, - [88084] = 6, + [88089] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_LT2, - ACTIONS(6496), 1, - anon_sym_for, - STATE(1939), 1, - sym_type_arguments, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(6494), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3043), 2, sym_line_comment, sym_block_comment, - [88104] = 4, + [88107] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4960), 1, + anon_sym_LT, + ACTIONS(6496), 1, + anon_sym_EQ, + STATE(3598), 1, + sym_type_parameters, STATE(3044), 2, sym_line_comment, sym_block_comment, - ACTIONS(4687), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88120] = 6, + [88127] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4893), 1, + anon_sym_RBRACE, ACTIONS(6498), 1, - sym_identifier, - ACTIONS(6500), 1, - anon_sym_ref, - ACTIONS(6502), 1, - sym_mutable_specifier, + anon_sym_COMMA, + STATE(2918), 1, + aux_sym_field_initializer_list_repeat1, STATE(3045), 2, sym_line_comment, sym_block_comment, - [88140] = 6, + [88147] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4697), 1, - anon_sym_COLON_COLON, - ACTIONS(4815), 1, - anon_sym_BANG, - ACTIONS(6504), 1, - sym_identifier, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(6500), 1, + anon_sym_for, + STATE(1945), 1, + sym_type_arguments, STATE(3046), 2, sym_line_comment, sym_block_comment, - [88160] = 6, + [88167] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - ACTIONS(6506), 1, - anon_sym_SEMI, - STATE(736), 1, - sym_declaration_list, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(6502), 1, + anon_sym_for, + STATE(1945), 1, + sym_type_arguments, STATE(3047), 2, sym_line_comment, sym_block_comment, - [88180] = 6, + [88187] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, + ACTIONS(4929), 1, anon_sym_LBRACE, - ACTIONS(6508), 1, + ACTIONS(6504), 1, anon_sym_SEMI, - STATE(684), 1, + STATE(500), 1, sym_declaration_list, STATE(3048), 2, sym_line_comment, sym_block_comment, - [88200] = 5, + [88207] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6510), 1, + ACTIONS(4962), 1, + anon_sym_where, + ACTIONS(6506), 1, anon_sym_SEMI, - ACTIONS(6512), 1, - anon_sym_RPAREN, + STATE(3460), 1, + sym_where_clause, STATE(3049), 2, sym_line_comment, sym_block_comment, - [88217] = 5, + [88227] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(1387), 1, - sym_declaration_list, + ACTIONS(4486), 1, + anon_sym_LT2, + ACTIONS(6508), 1, + anon_sym_for, + STATE(1945), 1, + sym_type_arguments, STATE(3050), 2, sym_line_comment, sym_block_comment, - [88234] = 4, + [88247] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6514), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4929), 1, + anon_sym_LBRACE, + ACTIONS(6510), 1, + anon_sym_SEMI, + STATE(502), 1, + sym_declaration_list, STATE(3051), 2, sym_line_comment, sym_block_comment, - [88249] = 5, + [88267] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6510), 1, - anon_sym_SEMI, + ACTIONS(6512), 1, + sym_identifier, + ACTIONS(6514), 1, + anon_sym_ref, ACTIONS(6516), 1, - anon_sym_RBRACE, + sym_mutable_specifier, STATE(3052), 2, sym_line_comment, sym_block_comment, - [88266] = 5, + [88287] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - STATE(720), 1, - sym_declaration_list, + ACTIONS(6520), 1, + anon_sym_COLON, + ACTIONS(6518), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3053), 2, sym_line_comment, sym_block_comment, - [88283] = 5, + [88305] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5148), 1, - anon_sym_RPAREN, - ACTIONS(6510), 1, - anon_sym_SEMI, + ACTIONS(1623), 1, + anon_sym_GT, + ACTIONS(6239), 1, + anon_sym_COMMA, + STATE(2978), 1, + aux_sym_type_arguments_repeat1, STATE(3054), 2, sym_line_comment, sym_block_comment, - [88300] = 5, + [88325] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5422), 1, - sym_super, - ACTIONS(6518), 1, + ACTIONS(5750), 1, sym_identifier, + ACTIONS(5756), 1, + sym_super, STATE(3055), 2, sym_line_comment, sym_block_comment, - [88317] = 5, + [88342] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5148), 1, - anon_sym_RBRACK, - ACTIONS(6510), 1, - anon_sym_SEMI, + ACTIONS(4952), 1, + anon_sym_LBRACE, + STATE(1368), 1, + sym_declaration_list, STATE(3056), 2, sym_line_comment, sym_block_comment, - [88334] = 5, + [88359] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6520), 1, - sym_identifier, ACTIONS(6522), 1, - sym_super, + anon_sym_SEMI, + ACTIONS(6524), 1, + anon_sym_as, STATE(3057), 2, sym_line_comment, sym_block_comment, - [88351] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [88376] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(221), 1, - sym_closure_parameters, + ACTIONS(5196), 1, + anon_sym_RBRACK, + ACTIONS(6526), 1, + anon_sym_SEMI, STATE(3058), 2, sym_line_comment, sym_block_comment, - [88368] = 5, + [88393] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - STATE(656), 1, - sym_declaration_list, + ACTIONS(6528), 1, + sym_identifier, + ACTIONS(6530), 1, + sym_super, STATE(3059), 2, sym_line_comment, sym_block_comment, - [88385] = 4, + [88410] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5680), 2, - sym_identifier, - sym_super, + ACTIONS(4998), 1, + anon_sym_LBRACE, + STATE(661), 1, + sym_field_declaration_list, STATE(3060), 2, sym_line_comment, sym_block_comment, - [88400] = 5, + [88427] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6524), 1, - sym_identifier, - ACTIONS(6526), 1, + ACTIONS(5613), 1, sym_super, + ACTIONS(6532), 1, + sym_identifier, STATE(3061), 2, sym_line_comment, sym_block_comment, - [88417] = 5, + [88444] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5680), 1, - sym_super, - ACTIONS(6528), 1, + ACTIONS(6534), 1, sym_identifier, + ACTIONS(6536), 1, + sym_super, STATE(3062), 2, sym_line_comment, sym_block_comment, - [88434] = 5, + [88461] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5202), 1, - anon_sym_RBRACE, - ACTIONS(6510), 1, - anon_sym_SEMI, + ACTIONS(4929), 1, + anon_sym_LBRACE, + STATE(518), 1, + sym_declaration_list, STATE(3063), 2, sym_line_comment, sym_block_comment, - [88451] = 4, + [88478] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6530), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6538), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3064), 2, sym_line_comment, sym_block_comment, - [88466] = 5, + [88493] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3966), 1, - anon_sym_LPAREN, - STATE(1580), 1, - sym_parameters, + STATE(221), 1, + sym_closure_parameters, STATE(3065), 2, sym_line_comment, sym_block_comment, - [88483] = 5, + [88510] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5204), 1, - anon_sym_RPAREN, - ACTIONS(6510), 1, + ACTIONS(5228), 1, + anon_sym_RBRACE, + ACTIONS(6526), 1, anon_sym_SEMI, STATE(3066), 2, sym_line_comment, sym_block_comment, - [88500] = 5, + [88527] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5422), 1, - sym_super, - ACTIONS(6532), 1, - sym_identifier, + ACTIONS(4480), 1, + anon_sym_LPAREN, + STATE(1970), 1, + sym_parameters, STATE(3067), 2, sym_line_comment, sym_block_comment, - [88517] = 4, + [88544] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5281), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6540), 1, + sym_identifier, + ACTIONS(6542), 1, + sym_super, STATE(3068), 2, sym_line_comment, sym_block_comment, - [88532] = 5, + [88561] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5204), 1, - anon_sym_RBRACK, - ACTIONS(6510), 1, - anon_sym_SEMI, + ACTIONS(6544), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3069), 2, sym_line_comment, sym_block_comment, - [88549] = 4, + [88576] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6534), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(5640), 1, + sym_super, + ACTIONS(6546), 1, + sym_identifier, STATE(3070), 2, sym_line_comment, sym_block_comment, - [88564] = 4, + [88593] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5992), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + ACTIONS(6196), 1, + anon_sym_for, STATE(3071), 2, sym_line_comment, sym_block_comment, - [88579] = 5, + [88610] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6528), 1, - sym_identifier, - ACTIONS(6536), 1, - sym_super, + ACTIONS(6548), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3072), 2, sym_line_comment, sym_block_comment, - [88596] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [88625] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(223), 1, - sym_closure_parameters, + ACTIONS(6526), 1, + anon_sym_SEMI, + ACTIONS(6550), 1, + anon_sym_RBRACE, STATE(3073), 2, sym_line_comment, sym_block_comment, - [88613] = 4, + [88642] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6538), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3994), 1, + anon_sym_LPAREN, + STATE(1601), 1, + sym_parameters, STATE(3074), 2, sym_line_comment, sym_block_comment, - [88628] = 4, + [88659] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6540), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6526), 1, + anon_sym_SEMI, + ACTIONS(6552), 1, + anon_sym_RBRACE, STATE(3075), 2, sym_line_comment, sym_block_comment, - [88643] = 5, + [88676] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5250), 1, + ACTIONS(5270), 1, anon_sym_LBRACE, - STATE(680), 1, + STATE(681), 1, sym_enum_variant_list, STATE(3076), 2, sym_line_comment, sym_block_comment, - [88660] = 5, + [88693] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5735), 1, - sym_identifier, - ACTIONS(5737), 1, - sym_super, + ACTIONS(6554), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3077), 2, sym_line_comment, sym_block_comment, - [88677] = 4, + [88708] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5635), 2, - sym_identifier, - sym_super, + STATE(222), 1, + sym_closure_parameters, STATE(3078), 2, sym_line_comment, sym_block_comment, - [88692] = 5, + [88725] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6542), 1, - sym_identifier, - ACTIONS(6544), 1, - sym_super, + ACTIONS(4929), 1, + anon_sym_LBRACE, + STATE(662), 1, + sym_declaration_list, STATE(3079), 2, sym_line_comment, sym_block_comment, - [88709] = 5, + [88742] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6518), 1, + ACTIONS(5613), 2, sym_identifier, - ACTIONS(6546), 1, sym_super, STATE(3080), 2, sym_line_comment, sym_block_comment, - [88726] = 5, + [88757] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - sym_super, - ACTIONS(5739), 1, - sym_identifier, + ACTIONS(4644), 1, + anon_sym_BANG, + ACTIONS(4787), 1, + anon_sym_COLON_COLON, STATE(3081), 2, sym_line_comment, sym_block_comment, - [88743] = 5, + [88774] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6548), 1, + ACTIONS(5698), 1, sym_identifier, - ACTIONS(6550), 1, + ACTIONS(5700), 1, sym_super, STATE(3082), 2, sym_line_comment, sym_block_comment, - [88760] = 5, + [88791] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3268), 1, - anon_sym_LPAREN, - STATE(1072), 1, - sym_parameters, + ACTIONS(5694), 2, + sym_identifier, + sym_super, STATE(3083), 2, sym_line_comment, sym_block_comment, - [88777] = 4, + [88806] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6552), 2, + ACTIONS(6556), 1, sym_identifier, + ACTIONS(6558), 1, sym_super, STATE(3084), 2, sym_line_comment, sym_block_comment, - [88792] = 5, + [88823] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3268), 1, - anon_sym_LPAREN, - STATE(1058), 1, - sym_parameters, + ACTIONS(4998), 1, + anon_sym_LBRACE, + STATE(684), 1, + sym_field_declaration_list, STATE(3085), 2, sym_line_comment, sym_block_comment, - [88809] = 5, + [88840] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5016), 1, - anon_sym_COLON, - STATE(2690), 1, - sym_trait_bounds, + ACTIONS(4929), 1, + anon_sym_LBRACE, + STATE(663), 1, + sym_declaration_list, STATE(3086), 2, sym_line_comment, sym_block_comment, - [88826] = 5, + [88857] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6554), 1, - anon_sym_LT, - STATE(983), 1, - sym_type_parameters, + ACTIONS(6532), 1, + sym_identifier, + ACTIONS(6560), 1, + sym_super, STATE(3087), 2, sym_line_comment, sym_block_comment, - [88843] = 5, + [88874] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3966), 1, - anon_sym_LPAREN, - STATE(1634), 1, - sym_parameters, + ACTIONS(5252), 1, + sym_super, + ACTIONS(5702), 1, + sym_identifier, STATE(3088), 2, sym_line_comment, sym_block_comment, - [88860] = 5, + [88891] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4898), 1, - anon_sym_LBRACE, - STATE(707), 1, - sym_field_declaration_list, + ACTIONS(6530), 1, + sym_super, + ACTIONS(6562), 1, + sym_identifier, STATE(3089), 2, sym_line_comment, sym_block_comment, - [88877] = 5, + [88908] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5166), 1, - anon_sym_RBRACE, - ACTIONS(6510), 1, - anon_sym_SEMI, + ACTIONS(5168), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3090), 2, sym_line_comment, sym_block_comment, - [88894] = 4, + [88923] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6556), 2, - sym_identifier, + ACTIONS(5613), 1, sym_super, + ACTIONS(6564), 1, + sym_identifier, STATE(3091), 2, sym_line_comment, sym_block_comment, - [88909] = 5, + [88940] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5346), 1, - anon_sym_LBRACE, - STATE(1186), 1, - sym_enum_variant_list, + ACTIONS(5008), 1, + anon_sym_COLON, + STATE(2650), 1, + sym_trait_bounds, STATE(3092), 2, sym_line_comment, sym_block_comment, - [88926] = 4, + [88957] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6558), 2, - sym_identifier, - sym_metavariable, + ACTIONS(4644), 1, + anon_sym_BANG, + ACTIONS(4707), 1, + anon_sym_COLON_COLON, STATE(3093), 2, sym_line_comment, sym_block_comment, - [88941] = 5, + [88974] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - STATE(518), 1, - sym_declaration_list, + ACTIONS(6566), 1, + anon_sym_LT, + STATE(995), 1, + sym_type_parameters, STATE(3094), 2, sym_line_comment, sym_block_comment, - [88958] = 5, + [88991] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6546), 1, - sym_super, - ACTIONS(6560), 1, - sym_identifier, + ACTIONS(3994), 1, + anon_sym_LPAREN, + STATE(1615), 1, + sym_parameters, STATE(3095), 2, sym_line_comment, sym_block_comment, - [88975] = 4, + [89008] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5979), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4929), 1, + anon_sym_LBRACE, + STATE(728), 1, + sym_declaration_list, STATE(3096), 2, sym_line_comment, sym_block_comment, - [88990] = 5, + [89025] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4328), 1, - anon_sym_EQ_GT, - ACTIONS(6562), 1, - anon_sym_AMP_AMP, + ACTIONS(4929), 1, + anon_sym_LBRACE, + STATE(729), 1, + sym_declaration_list, STATE(3097), 2, sym_line_comment, sym_block_comment, - [89007] = 5, + [89042] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3966), 1, - anon_sym_LPAREN, - STATE(1637), 1, - sym_parameters, + ACTIONS(6568), 2, + sym_identifier, + sym_super, STATE(3098), 2, sym_line_comment, sym_block_comment, - [89024] = 5, + [89057] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6554), 1, - anon_sym_LT, - STATE(935), 1, - sym_type_parameters, + ACTIONS(6570), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3099), 2, sym_line_comment, sym_block_comment, - [89041] = 5, + [89072] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6082), 1, - anon_sym_EQ_GT, - ACTIONS(6562), 1, - anon_sym_AMP_AMP, + STATE(241), 1, + sym_closure_parameters, STATE(3100), 2, sym_line_comment, sym_block_comment, - [89058] = 5, + [89089] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4898), 1, - anon_sym_LBRACE, - STATE(633), 1, - sym_field_declaration_list, + ACTIONS(6572), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3101), 2, sym_line_comment, sym_block_comment, - [89075] = 4, + [89104] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6232), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5188), 1, + anon_sym_RBRACK, + ACTIONS(6526), 1, + anon_sym_SEMI, STATE(3102), 2, sym_line_comment, sym_block_comment, - [89090] = 5, + [89121] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6564), 1, - anon_sym_RPAREN, - ACTIONS(6566), 1, + ACTIONS(6574), 1, + anon_sym_LPAREN, + ACTIONS(6576), 1, anon_sym_COLON_COLON, STATE(3103), 2, sym_line_comment, sym_block_comment, - [89107] = 5, + [89138] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6568), 1, - anon_sym_RPAREN, - ACTIONS(6570), 1, - anon_sym_COLON_COLON, + ACTIONS(6232), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3104), 2, sym_line_comment, sym_block_comment, - [89124] = 5, + [89153] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6568), 1, - anon_sym_RPAREN, - ACTIONS(6572), 1, - anon_sym_COLON_COLON, + ACTIONS(4929), 1, + anon_sym_LBRACE, + STATE(525), 1, + sym_declaration_list, STATE(3105), 2, sym_line_comment, sym_block_comment, - [89141] = 5, + [89170] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6568), 1, - anon_sym_RPAREN, - ACTIONS(6574), 1, - anon_sym_COLON_COLON, + ACTIONS(3994), 1, + anon_sym_LPAREN, + STATE(1596), 1, + sym_parameters, STATE(3106), 2, sym_line_comment, sym_block_comment, - [89158] = 5, + [89187] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6536), 1, - sym_super, - ACTIONS(6576), 1, + ACTIONS(6578), 1, sym_identifier, + ACTIONS(6580), 1, + sym_mutable_specifier, STATE(3107), 2, sym_line_comment, sym_block_comment, - [89175] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [89204] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(235), 1, - sym_closure_parameters, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + ACTIONS(6282), 1, + anon_sym_for, STATE(3108), 2, sym_line_comment, sym_block_comment, - [89192] = 4, + [89221] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6578), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(4929), 1, + anon_sym_LBRACE, + STATE(603), 1, + sym_declaration_list, STATE(3109), 2, sym_line_comment, sym_block_comment, - [89207] = 5, + [89238] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6580), 1, - anon_sym_LBRACK, - ACTIONS(6582), 1, - anon_sym_BANG, + ACTIONS(4929), 1, + anon_sym_LBRACE, + STATE(526), 1, + sym_declaration_list, STATE(3110), 2, sym_line_comment, sym_block_comment, - [89224] = 5, + [89255] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5422), 1, - sym_super, - ACTIONS(6584), 1, - sym_identifier, + ACTIONS(6243), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3111), 2, sym_line_comment, sym_block_comment, - [89241] = 5, + [89270] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, + ACTIONS(4998), 1, anon_sym_LBRACE, - STATE(708), 1, - sym_declaration_list, + STATE(687), 1, + sym_field_declaration_list, STATE(3112), 2, sym_line_comment, sym_block_comment, - [89258] = 5, + [89287] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LBRACE, - STATE(1207), 1, - sym_field_declaration_list, + ACTIONS(6582), 2, + sym_identifier, + sym_metavariable, STATE(3113), 2, sym_line_comment, sym_block_comment, - [89275] = 5, + [89302] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(1208), 1, - sym_declaration_list, + ACTIONS(3576), 1, + anon_sym_COLON, + ACTIONS(5305), 1, + anon_sym_PLUS, STATE(3114), 2, sym_line_comment, sym_block_comment, - [89292] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [89319] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(233), 1, - sym_closure_parameters, + ACTIONS(4960), 1, + anon_sym_LT, + STATE(938), 1, + sym_type_parameters, STATE(3115), 2, sym_line_comment, sym_block_comment, - [89309] = 5, + [89336] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(1209), 1, - sym_declaration_list, + ACTIONS(3276), 1, + anon_sym_LPAREN, + STATE(1098), 1, + sym_parameters, STATE(3116), 2, sym_line_comment, sym_block_comment, - [89326] = 5, + [89353] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4565), 1, - anon_sym_COLON_COLON, - ACTIONS(5963), 1, - anon_sym_for, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(6584), 1, + anon_sym_in, STATE(3117), 2, sym_line_comment, sym_block_comment, - [89343] = 4, + [89370] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6586), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + ACTIONS(6526), 1, + anon_sym_SEMI, + ACTIONS(6586), 1, + anon_sym_RPAREN, STATE(3118), 2, sym_line_comment, sym_block_comment, - [89358] = 5, + [89387] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5680), 1, - sym_super, - ACTIONS(6576), 1, - sym_identifier, + ACTIONS(5270), 1, + anon_sym_LBRACE, + STATE(637), 1, + sym_enum_variant_list, STATE(3119), 2, sym_line_comment, sym_block_comment, - [89375] = 5, + [89404] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LBRACE, - STATE(1215), 1, - sym_field_declaration_list, + ACTIONS(3284), 1, + anon_sym_LT2, + STATE(1456), 1, + sym_type_arguments, STATE(3120), 2, sym_line_comment, sym_block_comment, - [89392] = 5, + [89421] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5422), 1, + ACTIONS(5613), 1, sym_super, ACTIONS(6588), 1, sym_identifier, STATE(3121), 2, sym_line_comment, sym_block_comment, - [89409] = 5, + [89438] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - STATE(709), 1, - sym_declaration_list, + STATE(223), 1, + sym_closure_parameters, STATE(3122), 2, sym_line_comment, sym_block_comment, - [89426] = 5, + [89455] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - sym_super, - ACTIONS(5617), 1, + ACTIONS(6590), 2, sym_identifier, + sym_super, STATE(3123), 2, sym_line_comment, sym_block_comment, - [89443] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [89470] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(236), 1, - sym_closure_parameters, + ACTIONS(6592), 1, + anon_sym_RPAREN, + ACTIONS(6594), 1, + anon_sym_COLON_COLON, STATE(3124), 2, sym_line_comment, sym_block_comment, - [89460] = 5, + [89487] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(1220), 1, - sym_declaration_list, + ACTIONS(6596), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3125), 2, sym_line_comment, sym_block_comment, - [89477] = 5, + [89502] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - STATE(2187), 1, - sym_parameters, + ACTIONS(5640), 1, + sym_super, + ACTIONS(6598), 1, + sym_identifier, STATE(3126), 2, sym_line_comment, sym_block_comment, - [89494] = 4, + [89519] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5737), 2, - sym_identifier, - sym_super, + ACTIONS(6526), 1, + anon_sym_SEMI, + ACTIONS(6586), 1, + anon_sym_RBRACK, STATE(3127), 2, sym_line_comment, sym_block_comment, - [89509] = 5, + [89536] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4898), 1, - anon_sym_LBRACE, - STATE(690), 1, - sym_field_declaration_list, + ACTIONS(6526), 1, + anon_sym_SEMI, + ACTIONS(6600), 1, + anon_sym_RBRACE, STATE(3128), 2, sym_line_comment, sym_block_comment, - [89526] = 5, + [89553] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6546), 1, - sym_super, - ACTIONS(6590), 1, - sym_identifier, + ACTIONS(6602), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3129), 2, sym_line_comment, sym_block_comment, - [89543] = 5, + [89568] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - sym_super, - ACTIONS(5654), 1, - sym_identifier, + ACTIONS(5270), 1, + anon_sym_LBRACE, + STATE(738), 1, + sym_enum_variant_list, STATE(3130), 2, sym_line_comment, sym_block_comment, - [89560] = 5, + [89585] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6550), 1, - sym_super, - ACTIONS(6592), 1, - sym_identifier, + STATE(224), 1, + sym_closure_parameters, STATE(3131), 2, sym_line_comment, sym_block_comment, - [89577] = 5, + [89602] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5346), 1, - anon_sym_LBRACE, - STATE(1225), 1, - sym_enum_variant_list, + ACTIONS(5700), 2, + sym_identifier, + sym_super, STATE(3132), 2, sym_line_comment, sym_block_comment, - [89594] = 5, + [89617] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, + ACTIONS(6560), 1, sym_super, - ACTIONS(5785), 1, + ACTIONS(6604), 1, sym_identifier, STATE(3133), 2, sym_line_comment, sym_block_comment, - [89611] = 5, + [89634] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - STATE(1970), 1, - sym_parameters, + ACTIONS(5252), 1, + sym_super, + ACTIONS(5750), 1, + sym_identifier, STATE(3134), 2, sym_line_comment, sym_block_comment, - [89628] = 5, + [89651] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LBRACE, - STATE(1228), 1, - sym_field_declaration_list, + ACTIONS(6530), 1, + sym_super, + ACTIONS(6606), 1, + sym_identifier, STATE(3135), 2, sym_line_comment, sym_block_comment, - [89645] = 4, + [89668] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6594), 2, + ACTIONS(6608), 2, anon_sym_RBRACE, anon_sym_COMMA, STATE(3136), 2, sym_line_comment, sym_block_comment, - [89660] = 5, + [89683] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LBRACE, - STATE(1231), 1, - sym_field_declaration_list, + ACTIONS(6610), 1, + sym_identifier, + ACTIONS(6612), 1, + sym_mutable_specifier, STATE(3137), 2, sym_line_comment, sym_block_comment, - [89677] = 4, + [89700] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6550), 2, - sym_identifier, - sym_super, + ACTIONS(5190), 1, + anon_sym_RBRACE, + ACTIONS(6526), 1, + anon_sym_SEMI, STATE(3138), 2, sym_line_comment, sym_block_comment, - [89692] = 4, + [89717] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5656), 2, - sym_identifier, + ACTIONS(5613), 1, sym_super, + ACTIONS(6614), 1, + sym_identifier, STATE(3139), 2, sym_line_comment, sym_block_comment, - [89707] = 4, + [89734] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6596), 2, - sym_identifier, - sym_metavariable, + ACTIONS(4998), 1, + anon_sym_LBRACE, + STATE(742), 1, + sym_field_declaration_list, STATE(3140), 2, sym_line_comment, sym_block_comment, - [89722] = 5, + [89751] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6598), 1, - anon_sym_SEMI, - ACTIONS(6600), 1, - anon_sym_as, + ACTIONS(5640), 1, + sym_super, + ACTIONS(6616), 1, + sym_identifier, STATE(3141), 2, sym_line_comment, sym_block_comment, - [89739] = 5, + [89768] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6550), 1, - sym_super, - ACTIONS(6602), 1, - sym_identifier, + ACTIONS(6526), 1, + anon_sym_SEMI, + ACTIONS(6618), 1, + anon_sym_RPAREN, STATE(3142), 2, sym_line_comment, sym_block_comment, - [89756] = 4, + [89785] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6339), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5640), 1, + sym_super, + ACTIONS(6620), 1, + sym_identifier, STATE(3143), 2, sym_line_comment, sym_block_comment, - [89771] = 5, + [89802] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5250), 1, - anon_sym_LBRACE, - STATE(725), 1, - sym_enum_variant_list, + ACTIONS(6526), 1, + anon_sym_SEMI, + ACTIONS(6618), 1, + anon_sym_RBRACK, STATE(3144), 2, sym_line_comment, sym_block_comment, - [89788] = 4, + [89819] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6604), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + ACTIONS(4998), 1, + anon_sym_LBRACE, + STATE(744), 1, + sym_field_declaration_list, STATE(3145), 2, sym_line_comment, sym_block_comment, - [89803] = 5, + [89836] = 5, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(241), 1, + STATE(216), 1, sym_closure_parameters, STATE(3146), 2, sym_line_comment, sym_block_comment, - [89820] = 5, + [89853] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4565), 1, - anon_sym_COLON_COLON, - ACTIONS(6152), 1, - anon_sym_for, + ACTIONS(4929), 1, + anon_sym_LBRACE, + STATE(745), 1, + sym_declaration_list, STATE(3147), 2, sym_line_comment, sym_block_comment, - [89837] = 5, + [89870] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5654), 1, - sym_identifier, - ACTIONS(5656), 1, - sym_super, + STATE(228), 1, + sym_closure_parameters, STATE(3148), 2, sym_line_comment, sym_block_comment, - [89854] = 5, + [89887] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6536), 1, - sym_super, - ACTIONS(6606), 1, - sym_identifier, + ACTIONS(6622), 1, + anon_sym_RPAREN, + ACTIONS(6624), 1, + anon_sym_COLON_COLON, STATE(3149), 2, sym_line_comment, sym_block_comment, - [89871] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [89904] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(242), 1, - sym_closure_parameters, + ACTIONS(6526), 1, + anon_sym_SEMI, + ACTIONS(6626), 1, + anon_sym_RBRACE, STATE(3150), 2, sym_line_comment, sym_block_comment, - [89888] = 5, + [89921] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6510), 1, - anon_sym_SEMI, - ACTIONS(6608), 1, - anon_sym_RBRACE, + ACTIONS(6628), 1, + sym_identifier, + ACTIONS(6630), 1, + sym_super, STATE(3151), 2, sym_line_comment, sym_block_comment, - [89905] = 5, + [89938] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6510), 1, - anon_sym_SEMI, - ACTIONS(6610), 1, - anon_sym_RBRACE, + ACTIONS(4006), 1, + anon_sym_LBRACE, + STATE(1845), 1, + sym_field_initializer_list, STATE(3152), 2, sym_line_comment, sym_block_comment, - [89922] = 5, + [89955] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6552), 1, - sym_super, - ACTIONS(6612), 1, - sym_identifier, + STATE(230), 1, + sym_closure_parameters, STATE(3153), 2, sym_line_comment, sym_block_comment, - [89939] = 5, + [89972] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5656), 1, - sym_super, - ACTIONS(5783), 1, - sym_identifier, + ACTIONS(4998), 1, + anon_sym_LBRACE, + STATE(670), 1, + sym_field_declaration_list, STATE(3154), 2, sym_line_comment, sym_block_comment, - [89956] = 5, + [89989] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6614), 1, - sym_identifier, - ACTIONS(6616), 1, + ACTIONS(6590), 1, sym_super, + ACTIONS(6632), 1, + sym_identifier, STATE(3155), 2, sym_line_comment, sym_block_comment, - [89973] = 5, + [90006] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3972), 1, - anon_sym_LT2, - STATE(1835), 1, - sym_type_arguments, + ACTIONS(5756), 1, + sym_super, + ACTIONS(5768), 1, + sym_identifier, STATE(3156), 2, sym_line_comment, sym_block_comment, - [89990] = 5, + [90023] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4898), 1, - anon_sym_LBRACE, - STATE(728), 1, - sym_field_declaration_list, + ACTIONS(6634), 1, + sym_identifier, + ACTIONS(6636), 1, + sym_super, STATE(3157), 2, sym_line_comment, sym_block_comment, - [90007] = 5, + [90040] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6566), 1, - anon_sym_COLON_COLON, - ACTIONS(6618), 1, - anon_sym_RPAREN, + ACTIONS(4480), 1, + anon_sym_LPAREN, + STATE(2239), 1, + sym_parameters, STATE(3158), 2, sym_line_comment, sym_block_comment, - [90024] = 4, + [90057] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6620), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3628), 1, + anon_sym_COLON, + ACTIONS(5305), 1, + anon_sym_PLUS, STATE(3159), 2, sym_line_comment, sym_block_comment, - [90039] = 5, + [90074] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6536), 1, - sym_super, - ACTIONS(6622), 1, - sym_identifier, + ACTIONS(4482), 1, + anon_sym_BANG, + ACTIONS(6638), 1, + anon_sym_COLON_COLON, STATE(3160), 2, sym_line_comment, sym_block_comment, - [90056] = 5, + [90091] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6546), 1, - sym_super, - ACTIONS(6624), 1, - sym_identifier, + ACTIONS(6622), 1, + anon_sym_RPAREN, + ACTIONS(6640), 1, + anon_sym_COLON_COLON, STATE(3161), 2, sym_line_comment, sym_block_comment, - [90073] = 5, + [90108] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5656), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, + ACTIONS(3826), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, STATE(3162), 2, sym_line_comment, sym_block_comment, - [90090] = 5, + [90123] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6616), 1, - sym_super, - ACTIONS(6626), 1, - sym_identifier, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + ACTIONS(6307), 1, + anon_sym_for, STATE(3163), 2, sym_line_comment, sym_block_comment, - [90107] = 5, + [90140] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4639), 1, - anon_sym_BANG, - ACTIONS(4691), 1, - anon_sym_COLON_COLON, + ACTIONS(6302), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(3164), 2, sym_line_comment, sym_block_comment, - [90124] = 5, + [90155] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, + ACTIONS(4952), 1, anon_sym_LBRACE, - STATE(526), 1, + STATE(1256), 1, sym_declaration_list, STATE(3165), 2, sym_line_comment, sym_block_comment, - [90141] = 4, + [90172] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6536), 2, - sym_identifier, + ACTIONS(6630), 1, sym_super, + ACTIONS(6642), 1, + sym_identifier, STATE(3166), 2, sym_line_comment, sym_block_comment, - [90156] = 5, + [90189] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6570), 1, - anon_sym_COLON_COLON, - ACTIONS(6628), 1, - anon_sym_RPAREN, + ACTIONS(6560), 1, + sym_super, + ACTIONS(6644), 1, + sym_identifier, STATE(3167), 2, sym_line_comment, sym_block_comment, - [90173] = 5, + [90206] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, - anon_sym_LPAREN, - ACTIONS(6632), 1, - anon_sym_COLON_COLON, + ACTIONS(5276), 1, + anon_sym_LBRACE, + STATE(1173), 1, + sym_enum_variant_list, STATE(3168), 2, sym_line_comment, sym_block_comment, - [90190] = 5, + [90223] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - STATE(527), 1, - sym_declaration_list, + ACTIONS(5756), 1, + sym_super, + ACTIONS(5778), 1, + sym_identifier, STATE(3169), 2, sym_line_comment, sym_block_comment, - [90207] = 5, + [90240] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - STATE(567), 1, - sym_declaration_list, + ACTIONS(6636), 1, + sym_super, + ACTIONS(6646), 1, + sym_identifier, STATE(3170), 2, sym_line_comment, sym_block_comment, - [90224] = 4, + [90257] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5222), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6648), 1, + anon_sym_SEMI, + ACTIONS(6650), 1, + anon_sym_as, STATE(3171), 2, sym_line_comment, sym_block_comment, - [90239] = 5, + [90274] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6634), 1, - sym_identifier, - ACTIONS(6636), 1, - sym_super, + ACTIONS(4952), 1, + anon_sym_LBRACE, + STATE(1262), 1, + sym_declaration_list, STATE(3172), 2, sym_line_comment, sym_block_comment, - [90256] = 5, + [90291] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6546), 1, - sym_super, - ACTIONS(6638), 1, - sym_identifier, + ACTIONS(4952), 1, + anon_sym_LBRACE, + STATE(1263), 1, + sym_declaration_list, STATE(3173), 2, sym_line_comment, sym_block_comment, - [90273] = 5, + [90308] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5635), 1, + ACTIONS(5613), 1, sym_super, - ACTIONS(5801), 1, + ACTIONS(6652), 1, sym_identifier, STATE(3174), 2, sym_line_comment, sym_block_comment, - [90290] = 5, + [90325] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6556), 1, - sym_super, - ACTIONS(6640), 1, + ACTIONS(6606), 1, sym_identifier, + ACTIONS(6636), 1, + sym_super, STATE(3175), 2, sym_line_comment, sym_block_comment, - [90307] = 5, + [90342] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6572), 1, - anon_sym_COLON_COLON, - ACTIONS(6628), 1, - anon_sym_RPAREN, + ACTIONS(6654), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3176), 2, sym_line_comment, sym_block_comment, - [90324] = 5, + [90357] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4898), 1, - anon_sym_LBRACE, - STATE(731), 1, - sym_field_declaration_list, + ACTIONS(6656), 1, + sym_identifier, + ACTIONS(6658), 1, + sym_super, STATE(3177), 2, sym_line_comment, sym_block_comment, - [90341] = 5, + [90374] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6574), 1, - anon_sym_COLON_COLON, - ACTIONS(6628), 1, - anon_sym_RPAREN, + ACTIONS(6560), 1, + sym_super, + ACTIONS(6660), 1, + sym_identifier, STATE(3178), 2, sym_line_comment, sym_block_comment, - [90358] = 5, + [90391] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5680), 1, + ACTIONS(5694), 1, sym_super, - ACTIONS(6606), 1, + ACTIONS(5788), 1, sym_identifier, STATE(3179), 2, sym_line_comment, sym_block_comment, - [90375] = 5, + [90408] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6546), 1, + ACTIONS(6568), 1, sym_super, - ACTIONS(6584), 1, + ACTIONS(6662), 1, sym_identifier, STATE(3180), 2, sym_line_comment, sym_block_comment, - [90392] = 5, + [90425] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - sym_super, - ACTIONS(5783), 1, - sym_identifier, + ACTIONS(6664), 2, + sym_float_literal, + sym_integer_literal, STATE(3181), 2, sym_line_comment, sym_block_comment, - [90409] = 5, + [90440] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6550), 1, - sym_super, - ACTIONS(6614), 1, + ACTIONS(6546), 1, sym_identifier, + ACTIONS(6630), 1, + sym_super, STATE(3182), 2, sym_line_comment, sym_block_comment, - [90426] = 5, + [90457] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6546), 1, - sym_super, - ACTIONS(6588), 1, - sym_identifier, + ACTIONS(3720), 1, + anon_sym_COLON, + ACTIONS(5305), 1, + anon_sym_PLUS, STATE(3183), 2, sym_line_comment, sym_block_comment, - [90443] = 5, + [90474] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6536), 1, - sym_super, - ACTIONS(6642), 1, - sym_identifier, + ACTIONS(3866), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, STATE(3184), 2, sym_line_comment, sym_block_comment, - [90460] = 5, + [90489] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5656), 1, + ACTIONS(5640), 1, sym_super, - ACTIONS(5803), 1, + ACTIONS(6628), 1, sym_identifier, STATE(3185), 2, sym_line_comment, sym_block_comment, - [90477] = 5, + [90506] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6616), 1, + ACTIONS(6560), 1, sym_super, - ACTIONS(6644), 1, + ACTIONS(6588), 1, sym_identifier, STATE(3186), 2, sym_line_comment, sym_block_comment, - [90494] = 5, + [90523] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6536), 1, - sym_super, - ACTIONS(6646), 1, + ACTIONS(6598), 1, sym_identifier, + ACTIONS(6630), 1, + sym_super, STATE(3187), 2, sym_line_comment, sym_block_comment, - [90511] = 5, + [90540] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6648), 1, - anon_sym_SEMI, - ACTIONS(6650), 1, - anon_sym_as, + ACTIONS(5252), 1, + sym_super, + ACTIONS(5768), 1, + sym_identifier, STATE(3188), 2, sym_line_comment, sym_block_comment, - [90528] = 5, + [90557] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5656), 1, + ACTIONS(6530), 1, sym_super, - ACTIONS(5805), 1, + ACTIONS(6634), 1, sym_identifier, STATE(3189), 2, sym_line_comment, sym_block_comment, - [90545] = 5, + [90574] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6616), 1, + ACTIONS(6630), 1, sym_super, - ACTIONS(6652), 1, + ACTIONS(6666), 1, sym_identifier, STATE(3190), 2, sym_line_comment, sym_block_comment, - [90562] = 5, + [90591] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6592), 1, - sym_identifier, - ACTIONS(6616), 1, - sym_super, + ACTIONS(6668), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3191), 2, sym_line_comment, sym_block_comment, - [90579] = 5, + [90606] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6536), 1, + ACTIONS(5756), 1, sym_super, - ACTIONS(6654), 1, + ACTIONS(5790), 1, sym_identifier, STATE(3192), 2, sym_line_comment, sym_block_comment, - [90596] = 5, + [90623] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5656), 1, + ACTIONS(6636), 1, sym_super, - ACTIONS(5739), 1, + ACTIONS(6670), 1, sym_identifier, STATE(3193), 2, sym_line_comment, sym_block_comment, - [90613] = 5, + [90640] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5656), 1, - sym_super, - ACTIONS(5807), 1, - sym_identifier, + ACTIONS(6672), 1, + anon_sym_STAR_SLASH, + ACTIONS(6674), 1, + sym__block_comment_content, STATE(3194), 2, sym_line_comment, sym_block_comment, - [90630] = 5, + [90657] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6616), 1, + ACTIONS(6630), 1, sym_super, - ACTIONS(6656), 1, + ACTIONS(6676), 1, sym_identifier, STATE(3195), 2, sym_line_comment, sym_block_comment, - [90647] = 5, + [90674] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5680), 1, - sym_super, - ACTIONS(6654), 1, - sym_identifier, + ACTIONS(4480), 1, + anon_sym_LPAREN, + STATE(2213), 1, + sym_parameters, STATE(3196), 2, sym_line_comment, sym_block_comment, - [90664] = 5, + [90691] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6658), 1, - anon_sym_SEMI, - ACTIONS(6660), 1, - anon_sym_as, + ACTIONS(5756), 1, + sym_super, + ACTIONS(5794), 1, + sym_identifier, STATE(3197), 2, sym_line_comment, sym_block_comment, - [90681] = 5, + [90708] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, + ACTIONS(6636), 1, sym_super, - ACTIONS(5807), 1, + ACTIONS(6678), 1, sym_identifier, STATE(3198), 2, sym_line_comment, sym_block_comment, - [90698] = 5, + [90725] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6550), 1, + ACTIONS(6630), 1, sym_super, - ACTIONS(6656), 1, + ACTIONS(6680), 1, sym_identifier, STATE(3199), 2, sym_line_comment, sym_block_comment, - [90715] = 5, + [90742] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5250), 1, - anon_sym_LBRACE, - STATE(672), 1, - sym_enum_variant_list, + ACTIONS(5756), 1, + sym_super, + ACTIONS(5796), 1, + sym_identifier, STATE(3200), 2, sym_line_comment, sym_block_comment, - [90732] = 5, + [90759] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6548), 1, - sym_identifier, - ACTIONS(6616), 1, + ACTIONS(6636), 1, sym_super, + ACTIONS(6682), 1, + sym_identifier, STATE(3201), 2, sym_line_comment, sym_block_comment, - [90749] = 5, + [90776] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4898), 1, - anon_sym_LBRACE, - STATE(696), 1, - sym_field_declaration_list, + ACTIONS(3276), 1, + anon_sym_LPAREN, + STATE(1056), 1, + sym_parameters, STATE(3202), 2, sym_line_comment, sym_block_comment, - [90766] = 4, + [90793] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6037), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5640), 1, + sym_super, + ACTIONS(6680), 1, + sym_identifier, STATE(3203), 2, sym_line_comment, sym_block_comment, - [90781] = 5, + [90810] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6662), 1, - anon_sym_STAR_SLASH, - ACTIONS(6664), 1, - sym__block_comment_content, + ACTIONS(5276), 1, + anon_sym_LBRACE, + STATE(1271), 1, + sym_enum_variant_list, STATE(3204), 2, sym_line_comment, sym_block_comment, - [90798] = 5, + [90827] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4639), 1, - anon_sym_BANG, - ACTIONS(4703), 1, - anon_sym_COLON_COLON, + ACTIONS(5252), 1, + sym_super, + ACTIONS(5796), 1, + sym_identifier, STATE(3205), 2, sym_line_comment, sym_block_comment, - [90815] = 5, + [90844] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4898), 1, - anon_sym_LBRACE, - STATE(616), 1, - sym_field_declaration_list, + ACTIONS(6530), 1, + sym_super, + ACTIONS(6682), 1, + sym_identifier, STATE(3206), 2, sym_line_comment, sym_block_comment, - [90832] = 5, + [90861] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - STATE(698), 1, - sym_declaration_list, + ACTIONS(5196), 1, + anon_sym_RPAREN, + ACTIONS(6526), 1, + anon_sym_SEMI, STATE(3207), 2, sym_line_comment, sym_block_comment, - [90849] = 5, + [90878] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3616), 1, - anon_sym_COLON, - ACTIONS(5289), 1, - anon_sym_PLUS, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(1274), 1, + sym_field_declaration_list, STATE(3208), 2, sym_line_comment, sym_block_comment, - [90866] = 5, + [90895] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, - anon_sym_LPAREN, - ACTIONS(6666), 1, - anon_sym_COLON_COLON, + ACTIONS(6636), 2, + sym_identifier, + sym_super, STATE(3209), 2, sym_line_comment, sym_block_comment, - [90883] = 5, + [90910] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6668), 1, - sym_identifier, - ACTIONS(6670), 1, - sym_mutable_specifier, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(1276), 1, + sym_field_declaration_list, STATE(3210), 2, sym_line_comment, sym_block_comment, - [90900] = 4, + [90927] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6672), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(2994), 1, + anon_sym_SQUOTE, + STATE(3257), 1, + sym_lifetime, STATE(3211), 2, sym_line_comment, sym_block_comment, - [90915] = 5, + [90944] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6674), 1, - anon_sym_BANG, - ACTIONS(6676), 1, - anon_sym_COLON_COLON, + ACTIONS(5613), 1, + sym_super, + ACTIONS(6684), 1, + sym_identifier, STATE(3212), 2, sym_line_comment, sym_block_comment, - [90932] = 5, + [90961] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5680), 1, - sym_super, - ACTIONS(6678), 1, + ACTIONS(6686), 2, sym_identifier, + sym_metavariable, STATE(3213), 2, sym_line_comment, sym_block_comment, - [90949] = 5, + [90976] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3347), 1, - anon_sym_LBRACE, - STATE(1204), 1, - sym_field_initializer_list, + ACTIONS(6574), 1, + anon_sym_LPAREN, + ACTIONS(6688), 1, + anon_sym_COLON_COLON, STATE(3214), 2, sym_line_comment, sym_block_comment, - [90966] = 5, + [90993] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - STATE(1964), 1, - sym_parameters, + ACTIONS(5182), 1, + anon_sym_RBRACE, + ACTIONS(6526), 1, + anon_sym_SEMI, STATE(3215), 2, sym_line_comment, sym_block_comment, - [90983] = 5, + [91010] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6554), 1, - anon_sym_LT, - STATE(924), 1, - sym_type_parameters, + ACTIONS(4348), 1, + anon_sym_EQ_GT, + ACTIONS(6690), 1, + anon_sym_AMP_AMP, STATE(3216), 2, sym_line_comment, sym_block_comment, - [91000] = 4, + [91027] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 2, - sym_identifier, - sym_super, + ACTIONS(6692), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3217), 2, sym_line_comment, sym_block_comment, - [91015] = 5, + [91042] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6550), 1, - sym_super, - ACTIONS(6680), 1, - sym_identifier, + ACTIONS(6296), 1, + anon_sym_EQ_GT, + ACTIONS(6690), 1, + anon_sym_AMP_AMP, STATE(3218), 2, sym_line_comment, sym_block_comment, - [91032] = 5, + [91059] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(1271), 1, - sym_declaration_list, + ACTIONS(6694), 1, + anon_sym_BANG, + ACTIONS(6696), 1, + anon_sym_COLON_COLON, STATE(3219), 2, sym_line_comment, sym_block_comment, - [91049] = 5, + [91076] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3268), 1, - anon_sym_LPAREN, - STATE(1066), 1, - sym_parameters, + ACTIONS(5901), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3220), 2, sym_line_comment, sym_block_comment, - [91066] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [91091] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(217), 1, - sym_closure_parameters, + ACTIONS(6698), 1, + anon_sym_LBRACK, + ACTIONS(6700), 1, + anon_sym_BANG, STATE(3221), 2, sym_line_comment, sym_block_comment, - [91083] = 5, + [91108] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(1277), 1, - sym_declaration_list, + ACTIONS(6702), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3222), 2, sym_line_comment, sym_block_comment, - [91100] = 5, + [91123] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, + ACTIONS(4929), 1, anon_sym_LBRACE, - STATE(1278), 1, + STATE(675), 1, sym_declaration_list, STATE(3223), 2, sym_line_comment, sym_block_comment, - [91117] = 5, + [91140] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6554), 1, - anon_sym_LT, - STATE(1086), 1, - sym_type_parameters, + STATE(219), 1, + sym_closure_parameters, STATE(3224), 2, sym_line_comment, sym_block_comment, - [91134] = 4, + [91157] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3714), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(3348), 1, + anon_sym_LBRACE, + STATE(1407), 1, + sym_field_initializer_list, STATE(3225), 2, sym_line_comment, sym_block_comment, - [91149] = 5, + [91174] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - STATE(2199), 1, - sym_parameters, + ACTIONS(6530), 2, + sym_identifier, + sym_super, STATE(3226), 2, sym_line_comment, sym_block_comment, - [91166] = 4, + [91189] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5422), 2, - sym_identifier, - sym_super, + ACTIONS(5186), 1, + anon_sym_RBRACE, + ACTIONS(6526), 1, + anon_sym_SEMI, STATE(3227), 2, sym_line_comment, sym_block_comment, - [91181] = 4, + [91206] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6636), 2, - sym_identifier, - sym_super, + ACTIONS(6566), 1, + anon_sym_LT, + STATE(1084), 1, + sym_type_parameters, STATE(3228), 2, sym_line_comment, sym_block_comment, - [91196] = 4, + [91223] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6330), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(4929), 1, + anon_sym_LBRACE, + STATE(722), 1, + sym_declaration_list, STATE(3229), 2, sym_line_comment, sym_block_comment, - [91211] = 5, + [91240] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5346), 1, - anon_sym_LBRACE, - STATE(1286), 1, - sym_enum_variant_list, + ACTIONS(6379), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3230), 2, sym_line_comment, sym_block_comment, - [91228] = 5, + [91255] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4898), 1, + ACTIONS(4998), 1, anon_sym_LBRACE, - STATE(715), 1, + STATE(600), 1, sym_field_declaration_list, STATE(3231), 2, sym_line_comment, sym_block_comment, - [91245] = 5, + [91272] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5250), 1, - anon_sym_LBRACE, - STATE(597), 1, - sym_enum_variant_list, + ACTIONS(4480), 1, + anon_sym_LPAREN, + STATE(2209), 1, + sym_parameters, STATE(3232), 2, sym_line_comment, sym_block_comment, - [91262] = 5, + [91289] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LBRACE, - STATE(1289), 1, - sym_field_declaration_list, + ACTIONS(6704), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3233), 2, sym_line_comment, sym_block_comment, - [91279] = 4, + [91304] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6237), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6622), 1, + anon_sym_RPAREN, + ACTIONS(6706), 1, + anon_sym_COLON_COLON, STATE(3234), 2, sym_line_comment, sym_block_comment, - [91294] = 5, + [91321] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LBRACE, - STATE(1291), 1, - sym_field_declaration_list, + ACTIONS(6708), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3235), 2, sym_line_comment, sym_block_comment, - [91311] = 5, + [91336] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, + ACTIONS(4929), 1, anon_sym_LBRACE, - STATE(1292), 1, + STATE(564), 1, sym_declaration_list, STATE(3236), 2, sym_line_comment, sym_block_comment, - [91328] = 5, + [91353] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - STATE(2223), 1, - sym_parameters, + ACTIONS(5252), 1, + sym_super, + ACTIONS(5770), 1, + sym_identifier, STATE(3237), 2, sym_line_comment, sym_block_comment, - [91345] = 5, + [91370] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - STATE(2224), 1, - sym_parameters, + ACTIONS(2994), 1, + anon_sym_SQUOTE, + STATE(3007), 1, + sym_lifetime, STATE(3238), 2, sym_line_comment, sym_block_comment, - [91362] = 5, + [91387] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5162), 1, - anon_sym_RPAREN, - ACTIONS(6510), 1, - anon_sym_SEMI, + ACTIONS(5756), 2, + sym_identifier, + sym_super, STATE(3239), 2, sym_line_comment, sym_block_comment, - [91379] = 5, + [91402] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5162), 1, - anon_sym_RBRACK, - ACTIONS(6510), 1, + ACTIONS(5218), 1, + anon_sym_RPAREN, + ACTIONS(6526), 1, anon_sym_SEMI, STATE(3240), 2, sym_line_comment, sym_block_comment, - [91396] = 5, + [91419] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5346), 1, - anon_sym_LBRACE, - STATE(1133), 1, - sym_enum_variant_list, + ACTIONS(6530), 1, + sym_super, + ACTIONS(6710), 1, + sym_identifier, STATE(3241), 2, sym_line_comment, sym_block_comment, - [91413] = 5, + [91436] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5164), 1, - anon_sym_RPAREN, - ACTIONS(6510), 1, + ACTIONS(5218), 1, + anon_sym_RBRACK, + ACTIONS(6526), 1, anon_sym_SEMI, STATE(3242), 2, sym_line_comment, sym_block_comment, - [91430] = 5, + [91453] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5422), 1, - sym_super, - ACTIONS(6682), 1, - sym_identifier, + ACTIONS(5220), 1, + anon_sym_RPAREN, + ACTIONS(6526), 1, + anon_sym_SEMI, STATE(3243), 2, sym_line_comment, sym_block_comment, - [91447] = 5, + [91470] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5164), 1, + ACTIONS(5220), 1, anon_sym_RBRACK, - ACTIONS(6510), 1, + ACTIONS(6526), 1, anon_sym_SEMI, STATE(3244), 2, sym_line_comment, sym_block_comment, - [91464] = 5, + [91487] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(6684), 1, - anon_sym_in, + ACTIONS(5820), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3245), 2, sym_line_comment, sym_block_comment, - [91481] = 4, + [91502] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3764), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(4000), 1, + anon_sym_LT2, + STATE(1730), 1, + sym_type_arguments, STATE(3246), 2, sym_line_comment, sym_block_comment, - [91496] = 5, + [91519] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(6686), 1, - anon_sym_EQ, + ACTIONS(5850), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3247), 2, sym_line_comment, sym_block_comment, - [91513] = 4, + [91534] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5847), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6594), 1, + anon_sym_COLON_COLON, + ACTIONS(6712), 1, + anon_sym_RPAREN, STATE(3248), 2, sym_line_comment, sym_block_comment, - [91528] = 5, + [91551] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - STATE(621), 1, - sym_declaration_list, + ACTIONS(6624), 1, + anon_sym_COLON_COLON, + ACTIONS(6714), 1, + anon_sym_RPAREN, STATE(3249), 2, sym_line_comment, sym_block_comment, - [91545] = 5, + [91568] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(6688), 1, - anon_sym_in, + ACTIONS(3588), 1, + anon_sym_COLON, + ACTIONS(5305), 1, + anon_sym_PLUS, STATE(3250), 2, sym_line_comment, sym_block_comment, - [91562] = 5, + [91585] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(6690), 1, - anon_sym_EQ, + ACTIONS(6110), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3251), 2, sym_line_comment, sym_block_comment, - [91579] = 5, + [91600] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - STATE(2239), 1, - sym_parameters, + ACTIONS(6640), 1, + anon_sym_COLON_COLON, + ACTIONS(6714), 1, + anon_sym_RPAREN, STATE(3252), 2, sym_line_comment, sym_block_comment, - [91596] = 5, + [91617] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6510), 1, - anon_sym_SEMI, - ACTIONS(6692), 1, + ACTIONS(6706), 1, + anon_sym_COLON_COLON, + ACTIONS(6714), 1, anon_sym_RPAREN, STATE(3253), 2, sym_line_comment, sym_block_comment, - [91613] = 5, + [91634] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6510), 1, - anon_sym_SEMI, - ACTIONS(6692), 1, - anon_sym_RBRACK, + ACTIONS(5386), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3254), 2, sym_line_comment, sym_block_comment, - [91630] = 5, + [91649] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6510), 1, - anon_sym_SEMI, - ACTIONS(6694), 1, + ACTIONS(6716), 2, anon_sym_RPAREN, + anon_sym_COMMA, STATE(3255), 2, sym_line_comment, sym_block_comment, - [91647] = 5, + [91664] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6510), 1, + ACTIONS(6718), 1, anon_sym_SEMI, - ACTIONS(6694), 1, - anon_sym_RBRACK, + ACTIONS(6720), 1, + anon_sym_as, STATE(3256), 2, sym_line_comment, sym_block_comment, - [91664] = 5, + [91681] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4565), 1, - anon_sym_COLON_COLON, - ACTIONS(5998), 1, - anon_sym_for, + ACTIONS(6416), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3257), 2, sym_line_comment, sym_block_comment, - [91681] = 5, + [91696] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LBRACE, - STATE(1146), 1, - sym_field_declaration_list, + ACTIONS(4480), 1, + anon_sym_LPAREN, + STATE(2216), 1, + sym_parameters, STATE(3258), 2, sym_line_comment, sym_block_comment, - [91698] = 4, + [91713] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6696), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6526), 1, + anon_sym_SEMI, + ACTIONS(6722), 1, + anon_sym_RPAREN, STATE(3259), 2, sym_line_comment, sym_block_comment, - [91713] = 5, + [91730] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(1149), 1, - sym_declaration_list, + ACTIONS(6526), 1, + anon_sym_SEMI, + ACTIONS(6722), 1, + anon_sym_RBRACK, STATE(3260), 2, sym_line_comment, sym_block_comment, - [91730] = 5, + [91747] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4565), 1, - anon_sym_COLON_COLON, - ACTIONS(4915), 1, - anon_sym_for, + ACTIONS(6526), 1, + anon_sym_SEMI, + ACTIONS(6724), 1, + anon_sym_RPAREN, STATE(3261), 2, sym_line_comment, sym_block_comment, - [91747] = 5, + [91764] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4900), 1, - anon_sym_LT, - STATE(1001), 1, - sym_type_parameters, + ACTIONS(6526), 1, + anon_sym_SEMI, + ACTIONS(6724), 1, + anon_sym_RBRACK, STATE(3262), 2, sym_line_comment, sym_block_comment, - [91764] = 5, + [91781] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5422), 1, - sym_super, - ACTIONS(6560), 1, - sym_identifier, + ACTIONS(5188), 1, + anon_sym_RPAREN, + ACTIONS(6526), 1, + anon_sym_SEMI, STATE(3263), 2, sym_line_comment, sym_block_comment, - [91781] = 5, + [91798] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - STATE(2238), 1, - sym_parameters, + ACTIONS(3592), 1, + anon_sym_COLON, + ACTIONS(5305), 1, + anon_sym_PLUS, STATE(3264), 2, sym_line_comment, sym_block_comment, - [91798] = 4, + [91815] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6698), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6566), 1, + anon_sym_LT, + STATE(1058), 1, + sym_type_parameters, STATE(3265), 2, sym_line_comment, sym_block_comment, - [91813] = 4, + [91832] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6700), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(5566), 1, + anon_sym_COLON, STATE(3266), 2, sym_line_comment, sym_block_comment, - [91828] = 5, + [91849] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LBRACE, - STATE(1155), 1, - sym_field_declaration_list, + ACTIONS(6560), 1, + sym_super, + ACTIONS(6614), 1, + sym_identifier, STATE(3267), 2, sym_line_comment, sym_block_comment, - [91845] = 5, + [91866] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3766), 1, - anon_sym_COLON, - ACTIONS(5289), 1, - anon_sym_PLUS, + ACTIONS(6311), 1, + sym_identifier, + ACTIONS(6315), 1, + sym_mutable_specifier, STATE(3268), 2, sym_line_comment, sym_block_comment, - [91862] = 5, + [91883] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3748), 1, - anon_sym_COLON, - ACTIONS(5289), 1, - anon_sym_PLUS, + ACTIONS(6433), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3269), 2, sym_line_comment, sym_block_comment, - [91879] = 4, + [91898] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6616), 2, - sym_identifier, - sym_super, + ACTIONS(6726), 1, + anon_sym_SEMI, + ACTIONS(6728), 1, + anon_sym_as, STATE(3270), 2, sym_line_comment, sym_block_comment, - [91894] = 5, + [91915] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6702), 1, - anon_sym_SEMI, - ACTIONS(6704), 1, - anon_sym_as, + ACTIONS(4480), 1, + anon_sym_LPAREN, + STATE(2222), 1, + sym_parameters, STATE(3271), 2, sym_line_comment, sym_block_comment, - [91911] = 5, + [91932] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5680), 1, - sym_super, - ACTIONS(6706), 1, - sym_identifier, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(1193), 1, + sym_field_declaration_list, STATE(3272), 2, sym_line_comment, sym_block_comment, - [91928] = 5, + [91949] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4470), 1, - anon_sym_BANG, - ACTIONS(6708), 1, - anon_sym_COLON_COLON, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(6730), 1, + anon_sym_EQ, STATE(3273), 2, sym_line_comment, sym_block_comment, - [91945] = 5, + [91966] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6710), 1, - anon_sym_LPAREN, - ACTIONS(6712), 1, - anon_sym_COLON_COLON, + ACTIONS(5702), 1, + sym_identifier, + ACTIONS(5756), 1, + sym_super, STATE(3274), 2, sym_line_comment, sym_block_comment, - [91962] = 4, + [91983] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6714), 2, - sym_identifier, - sym_metavariable, + ACTIONS(4952), 1, + anon_sym_LBRACE, + STATE(1194), 1, + sym_declaration_list, STATE(3275), 2, sym_line_comment, sym_block_comment, - [91977] = 5, + [92000] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, + ACTIONS(5270), 1, anon_sym_LBRACE, - STATE(1337), 1, - sym_declaration_list, + STATE(588), 1, + sym_enum_variant_list, STATE(3276), 2, sym_line_comment, sym_block_comment, - [91994] = 5, + [92017] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6716), 1, - anon_sym_BANG, - ACTIONS(6718), 1, - anon_sym_COLON_COLON, + ACTIONS(4952), 1, + anon_sym_LBRACE, + STATE(1195), 1, + sym_declaration_list, STATE(3277), 2, sym_line_comment, sym_block_comment, - [92011] = 5, + [92034] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6220), 1, - sym_identifier, - ACTIONS(6224), 1, - sym_mutable_specifier, + ACTIONS(4952), 1, + anon_sym_LBRACE, + STATE(1320), 1, + sym_declaration_list, STATE(3278), 2, sym_line_comment, sym_block_comment, - [92028] = 5, + [92051] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6554), 1, - anon_sym_LT, - STATE(1091), 1, - sym_type_parameters, + ACTIONS(6562), 1, + sym_identifier, + ACTIONS(6636), 1, + sym_super, STATE(3279), 2, sym_line_comment, sym_block_comment, - [92045] = 5, + [92068] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5428), 1, - anon_sym_COLON, - ACTIONS(5430), 1, - anon_sym_PIPE, + ACTIONS(6566), 1, + anon_sym_LT, + STATE(955), 1, + sym_type_parameters, STATE(3280), 2, sym_line_comment, sym_block_comment, - [92062] = 5, + [92085] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(1345), 1, - sym_declaration_list, + STATE(240), 1, + sym_closure_parameters, STATE(3281), 2, sym_line_comment, sym_block_comment, - [92079] = 5, + [92102] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(1346), 1, - sym_declaration_list, + ACTIONS(5026), 1, + anon_sym_PLUS, + ACTIONS(6732), 1, + anon_sym_GT, STATE(3282), 2, sym_line_comment, sym_block_comment, - [92096] = 4, + [92119] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6030), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6734), 1, + anon_sym_LPAREN, + ACTIONS(6736), 1, + anon_sym_COLON_COLON, STATE(3283), 2, sym_line_comment, sym_block_comment, - [92111] = 5, + [92136] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, + ACTIONS(4480), 1, anon_sym_LPAREN, - ACTIONS(6720), 1, - anon_sym_COLON_COLON, + STATE(1962), 1, + sym_parameters, STATE(3284), 2, sym_line_comment, sym_block_comment, - [92128] = 4, + [92153] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5702), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6738), 1, + anon_sym_BANG, + ACTIONS(6740), 1, + anon_sym_COLON_COLON, STATE(3285), 2, sym_line_comment, sym_block_comment, - [92143] = 5, + [92170] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - STATE(655), 1, - sym_declaration_list, + ACTIONS(5640), 2, + sym_identifier, + sym_super, STATE(3286), 2, sym_line_comment, sym_block_comment, - [92160] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [92185] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(224), 1, - sym_closure_parameters, + ACTIONS(6742), 2, + sym_float_literal, + sym_integer_literal, STATE(3287), 2, sym_line_comment, sym_block_comment, - [92177] = 5, + [92200] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6630), 1, - anon_sym_LPAREN, - ACTIONS(6722), 1, - anon_sym_COLON_COLON, + ACTIONS(6566), 1, + anon_sym_LT, + STATE(1090), 1, + sym_type_parameters, STATE(3288), 2, sym_line_comment, sym_block_comment, - [92194] = 4, + [92217] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6724), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4952), 1, + anon_sym_LBRACE, + STATE(1328), 1, + sym_declaration_list, STATE(3289), 2, sym_line_comment, sym_block_comment, - [92209] = 5, + [92234] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6726), 1, - anon_sym_LBRACK, - ACTIONS(6728), 1, - anon_sym_BANG, + ACTIONS(6560), 2, + sym_identifier, + sym_super, STATE(3290), 2, sym_line_comment, sym_block_comment, - [92226] = 4, + [92249] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6730), 2, - sym_identifier, - sym_metavariable, + ACTIONS(4952), 1, + anon_sym_LBRACE, + STATE(1329), 1, + sym_declaration_list, STATE(3291), 2, sym_line_comment, sym_block_comment, - [92241] = 5, + [92266] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6510), 1, - anon_sym_SEMI, - ACTIONS(6512), 1, - anon_sym_RBRACK, + ACTIONS(6744), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3292), 2, sym_line_comment, sym_block_comment, - [92258] = 5, + [92281] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(6732), 1, - anon_sym_in, + ACTIONS(6566), 1, + anon_sym_LT, + STATE(886), 1, + sym_type_parameters, STATE(3293), 2, sym_line_comment, sym_block_comment, - [92275] = 4, + [92298] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5879), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3276), 1, + anon_sym_LPAREN, + STATE(1064), 1, + sym_parameters, STATE(3294), 2, sym_line_comment, sym_block_comment, - [92290] = 4, + [92315] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5717), 2, + ACTIONS(5905), 2, anon_sym_GT, anon_sym_COMMA, STATE(3295), 2, sym_line_comment, sym_block_comment, - [92305] = 4, + [92330] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6734), 2, - sym_identifier, - sym_metavariable, + ACTIONS(6574), 1, + anon_sym_LPAREN, + ACTIONS(6746), 1, + anon_sym_COLON_COLON, STATE(3296), 2, sym_line_comment, sym_block_comment, - [92320] = 5, + [92347] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5010), 1, - anon_sym_PLUS, - ACTIONS(6736), 1, - anon_sym_GT, + ACTIONS(6658), 2, + sym_identifier, + sym_super, STATE(3297), 2, sym_line_comment, sym_block_comment, - [92337] = 5, + [92362] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6510), 1, - anon_sym_SEMI, - ACTIONS(6738), 1, - anon_sym_RBRACE, + ACTIONS(4480), 1, + anon_sym_LPAREN, + STATE(1963), 1, + sym_parameters, STATE(3298), 2, sym_line_comment, sym_block_comment, - [92354] = 5, + [92379] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4565), 1, + ACTIONS(6574), 1, + anon_sym_LPAREN, + ACTIONS(6748), 1, anon_sym_COLON_COLON, - ACTIONS(4986), 1, - anon_sym_for, STATE(3299), 2, sym_line_comment, sym_block_comment, - [92371] = 5, + [92396] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4468), 1, - anon_sym_LPAREN, - STATE(1962), 1, - sym_parameters, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(1201), 1, + sym_field_declaration_list, STATE(3300), 2, sym_line_comment, sym_block_comment, - [92388] = 5, + [92413] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, - anon_sym_SQUOTE, - STATE(3096), 1, - sym_lifetime, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(6750), 1, + anon_sym_in, STATE(3301), 2, sym_line_comment, sym_block_comment, - [92405] = 5, + [92430] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3276), 1, - anon_sym_LT2, - STATE(1421), 1, - sym_type_arguments, + ACTIONS(6752), 1, + anon_sym_LBRACK, + ACTIONS(6754), 1, + anon_sym_BANG, STATE(3302), 2, sym_line_comment, sym_block_comment, - [92422] = 4, + [92447] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6546), 2, + ACTIONS(6756), 2, sym_identifier, - sym_super, + sym_metavariable, STATE(3303), 2, sym_line_comment, sym_block_comment, - [92437] = 5, + [92462] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2994), 1, - anon_sym_SQUOTE, - STATE(3017), 1, - sym_lifetime, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(6758), 1, + anon_sym_in, STATE(3304), 2, sym_line_comment, sym_block_comment, - [92454] = 4, + [92479] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6740), 2, - sym_identifier, - sym_metavariable, + ACTIONS(4952), 1, + anon_sym_LBRACE, + STATE(1206), 1, + sym_declaration_list, STATE(3305), 2, sym_line_comment, sym_block_comment, - [92469] = 5, + [92496] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6742), 1, - sym_identifier, - ACTIONS(6744), 1, - sym_mutable_specifier, + ACTIONS(4998), 1, + anon_sym_LBRACE, + STATE(609), 1, + sym_field_declaration_list, STATE(3306), 2, sym_line_comment, sym_block_comment, - [92486] = 5, + [92513] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4565), 1, - anon_sym_COLON_COLON, - ACTIONS(6488), 1, - anon_sym_for, + ACTIONS(5276), 1, + anon_sym_LBRACE, + STATE(1119), 1, + sym_enum_variant_list, STATE(3307), 2, sym_line_comment, sym_block_comment, - [92503] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [92530] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(239), 1, - sym_closure_parameters, + ACTIONS(6760), 2, + sym_identifier, + sym_metavariable, STATE(3308), 2, sym_line_comment, sym_block_comment, - [92520] = 5, + [92545] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5206), 1, - anon_sym_RBRACE, - ACTIONS(6510), 1, - anon_sym_SEMI, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(6762), 1, + anon_sym_EQ, STATE(3309), 2, sym_line_comment, sym_block_comment, - [92537] = 5, + [92562] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4565), 1, + ACTIONS(4576), 1, anon_sym_COLON_COLON, - ACTIONS(6492), 1, + ACTIONS(4946), 1, anon_sym_for, STATE(3310), 2, sym_line_comment, sym_block_comment, - [92554] = 5, + [92579] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3580), 1, - anon_sym_COLON, - ACTIONS(5289), 1, - anon_sym_PLUS, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(1140), 1, + sym_field_declaration_list, STATE(3311), 2, sym_line_comment, sym_block_comment, - [92571] = 5, + [92596] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3584), 1, - anon_sym_COLON, - ACTIONS(5289), 1, - anon_sym_PLUS, + ACTIONS(6560), 1, + sym_super, + ACTIONS(6564), 1, + sym_identifier, STATE(3312), 2, sym_line_comment, sym_block_comment, - [92588] = 5, + [92613] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(6746), 1, - anon_sym_in, + ACTIONS(6764), 2, + sym_identifier, + sym_metavariable, STATE(3313), 2, sym_line_comment, sym_block_comment, - [92605] = 5, + [92628] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4565), 1, + ACTIONS(4576), 1, anon_sym_COLON_COLON, - ACTIONS(6496), 1, + ACTIONS(6500), 1, anon_sym_for, STATE(3314), 2, sym_line_comment, sym_block_comment, - [92622] = 5, + [92645] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_LBRACK, - ACTIONS(6750), 1, - anon_sym_BANG, + ACTIONS(5276), 1, + anon_sym_LBRACE, + STATE(1211), 1, + sym_enum_variant_list, STATE(3315), 2, sym_line_comment, sym_block_comment, - [92639] = 5, + [92662] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(6752), 1, - anon_sym_in, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + ACTIONS(6502), 1, + anon_sym_for, STATE(3316), 2, sym_line_comment, sym_block_comment, - [92656] = 5, + [92679] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(6754), 1, - anon_sym_in, + ACTIONS(5252), 1, + sym_super, + ACTIONS(5780), 1, + sym_identifier, STATE(3317), 2, sym_line_comment, sym_block_comment, - [92673] = 5, + [92696] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, + ACTIONS(5538), 1, anon_sym_PIPE, - ACTIONS(6756), 1, + ACTIONS(6766), 1, anon_sym_in, STATE(3318), 2, sym_line_comment, sym_block_comment, - [92690] = 5, + [92713] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5430), 1, - anon_sym_PIPE, - ACTIONS(6758), 1, - anon_sym_in, + ACTIONS(6015), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3319), 2, sym_line_comment, sym_block_comment, - [92707] = 5, + [92728] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_LBRACE, - STATE(624), 1, - sym_declaration_list, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + ACTIONS(6508), 1, + anon_sym_for, STATE(3320), 2, sym_line_comment, sym_block_comment, - [92724] = 5, + [92745] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6498), 1, - sym_identifier, - ACTIONS(6502), 1, - sym_mutable_specifier, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(1214), 1, + sym_field_declaration_list, STATE(3321), 2, sym_line_comment, sym_block_comment, - [92741] = 5, + [92762] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6510), 1, - anon_sym_SEMI, - ACTIONS(6760), 1, - anon_sym_RPAREN, + ACTIONS(6768), 1, + anon_sym_LBRACK, + ACTIONS(6770), 1, + anon_sym_BANG, STATE(3322), 2, sym_line_comment, sym_block_comment, - [92758] = 5, + [92779] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5228), 1, - anon_sym_RBRACE, - ACTIONS(6510), 1, - anon_sym_SEMI, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(6772), 1, + anon_sym_in, STATE(3323), 2, sym_line_comment, sym_block_comment, - [92775] = 5, + [92796] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6510), 1, - anon_sym_SEMI, - ACTIONS(6760), 1, - anon_sym_RBRACK, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(6774), 1, + anon_sym_in, STATE(3324), 2, sym_line_comment, sym_block_comment, - [92792] = 5, + [92813] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6762), 1, - sym_identifier, - ACTIONS(6764), 1, - sym_mutable_specifier, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(6776), 1, + anon_sym_in, STATE(3325), 2, sym_line_comment, sym_block_comment, - [92809] = 5, + [92830] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3996), 1, - anon_sym_LBRACE, - STATE(1748), 1, - sym_field_initializer_list, + ACTIONS(5538), 1, + anon_sym_PIPE, + ACTIONS(6778), 1, + anon_sym_in, STATE(3326), 2, sym_line_comment, sym_block_comment, - [92826] = 5, + [92847] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6554), 1, - anon_sym_LT, - STATE(1087), 1, - sym_type_parameters, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(1131), 1, + sym_field_declaration_list, STATE(3327), 2, sym_line_comment, sym_block_comment, - [92843] = 4, + [92864] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6766), 1, - anon_sym_fn, + ACTIONS(5252), 2, + sym_identifier, + sym_super, STATE(3328), 2, sym_line_comment, sym_block_comment, - [92857] = 4, + [92879] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5899), 1, - anon_sym_LBRACE, + ACTIONS(6512), 1, + sym_identifier, + ACTIONS(6516), 1, + sym_mutable_specifier, STATE(3329), 2, sym_line_comment, sym_block_comment, - [92871] = 4, + [92896] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6768), 1, - sym_identifier, + ACTIONS(4958), 1, + anon_sym_LBRACE, + STATE(1217), 1, + sym_field_declaration_list, STATE(3330), 2, sym_line_comment, sym_block_comment, - [92885] = 4, + [92913] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6770), 1, - sym_identifier, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + ACTIONS(4931), 1, + anon_sym_for, STATE(3331), 2, sym_line_comment, sym_block_comment, - [92899] = 4, + [92930] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6772), 1, - sym_identifier, + ACTIONS(4952), 1, + anon_sym_LBRACE, + STATE(1134), 1, + sym_declaration_list, STATE(3332), 2, sym_line_comment, sym_block_comment, - [92913] = 4, + [92947] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6774), 1, + ACTIONS(6780), 1, sym_identifier, + ACTIONS(6782), 1, + sym_mutable_specifier, STATE(3333), 2, sym_line_comment, sym_block_comment, - [92927] = 4, - ACTIONS(3), 1, + [92964] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6776), 1, - aux_sym_line_comment_token2, + ACTIONS(6784), 2, + sym_identifier, + sym_metavariable, STATE(3334), 2, sym_line_comment, sym_block_comment, - [92941] = 4, + [92979] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4919), 1, - anon_sym_COLON_COLON, + ACTIONS(4480), 1, + anon_sym_LPAREN, + STATE(2228), 1, + sym_parameters, STATE(3335), 2, sym_line_comment, sym_block_comment, - [92955] = 4, + [92996] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6778), 1, + ACTIONS(6630), 2, sym_identifier, + sym_super, STATE(3336), 2, sym_line_comment, sym_block_comment, - [92969] = 4, + [93011] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3082), 1, - anon_sym_PLUS, + ACTIONS(4952), 1, + anon_sym_LBRACE, + STATE(1277), 1, + sym_declaration_list, STATE(3337), 2, sym_line_comment, sym_block_comment, - [92983] = 4, + [93028] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4082), 1, - anon_sym_COLON_COLON, + ACTIONS(6786), 1, + anon_sym_fn, STATE(3338), 2, sym_line_comment, sym_block_comment, - [92997] = 4, + [93042] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6780), 1, - anon_sym_RBRACK, + ACTIONS(3100), 1, + anon_sym_PLUS, STATE(3339), 2, sym_line_comment, sym_block_comment, - [93011] = 4, + [93056] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4601), 1, - anon_sym_COLON_COLON, + ACTIONS(6788), 1, + sym_identifier, STATE(3340), 2, sym_line_comment, sym_block_comment, - [93025] = 4, + [93070] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6782), 1, + ACTIONS(6790), 1, sym_identifier, STATE(3341), 2, sym_line_comment, sym_block_comment, - [93039] = 4, + [93084] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5426), 1, - anon_sym_RPAREN, + ACTIONS(6792), 1, + sym_identifier, STATE(3342), 2, sym_line_comment, sym_block_comment, - [93053] = 4, + [93098] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6572), 1, - anon_sym_COLON_COLON, + ACTIONS(6794), 1, + sym_identifier, STATE(3343), 2, sym_line_comment, sym_block_comment, - [93067] = 4, + [93112] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, - anon_sym_RBRACE, + ACTIONS(6796), 1, + sym_identifier, STATE(3344), 2, sym_line_comment, sym_block_comment, - [93081] = 4, + [93126] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6132), 1, + ACTIONS(5963), 1, anon_sym_RBRACE, STATE(3345), 2, sym_line_comment, sym_block_comment, - [93095] = 4, + [93140] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6784), 1, - sym__raw_string_literal_end, + ACTIONS(6798), 1, + anon_sym_RBRACK, STATE(3346), 2, sym_line_comment, sym_block_comment, - [93109] = 4, + [93154] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6786), 1, - anon_sym_SEMI, + ACTIONS(6800), 1, + anon_sym_COLON, STATE(3347), 2, sym_line_comment, sym_block_comment, - [93123] = 4, + [93168] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4571), 1, + ACTIONS(4082), 1, anon_sym_COLON_COLON, STATE(3348), 2, sym_line_comment, sym_block_comment, - [93137] = 4, + [93182] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4118), 1, - anon_sym_RPAREN, + ACTIONS(6802), 1, + sym_identifier, STATE(3349), 2, sym_line_comment, sym_block_comment, - [93151] = 4, + [93196] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6286), 1, - anon_sym_RBRACE, + ACTIONS(4613), 1, + anon_sym_COLON_COLON, STATE(3350), 2, sym_line_comment, sym_block_comment, - [93165] = 4, + [93210] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6788), 1, - anon_sym_RBRACE, + ACTIONS(5891), 1, + anon_sym_RBRACK, STATE(3351), 2, sym_line_comment, sym_block_comment, - [93179] = 4, + [93224] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6790), 1, - anon_sym_SEMI, + ACTIONS(6804), 1, + sym_identifier, STATE(3352), 2, sym_line_comment, sym_block_comment, - [93193] = 4, + [93238] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6792), 1, - anon_sym_RBRACK, + ACTIONS(6806), 1, + anon_sym_EQ_GT, STATE(3353), 2, sym_line_comment, sym_block_comment, - [93207] = 4, + [93252] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6794), 1, - anon_sym_fn, + ACTIONS(6808), 1, + sym_identifier, STATE(3354), 2, sym_line_comment, sym_block_comment, - [93221] = 4, + [93266] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6796), 1, + ACTIONS(6810), 1, sym_identifier, STATE(3355), 2, sym_line_comment, sym_block_comment, - [93235] = 4, + [93280] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6798), 1, - anon_sym_COLON_COLON, + ACTIONS(6812), 1, + anon_sym_EQ_GT, STATE(3356), 2, sym_line_comment, sym_block_comment, - [93249] = 4, + [93294] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4009), 1, - sym_identifier, + ACTIONS(6814), 1, + anon_sym_COLON, STATE(3357), 2, sym_line_comment, sym_block_comment, - [93263] = 4, + [93308] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6800), 1, - sym_identifier, + ACTIONS(4609), 1, + anon_sym_COLON_COLON, STATE(3358), 2, sym_line_comment, sym_block_comment, - [93277] = 4, + [93322] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5969), 1, - anon_sym_COLON_COLON, + ACTIONS(6552), 1, + anon_sym_SEMI, STATE(3359), 2, sym_line_comment, sym_block_comment, - [93291] = 4, + [93336] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6802), 1, + ACTIONS(6816), 1, sym_identifier, STATE(3360), 2, sym_line_comment, sym_block_comment, - [93305] = 4, + [93350] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6510), 1, + ACTIONS(6818), 1, anon_sym_SEMI, STATE(3361), 2, sym_line_comment, sym_block_comment, - [93319] = 4, + [93364] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6804), 1, - sym_identifier, + ACTIONS(4128), 1, + anon_sym_RPAREN, STATE(3362), 2, sym_line_comment, sym_block_comment, - [93333] = 4, + [93378] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3118), 1, - anon_sym_PLUS, + ACTIONS(6820), 1, + anon_sym_fn, STATE(3363), 2, sym_line_comment, sym_block_comment, - [93347] = 4, + [93392] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6806), 1, - anon_sym_fn, + ACTIONS(6822), 1, + anon_sym_RBRACK, STATE(3364), 2, sym_line_comment, sym_block_comment, - [93361] = 4, + [93406] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6808), 1, - sym_identifier, + ACTIONS(6824), 1, + anon_sym_COLON_COLON, STATE(3365), 2, sym_line_comment, sym_block_comment, - [93375] = 4, + [93420] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6810), 1, - anon_sym_COLON_COLON, + ACTIONS(6826), 1, + anon_sym_RBRACE, STATE(3366), 2, sym_line_comment, sym_block_comment, - [93389] = 4, + [93434] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6812), 1, - sym_identifier, + ACTIONS(6828), 1, + anon_sym_RPAREN, STATE(3367), 2, sym_line_comment, sym_block_comment, - [93403] = 4, + [93448] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6814), 1, - sym_identifier, + ACTIONS(6830), 1, + anon_sym_RBRACK, STATE(3368), 2, sym_line_comment, sym_block_comment, - [93417] = 4, + [93462] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 1, - sym_identifier, + ACTIONS(6278), 1, + anon_sym_RBRACE, STATE(3369), 2, sym_line_comment, sym_block_comment, - [93431] = 4, + [93476] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6818), 1, - sym_identifier, + ACTIONS(6832), 1, + anon_sym_SEMI, STATE(3370), 2, sym_line_comment, sym_block_comment, - [93445] = 4, + [93490] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6820), 1, + ACTIONS(6834), 1, sym_identifier, STATE(3371), 2, sym_line_comment, sym_block_comment, - [93459] = 4, + [93504] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - anon_sym_LT, + anon_sym_SLASH_STAR, + ACTIONS(6836), 1, + anon_sym_SEMI, STATE(3372), 2, sym_line_comment, sym_block_comment, - [93473] = 4, + [93518] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6824), 1, - anon_sym_SEMI, + ACTIONS(6838), 1, + sym_raw_string_literal_content, STATE(3373), 2, sym_line_comment, sym_block_comment, - [93487] = 4, + [93532] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - anon_sym_COLON, + ACTIONS(6840), 1, + sym_identifier, STATE(3374), 2, sym_line_comment, sym_block_comment, - [93501] = 4, + [93546] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6828), 1, - anon_sym_SEMI, + ACTIONS(6842), 1, + anon_sym_COLON_COLON, STATE(3375), 2, sym_line_comment, sym_block_comment, - [93515] = 4, + [93560] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5631), 1, - anon_sym_RPAREN, + ACTIONS(6844), 1, + sym_identifier, STATE(3376), 2, sym_line_comment, sym_block_comment, - [93529] = 4, + [93574] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6830), 1, - anon_sym_RPAREN, + ACTIONS(6846), 1, + sym_identifier, STATE(3377), 2, sym_line_comment, sym_block_comment, - [93543] = 4, + [93588] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6832), 1, - anon_sym_SEMI, + ACTIONS(6848), 1, + sym_identifier, STATE(3378), 2, sym_line_comment, sym_block_comment, - [93557] = 4, + [93602] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6834), 1, + ACTIONS(6850), 1, sym_identifier, STATE(3379), 2, sym_line_comment, sym_block_comment, - [93571] = 4, + [93616] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(6852), 1, + sym_identifier, STATE(3380), 2, sym_line_comment, sym_block_comment, - [93585] = 4, + [93630] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6838), 1, - anon_sym_COLON, + ACTIONS(6854), 1, + sym_identifier, STATE(3381), 2, sym_line_comment, sym_block_comment, - [93599] = 4, + [93644] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6840), 1, - sym_identifier, + ACTIONS(5186), 1, + anon_sym_SEMI, STATE(3382), 2, sym_line_comment, sym_block_comment, - [93613] = 4, + [93658] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6842), 1, - anon_sym_RBRACE, + ACTIONS(6856), 1, + anon_sym_SEMI, STATE(3383), 2, sym_line_comment, sym_block_comment, - [93627] = 4, + [93672] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4992), 1, - anon_sym_COLON_COLON, + ACTIONS(6858), 1, + sym_identifier, STATE(3384), 2, sym_line_comment, sym_block_comment, - [93641] = 4, + [93686] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6844), 1, - anon_sym_SEMI, + ACTIONS(6860), 1, + sym_identifier, STATE(3385), 2, sym_line_comment, sym_block_comment, - [93655] = 4, + [93700] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6846), 1, - anon_sym_COLON_COLON, + ACTIONS(6862), 1, + anon_sym_SEMI, STATE(3386), 2, sym_line_comment, sym_block_comment, - [93669] = 4, + [93714] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6848), 1, - anon_sym_fn, + ACTIONS(6864), 1, + anon_sym_SEMI, STATE(3387), 2, sym_line_comment, sym_block_comment, - [93683] = 4, + [93728] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5821), 1, - anon_sym_LBRACE, + ACTIONS(6866), 1, + anon_sym_SEMI, STATE(3388), 2, sym_line_comment, sym_block_comment, - [93697] = 4, + [93742] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6850), 1, + ACTIONS(6640), 1, anon_sym_COLON_COLON, STATE(3389), 2, sym_line_comment, sym_block_comment, - [93711] = 4, + [93756] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6852), 1, - anon_sym_SEMI, + ACTIONS(6868), 1, + anon_sym_COLON_COLON, STATE(3390), 2, sym_line_comment, sym_block_comment, - [93725] = 4, + [93770] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6854), 1, - anon_sym_SEMI, + ACTIONS(6870), 1, + anon_sym_COLON, STATE(3391), 2, sym_line_comment, sym_block_comment, - [93739] = 4, + [93784] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6856), 1, - anon_sym_RBRACE, + ACTIONS(6872), 1, + anon_sym_EQ_GT, STATE(3392), 2, sym_line_comment, sym_block_comment, - [93753] = 4, + [93798] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5549), 1, - anon_sym_RPAREN, + ACTIONS(4966), 1, + anon_sym_COLON_COLON, STATE(3393), 2, sym_line_comment, sym_block_comment, - [93767] = 4, + [93812] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6858), 1, - anon_sym_RBRACK, + ACTIONS(6874), 1, + sym_identifier, STATE(3394), 2, sym_line_comment, sym_block_comment, - [93781] = 4, + [93826] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6860), 1, - sym_identifier, + ACTIONS(6876), 1, + anon_sym_COLON_COLON, STATE(3395), 2, sym_line_comment, sym_block_comment, - [93795] = 4, + [93840] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6090), 1, - anon_sym_RBRACE, + ACTIONS(6878), 1, + anon_sym_fn, STATE(3396), 2, sym_line_comment, sym_block_comment, - [93809] = 4, + [93854] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5723), 1, - anon_sym_RBRACK, + ACTIONS(6880), 1, + anon_sym_SEMI, STATE(3397), 2, sym_line_comment, sym_block_comment, - [93823] = 4, + [93868] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6862), 1, - anon_sym_SEMI, + ACTIONS(5822), 1, + anon_sym_LBRACE, STATE(3398), 2, sym_line_comment, sym_block_comment, - [93837] = 4, + [93882] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6864), 1, + ACTIONS(3922), 1, anon_sym_COLON_COLON, STATE(3399), 2, sym_line_comment, sym_block_comment, - [93851] = 4, + [93896] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6866), 1, - anon_sym_SEMI, + ACTIONS(6882), 1, + sym_identifier, STATE(3400), 2, sym_line_comment, sym_block_comment, - [93865] = 4, + [93910] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6868), 1, - sym__raw_string_literal_end, + ACTIONS(6884), 1, + anon_sym_RBRACE, STATE(3401), 2, sym_line_comment, sym_block_comment, - [93879] = 4, + [93924] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6870), 1, - anon_sym_EQ_GT, + ACTIONS(6886), 1, + sym_identifier, STATE(3402), 2, sym_line_comment, sym_block_comment, - [93893] = 4, + [93938] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5226), 1, - anon_sym_COLON_COLON, + ACTIONS(6888), 1, + sym_identifier, STATE(3403), 2, sym_line_comment, sym_block_comment, - [93907] = 4, + [93952] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6872), 1, - anon_sym_RBRACK, + ACTIONS(3136), 1, + anon_sym_PLUS, STATE(3404), 2, sym_line_comment, sym_block_comment, - [93921] = 4, + [93966] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6874), 1, - sym_identifier, + ACTIONS(6890), 1, + anon_sym_RBRACK, STATE(3405), 2, sym_line_comment, sym_block_comment, - [93935] = 4, + [93980] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6876), 1, - sym_identifier, + ACTIONS(6892), 1, + anon_sym_RBRACE, STATE(3406), 2, sym_line_comment, sym_block_comment, - [93949] = 4, + [93994] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6878), 1, - sym_identifier, + ACTIONS(5544), 1, + anon_sym_RPAREN, STATE(3407), 2, sym_line_comment, sym_block_comment, - [93963] = 4, + [94008] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6880), 1, - anon_sym_SEMI, + ACTIONS(6894), 1, + sym_identifier, STATE(3408), 2, sym_line_comment, sym_block_comment, - [93977] = 4, + [94022] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6608), 1, - anon_sym_SEMI, + ACTIONS(6896), 1, + sym_identifier, STATE(3409), 2, sym_line_comment, sym_block_comment, - [93991] = 4, + [94036] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5843), 1, - anon_sym_RPAREN, + ACTIONS(6898), 1, + anon_sym_SEMI, STATE(3410), 2, sym_line_comment, sym_block_comment, - [94005] = 4, + [94050] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6882), 1, + ACTIONS(6900), 1, anon_sym_SEMI, STATE(3411), 2, sym_line_comment, sym_block_comment, - [94019] = 4, + [94064] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6884), 1, - sym__line_doc_content, + ACTIONS(6902), 1, + anon_sym_fn, STATE(3412), 2, sym_line_comment, sym_block_comment, - [94033] = 4, + [94078] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6610), 1, - anon_sym_SEMI, + ACTIONS(4992), 1, + anon_sym_COLON_COLON, STATE(3413), 2, sym_line_comment, sym_block_comment, - [94047] = 4, + [94092] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6886), 1, - sym__raw_string_literal_end, + ACTIONS(6119), 1, + anon_sym_RBRACE, STATE(3414), 2, sym_line_comment, sym_block_comment, - [94061] = 4, + [94106] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6888), 1, + ACTIONS(6904), 1, sym_identifier, STATE(3415), 2, sym_line_comment, sym_block_comment, - [94075] = 4, + [94120] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6890), 1, - anon_sym_RBRACE, + ACTIONS(6906), 1, + sym_identifier, STATE(3416), 2, sym_line_comment, sym_block_comment, - [94089] = 4, + [94134] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6892), 1, - sym_identifier, + ACTIONS(6908), 1, + anon_sym_EQ_GT, STATE(3417), 2, sym_line_comment, sym_block_comment, - [94103] = 4, - ACTIONS(103), 1, + [94148] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6350), 1, - anon_sym_RBRACE, + ACTIONS(6910), 1, + aux_sym_line_comment_token2, STATE(3418), 2, sym_line_comment, sym_block_comment, - [94117] = 4, + [94162] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6894), 1, - anon_sym_RPAREN, + ACTIONS(6912), 1, + anon_sym_SEMI, STATE(3419), 2, sym_line_comment, sym_block_comment, - [94131] = 4, + [94176] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6896), 1, - anon_sym_RPAREN, + ACTIONS(6914), 1, + anon_sym_COLON, STATE(3420), 2, sym_line_comment, sym_block_comment, - [94145] = 4, + [94190] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6748), 1, - anon_sym_LBRACK, + ACTIONS(6916), 1, + sym__raw_string_literal_end, STATE(3421), 2, sym_line_comment, sym_block_comment, - [94159] = 4, + [94204] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6148), 1, - anon_sym_RBRACE, + ACTIONS(6918), 1, + anon_sym_SEMI, STATE(3422), 2, sym_line_comment, sym_block_comment, - [94173] = 4, + [94218] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4565), 1, - anon_sym_COLON_COLON, + ACTIONS(6920), 1, + anon_sym_SEMI, STATE(3423), 2, sym_line_comment, sym_block_comment, - [94187] = 4, + [94232] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6250), 1, - anon_sym_RBRACE, + ACTIONS(6922), 1, + anon_sym_RPAREN, STATE(3424), 2, sym_line_comment, sym_block_comment, - [94201] = 4, + [94246] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6898), 1, - anon_sym_LPAREN, + ACTIONS(6924), 1, + anon_sym_COLON, STATE(3425), 2, sym_line_comment, sym_block_comment, - [94215] = 4, + [94260] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6900), 1, - anon_sym_SEMI, + ACTIONS(6926), 1, + sym_identifier, STATE(3426), 2, sym_line_comment, sym_block_comment, - [94229] = 4, + [94274] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, - anon_sym_SEMI, + ACTIONS(6928), 1, + anon_sym_RBRACE, STATE(3427), 2, sym_line_comment, sym_block_comment, - [94243] = 4, + [94288] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6904), 1, - anon_sym_fn, + ACTIONS(6076), 1, + anon_sym_RBRACE, STATE(3428), 2, sym_line_comment, sym_block_comment, - [94257] = 4, + [94302] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6906), 1, - anon_sym_COLON, + ACTIONS(5496), 1, + anon_sym_RPAREN, STATE(3429), 2, sym_line_comment, sym_block_comment, - [94271] = 4, + [94316] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6908), 1, - anon_sym_RBRACK, + ACTIONS(6930), 1, + anon_sym_COLON, STATE(3430), 2, sym_line_comment, sym_block_comment, - [94285] = 4, + [94330] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6910), 1, - sym__line_doc_content, + ACTIONS(4028), 1, + sym_identifier, STATE(3431), 2, sym_line_comment, sym_block_comment, - [94299] = 4, + [94344] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6912), 1, - anon_sym_STAR_SLASH, + ACTIONS(6932), 1, + anon_sym_EQ, STATE(3432), 2, sym_line_comment, sym_block_comment, - [94313] = 4, + [94358] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6914), 1, - anon_sym_SEMI, + ACTIONS(6934), 1, + anon_sym_LBRACK, STATE(3433), 2, sym_line_comment, sym_block_comment, - [94327] = 4, + [94372] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6916), 1, - anon_sym_STAR_SLASH, + ACTIONS(6936), 1, + sym__raw_string_literal_end, STATE(3434), 2, sym_line_comment, sym_block_comment, - [94341] = 4, + [94386] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6918), 1, - anon_sym_SEMI, + ACTIONS(6938), 1, + sym__line_doc_content, STATE(3435), 2, sym_line_comment, sym_block_comment, - [94355] = 4, + [94400] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6920), 1, - sym_identifier, + ACTIONS(5451), 1, + anon_sym_RPAREN, STATE(3436), 2, sym_line_comment, sym_block_comment, - [94369] = 4, + [94414] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6922), 1, - anon_sym_SEMI, + ACTIONS(6940), 1, + sym__raw_string_literal_end, STATE(3437), 2, sym_line_comment, sym_block_comment, - [94383] = 4, + [94428] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6924), 1, - anon_sym_SEMI, + ACTIONS(6942), 1, + anon_sym_RPAREN, STATE(3438), 2, sym_line_comment, sym_block_comment, - [94397] = 4, + [94442] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6926), 1, - anon_sym_RPAREN, + ACTIONS(6944), 1, + anon_sym_SEMI, STATE(3439), 2, sym_line_comment, sym_block_comment, - [94411] = 4, + [94456] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(947), 1, - anon_sym_EQ_GT, + ACTIONS(6946), 1, + anon_sym_COLON, STATE(3440), 2, sym_line_comment, sym_block_comment, - [94425] = 4, + [94470] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6928), 1, - anon_sym_COLON, + ACTIONS(1017), 1, + anon_sym_RBRACK, STATE(3441), 2, sym_line_comment, sym_block_comment, - [94439] = 4, + [94484] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4697), 1, - anon_sym_COLON_COLON, + ACTIONS(6948), 1, + anon_sym_SEMI, STATE(3442), 2, sym_line_comment, sym_block_comment, - [94453] = 4, + [94498] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6930), 1, - anon_sym_SEMI, + ACTIONS(6950), 1, + anon_sym_RBRACK, STATE(3443), 2, sym_line_comment, sym_block_comment, - [94467] = 4, + [94512] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6932), 1, - anon_sym_fn, + ACTIONS(6952), 1, + anon_sym_SEMI, STATE(3444), 2, sym_line_comment, sym_block_comment, - [94481] = 4, + [94526] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6934), 1, - anon_sym_LPAREN, + ACTIONS(6954), 1, + anon_sym_RBRACE, STATE(3445), 2, sym_line_comment, sym_block_comment, - [94495] = 4, + [94540] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6936), 1, + ACTIONS(6956), 1, sym_identifier, STATE(3446), 2, sym_line_comment, sym_block_comment, - [94509] = 4, + [94554] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6938), 1, - anon_sym_RPAREN, + ACTIONS(6958), 1, + anon_sym_RBRACK, STATE(3447), 2, sym_line_comment, sym_block_comment, - [94523] = 4, + [94568] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6940), 1, - sym_identifier, + ACTIONS(6768), 1, + anon_sym_LBRACK, STATE(3448), 2, sym_line_comment, sym_block_comment, - [94537] = 4, + [94582] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6377), 1, - anon_sym_GT, + ACTIONS(6960), 1, + sym__line_doc_content, STATE(3449), 2, sym_line_comment, sym_block_comment, - [94551] = 4, + [94596] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6942), 1, - anon_sym_EQ_GT, + ACTIONS(5830), 1, + anon_sym_RPAREN, STATE(3450), 2, sym_line_comment, sym_block_comment, - [94565] = 4, + [94610] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6944), 1, - anon_sym_SEMI, + ACTIONS(6962), 1, + sym_identifier, STATE(3451), 2, sym_line_comment, sym_block_comment, - [94579] = 4, + [94624] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6946), 1, - anon_sym_EQ_GT, + ACTIONS(6964), 1, + anon_sym_SEMI, STATE(3452), 2, sym_line_comment, sym_block_comment, - [94593] = 4, + [94638] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6948), 1, - sym_identifier, + ACTIONS(5977), 1, + anon_sym_RBRACE, STATE(3453), 2, sym_line_comment, sym_block_comment, - [94607] = 4, + [94652] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6950), 1, - sym__raw_string_literal_end, + ACTIONS(6966), 1, + anon_sym_RPAREN, STATE(3454), 2, sym_line_comment, sym_block_comment, - [94621] = 4, + [94666] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3148), 1, - anon_sym_PLUS, + ACTIONS(6001), 1, + anon_sym_RBRACE, STATE(3455), 2, sym_line_comment, sym_block_comment, - [94635] = 4, + [94680] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3910), 1, - anon_sym_COLON_COLON, + ACTIONS(5680), 1, + anon_sym_RPAREN, STATE(3456), 2, sym_line_comment, sym_block_comment, - [94649] = 4, + [94694] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6952), 1, - sym__line_doc_content, + ACTIONS(6022), 1, + anon_sym_RBRACE, STATE(3457), 2, sym_line_comment, sym_block_comment, - [94663] = 4, + [94708] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6954), 1, - anon_sym_SEMI, + ACTIONS(5172), 1, + anon_sym_COLON_COLON, STATE(3458), 2, sym_line_comment, sym_block_comment, - [94677] = 4, + [94722] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6956), 1, - sym_identifier, + ACTIONS(6968), 1, + anon_sym_RBRACE, STATE(3459), 2, sym_line_comment, sym_block_comment, - [94691] = 4, + [94736] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(867), 1, - anon_sym_RBRACK, + ACTIONS(6970), 1, + anon_sym_SEMI, STATE(3460), 2, sym_line_comment, sym_block_comment, - [94705] = 4, + [94750] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6958), 1, - anon_sym_COLON_COLON, + ACTIONS(5834), 1, + anon_sym_RBRACK, STATE(3461), 2, sym_line_comment, sym_block_comment, - [94719] = 4, + [94764] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6274), 1, - anon_sym_RBRACE, + ACTIONS(6972), 1, + anon_sym_LPAREN, STATE(3462), 2, sym_line_comment, sym_block_comment, - [94733] = 4, + [94778] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6960), 1, - sym__raw_string_literal_end, + ACTIONS(6974), 1, + anon_sym_SEMI, STATE(3463), 2, sym_line_comment, sym_block_comment, - [94747] = 4, + [94792] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6962), 1, - sym_identifier, + ACTIONS(740), 1, + anon_sym_RBRACK, STATE(3464), 2, sym_line_comment, sym_block_comment, - [94761] = 4, + [94806] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6964), 1, - sym_identifier, + ACTIONS(6976), 1, + anon_sym_SEMI, STATE(3465), 2, sym_line_comment, sym_block_comment, - [94775] = 4, + [94820] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6966), 1, - anon_sym_SEMI, + ACTIONS(6978), 1, + sym_identifier, STATE(3466), 2, sym_line_comment, sym_block_comment, - [94789] = 4, + [94834] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5599), 1, - anon_sym_RPAREN, + ACTIONS(6980), 1, + anon_sym_COLON_COLON, STATE(3467), 2, sym_line_comment, sym_block_comment, - [94803] = 4, + [94848] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6968), 1, - sym_raw_string_literal_content, + ACTIONS(6982), 1, + anon_sym_SEMI, STATE(3468), 2, sym_line_comment, sym_block_comment, - [94817] = 4, + [94862] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6970), 1, - anon_sym_EQ_GT, + ACTIONS(6407), 1, + anon_sym_GT, STATE(3469), 2, sym_line_comment, sym_block_comment, - [94831] = 4, + [94876] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(985), 1, + ACTIONS(885), 1, anon_sym_RBRACK, STATE(3470), 2, sym_line_comment, sym_block_comment, - [94845] = 4, + [94890] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6972), 1, - anon_sym_SEMI, + ACTIONS(6984), 1, + sym_identifier, STATE(3471), 2, sym_line_comment, sym_block_comment, - [94859] = 4, + [94904] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6974), 1, - anon_sym_SEMI, + ACTIONS(6986), 1, + sym__raw_string_literal_end, STATE(3472), 2, sym_line_comment, sym_block_comment, - [94873] = 4, + [94918] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6976), 1, - anon_sym_SEMI, + ACTIONS(5959), 1, + anon_sym_RBRACE, STATE(3473), 2, sym_line_comment, sym_block_comment, - [94887] = 4, + [94932] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6322), 1, - anon_sym_RBRACE, + ACTIONS(6988), 1, + anon_sym_SEMI, STATE(3474), 2, sym_line_comment, sym_block_comment, - [94901] = 4, + [94946] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6978), 1, - anon_sym_COLON, + ACTIONS(6990), 1, + sym_identifier, STATE(3475), 2, sym_line_comment, sym_block_comment, - [94915] = 4, + [94960] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6020), 1, - anon_sym_RBRACE, + ACTIONS(6992), 1, + sym_identifier, STATE(3476), 2, sym_line_comment, sym_block_comment, - [94929] = 4, + [94974] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6980), 1, - anon_sym_COLON_COLON, + ACTIONS(6994), 1, + sym_identifier, STATE(3477), 2, sym_line_comment, sym_block_comment, - [94943] = 4, + [94988] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6982), 1, - sym_raw_string_literal_content, + ACTIONS(6996), 1, + sym_identifier, STATE(3478), 2, sym_line_comment, sym_block_comment, - [94957] = 4, + [95002] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6984), 1, - anon_sym_EQ, + ACTIONS(6998), 1, + anon_sym_SEMI, STATE(3479), 2, sym_line_comment, sym_block_comment, - [94971] = 4, + [95016] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6986), 1, - anon_sym_SEMI, + ACTIONS(7000), 1, + sym_identifier, STATE(3480), 2, sym_line_comment, sym_block_comment, - [94985] = 4, + [95030] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6988), 1, + ACTIONS(7002), 1, anon_sym_SEMI, STATE(3481), 2, sym_line_comment, sym_block_comment, - [94999] = 4, + [95044] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4134), 1, - anon_sym_COLON_COLON, + ACTIONS(7004), 1, + sym__line_doc_content, STATE(3482), 2, sym_line_comment, sym_block_comment, - [95013] = 4, + [95058] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5623), 1, - anon_sym_COLON_COLON, + ACTIONS(7006), 1, + anon_sym_SEMI, STATE(3483), 2, sym_line_comment, sym_block_comment, - [95027] = 4, + [95072] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6990), 1, - sym_identifier, + ACTIONS(3084), 1, + anon_sym_PLUS, STATE(3484), 2, sym_line_comment, sym_block_comment, - [95041] = 4, + [95086] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6992), 1, - sym_identifier, + ACTIONS(5860), 1, + anon_sym_RPAREN, STATE(3485), 2, sym_line_comment, sym_block_comment, - [95055] = 4, + [95100] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6994), 1, - anon_sym_COLON_COLON, + ACTIONS(7008), 1, + anon_sym_SEMI, STATE(3486), 2, sym_line_comment, sym_block_comment, - [95069] = 4, + [95114] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6996), 1, - anon_sym_RBRACE, + ACTIONS(7010), 1, + sym_identifier, STATE(3487), 2, sym_line_comment, sym_block_comment, - [95083] = 4, + [95128] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6998), 1, + ACTIONS(7012), 1, anon_sym_SEMI, STATE(3488), 2, sym_line_comment, sym_block_comment, - [95097] = 4, + [95142] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5202), 1, - anon_sym_SEMI, + ACTIONS(7014), 1, + sym_raw_string_literal_content, STATE(3489), 2, sym_line_comment, sym_block_comment, - [95111] = 4, + [95156] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7000), 1, - sym_identifier, + ACTIONS(7016), 1, + sym__line_doc_content, STATE(3490), 2, sym_line_comment, sym_block_comment, - [95125] = 4, + [95170] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7002), 1, - anon_sym_COLON_COLON, + ACTIONS(7018), 1, + sym_identifier, STATE(3491), 2, sym_line_comment, sym_block_comment, - [95139] = 4, + [95184] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7004), 1, - anon_sym_SEMI, + ACTIONS(6141), 1, + anon_sym_RBRACE, STATE(3492), 2, sym_line_comment, sym_block_comment, - [95153] = 4, + [95198] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7006), 1, - anon_sym_RBRACE, + ACTIONS(4136), 1, + anon_sym_COLON_COLON, STATE(3493), 2, sym_line_comment, sym_block_comment, - [95167] = 4, + [95212] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7008), 1, + ACTIONS(5925), 1, anon_sym_COLON_COLON, STATE(3494), 2, sym_line_comment, sym_block_comment, - [95181] = 4, + [95226] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5495), 1, - anon_sym_RPAREN, + ACTIONS(7020), 1, + anon_sym_SEMI, STATE(3495), 2, sym_line_comment, sym_block_comment, - [95195] = 4, + [95240] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6738), 1, + ACTIONS(7022), 1, anon_sym_SEMI, STATE(3496), 2, sym_line_comment, sym_block_comment, - [95209] = 4, + [95254] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4954), 1, - anon_sym_COLON_COLON, + ACTIONS(7024), 1, + anon_sym_SEMI, STATE(3497), 2, sym_line_comment, sym_block_comment, - [95223] = 4, + [95268] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7010), 1, - anon_sym_RBRACE, + ACTIONS(7026), 1, + anon_sym_COLON_COLON, STATE(3498), 2, sym_line_comment, sym_block_comment, - [95237] = 4, + [95282] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7012), 1, - anon_sym_COLON_COLON, + ACTIONS(7028), 1, + anon_sym_RBRACE, STATE(3499), 2, sym_line_comment, sym_block_comment, - [95251] = 4, + [95296] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7014), 1, - anon_sym_fn, + ACTIONS(7030), 1, + anon_sym_COLON, STATE(3500), 2, sym_line_comment, sym_block_comment, - [95265] = 4, + [95310] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7016), 1, - anon_sym_EQ_GT, + ACTIONS(7032), 1, + anon_sym_SEMI, STATE(3501), 2, sym_line_comment, sym_block_comment, - [95279] = 4, + [95324] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7018), 1, - anon_sym_LBRACE, + ACTIONS(7034), 1, + anon_sym_fn, STATE(3502), 2, sym_line_comment, sym_block_comment, - [95293] = 4, + [95338] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7020), 1, - anon_sym_SEMI, + ACTIONS(4550), 1, + anon_sym_fn, STATE(3503), 2, sym_line_comment, sym_block_comment, - [95307] = 4, + [95352] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7022), 1, - anon_sym_SEMI, + ACTIONS(7036), 1, + anon_sym_COLON_COLON, STATE(3504), 2, sym_line_comment, sym_block_comment, - [95321] = 4, + [95366] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7024), 1, - ts_builtin_sym_end, + ACTIONS(5182), 1, + anon_sym_SEMI, STATE(3505), 2, sym_line_comment, sym_block_comment, - [95335] = 4, + [95380] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7026), 1, - sym_self, + ACTIONS(7038), 1, + sym_identifier, STATE(3506), 2, sym_line_comment, sym_block_comment, - [95349] = 4, + [95394] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7028), 1, - sym_identifier, + ACTIONS(7040), 1, + anon_sym_COLON_COLON, STATE(3507), 2, sym_line_comment, sym_block_comment, - [95363] = 4, + [95408] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7030), 1, - anon_sym_COLON, + ACTIONS(937), 1, + anon_sym_EQ_GT, STATE(3508), 2, sym_line_comment, sym_block_comment, - [95377] = 4, + [95422] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7032), 1, - sym_identifier, + ACTIONS(7042), 1, + anon_sym_SEMI, STATE(3509), 2, sym_line_comment, sym_block_comment, - [95391] = 4, + [95436] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7034), 1, - anon_sym_SEMI, + ACTIONS(4986), 1, + anon_sym_COLON_COLON, STATE(3510), 2, sym_line_comment, sym_block_comment, - [95405] = 4, + [95450] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7036), 1, - sym_raw_string_literal_content, + ACTIONS(7044), 1, + anon_sym_STAR_SLASH, STATE(3511), 2, sym_line_comment, sym_block_comment, - [95419] = 4, + [95464] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7038), 1, - sym_identifier, + ACTIONS(7046), 1, + anon_sym_COLON_COLON, STATE(3512), 2, sym_line_comment, sym_block_comment, - [95433] = 4, + [95478] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7040), 1, - sym_identifier, + ACTIONS(7048), 1, + anon_sym_fn, STATE(3513), 2, sym_line_comment, sym_block_comment, - [95447] = 4, + [95492] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7042), 1, - anon_sym_SEMI, + ACTIONS(7050), 1, + sym_identifier, STATE(3514), 2, sym_line_comment, sym_block_comment, - [95461] = 4, + [95506] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7044), 1, - anon_sym_COLON_COLON, + ACTIONS(7052), 1, + anon_sym_LBRACE, STATE(3515), 2, sym_line_comment, sym_block_comment, - [95475] = 4, + [95520] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7046), 1, - anon_sym_COLON, + ACTIONS(7054), 1, + sym__raw_string_literal_end, STATE(3516), 2, sym_line_comment, sym_block_comment, - [95489] = 4, + [95534] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7048), 1, + ACTIONS(6600), 1, anon_sym_SEMI, STATE(3517), 2, sym_line_comment, sym_block_comment, - [95503] = 4, + [95548] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7050), 1, - anon_sym_COLON_COLON, + ACTIONS(5782), 1, + anon_sym_RPAREN, STATE(3518), 2, sym_line_comment, sym_block_comment, - [95517] = 4, + [95562] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7052), 1, - sym_identifier, + ACTIONS(7056), 1, + anon_sym_EQ_GT, STATE(3519), 2, sym_line_comment, sym_block_comment, - [95531] = 4, + [95576] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4098), 1, - anon_sym_RPAREN, + ACTIONS(6468), 1, + anon_sym_COLON_COLON, STATE(3520), 2, sym_line_comment, sym_block_comment, - [95545] = 4, + [95590] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7054), 1, - anon_sym_COLON_COLON, + ACTIONS(7058), 1, + anon_sym_SEMI, STATE(3521), 2, sym_line_comment, sym_block_comment, - [95559] = 4, + [95604] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5813), 1, - anon_sym_RPAREN, + ACTIONS(7060), 1, + anon_sym_SEMI, STATE(3522), 2, sym_line_comment, sym_block_comment, - [95573] = 4, + [95618] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7056), 1, - sym_identifier, + ACTIONS(7062), 1, + sym_raw_string_literal_content, STATE(3523), 2, sym_line_comment, sym_block_comment, - [95587] = 4, + [95632] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7058), 1, - anon_sym_COLON_COLON, + ACTIONS(7064), 1, + anon_sym_SEMI, STATE(3524), 2, sym_line_comment, sym_block_comment, - [95601] = 4, + [95646] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7060), 1, - anon_sym_LBRACE, + ACTIONS(7066), 1, + anon_sym_RBRACE, STATE(3525), 2, sym_line_comment, sym_block_comment, - [95615] = 4, + [95660] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7062), 1, - anon_sym_LBRACK, + ACTIONS(7068), 1, + anon_sym_COLON, STATE(3526), 2, sym_line_comment, sym_block_comment, - [95629] = 4, + [95674] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5627), 1, - anon_sym_RPAREN, + ACTIONS(7070), 1, + anon_sym_COLON_COLON, STATE(3527), 2, sym_line_comment, sym_block_comment, - [95643] = 4, + [95688] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4512), 1, - anon_sym_fn, + ACTIONS(7072), 1, + anon_sym_SEMI, STATE(3528), 2, sym_line_comment, sym_block_comment, - [95657] = 4, + [95702] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7064), 1, - anon_sym_RBRACK, + ACTIONS(5714), 1, + anon_sym_LBRACE, STATE(3529), 2, sym_line_comment, sym_block_comment, - [95671] = 4, + [95716] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7066), 1, - sym_raw_string_literal_content, + ACTIONS(7074), 1, + anon_sym_COLON_COLON, STATE(3530), 2, sym_line_comment, sym_block_comment, - [95685] = 4, + [95730] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3369), 1, - anon_sym_COLON_COLON, + ACTIONS(6526), 1, + anon_sym_SEMI, STATE(3531), 2, sym_line_comment, sym_block_comment, - [95699] = 4, + [95744] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7068), 1, - sym__line_doc_content, + ACTIONS(7076), 1, + anon_sym_SEMI, STATE(3532), 2, sym_line_comment, sym_block_comment, - [95713] = 4, + [95758] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7070), 1, + ACTIONS(7078), 1, anon_sym_COLON_COLON, STATE(3533), 2, sym_line_comment, sym_block_comment, - [95727] = 4, + [95772] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7072), 1, - anon_sym_SEMI, + ACTIONS(7080), 1, + anon_sym_RBRACK, STATE(3534), 2, sym_line_comment, sym_block_comment, - [95741] = 4, + [95786] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7074), 1, - anon_sym_LBRACE, + ACTIONS(7082), 1, + anon_sym_COLON_COLON, STATE(3535), 2, sym_line_comment, sym_block_comment, - [95755] = 4, + [95800] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7076), 1, - sym_raw_string_literal_content, + ACTIONS(7084), 1, + anon_sym_LBRACE, STATE(3536), 2, sym_line_comment, sym_block_comment, - [95769] = 4, + [95814] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5156), 1, - anon_sym_COLON_COLON, + ACTIONS(5228), 1, + anon_sym_SEMI, STATE(3537), 2, sym_line_comment, sym_block_comment, - [95783] = 4, + [95828] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7078), 1, - anon_sym_COLON_COLON, + ACTIONS(7086), 1, + anon_sym_RBRACK, STATE(3538), 2, sym_line_comment, sym_block_comment, - [95797] = 4, + [95842] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5871), 1, - anon_sym_LBRACE, + ACTIONS(7088), 1, + anon_sym_RBRACK, STATE(3539), 2, sym_line_comment, sym_block_comment, - [95811] = 4, + [95856] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5719), 1, + ACTIONS(4576), 1, anon_sym_COLON_COLON, STATE(3540), 2, sym_line_comment, sym_block_comment, - [95825] = 4, + [95870] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7080), 1, - anon_sym_COLON_COLON, + ACTIONS(7090), 1, + sym_raw_string_literal_content, STATE(3541), 2, sym_line_comment, sym_block_comment, - [95839] = 4, + [95884] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5887), 1, - anon_sym_LBRACE, + ACTIONS(3559), 1, + anon_sym_COLON_COLON, STATE(3542), 2, sym_line_comment, sym_block_comment, - [95853] = 4, + [95898] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7082), 1, - anon_sym_COLON_COLON, + ACTIONS(7092), 1, + anon_sym_STAR_SLASH, STATE(3543), 2, sym_line_comment, sym_block_comment, - [95867] = 4, + [95912] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5172), 1, + ACTIONS(7094), 1, anon_sym_COLON_COLON, STATE(3544), 2, sym_line_comment, sym_block_comment, - [95881] = 4, + [95926] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5212), 1, - anon_sym_COLON_COLON, + ACTIONS(7096), 1, + anon_sym_SEMI, STATE(3545), 2, sym_line_comment, sym_block_comment, - [95895] = 4, + [95940] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4128), 1, - anon_sym_COLON_COLON, + ACTIONS(7098), 1, + anon_sym_LBRACE, STATE(3546), 2, sym_line_comment, sym_block_comment, - [95909] = 4, + [95954] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7084), 1, - anon_sym_COLON_COLON, + ACTIONS(7100), 1, + sym_raw_string_literal_content, STATE(3547), 2, sym_line_comment, sym_block_comment, - [95923] = 4, + [95968] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7086), 1, - anon_sym_SEMI, + ACTIONS(5216), 1, + anon_sym_COLON_COLON, STATE(3548), 2, sym_line_comment, sym_block_comment, - [95937] = 4, + [95982] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7088), 1, - anon_sym_RPAREN, + ACTIONS(7102), 1, + anon_sym_COLON_COLON, STATE(3549), 2, sym_line_comment, sym_block_comment, - [95951] = 4, + [95996] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6190), 1, - anon_sym_RBRACE, + ACTIONS(5883), 1, + anon_sym_LBRACE, STATE(3550), 2, sym_line_comment, sym_block_comment, - [95965] = 4, + [96010] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7090), 1, - anon_sym_COLON, + ACTIONS(5792), 1, + anon_sym_COLON_COLON, STATE(3551), 2, sym_line_comment, sym_block_comment, - [95979] = 4, + [96024] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7092), 1, - anon_sym_COLON, + ACTIONS(7104), 1, + anon_sym_COLON_COLON, STATE(3552), 2, sym_line_comment, sym_block_comment, - [95993] = 4, + [96038] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7094), 1, - anon_sym_LBRACK, + ACTIONS(5907), 1, + anon_sym_LBRACE, STATE(3553), 2, sym_line_comment, sym_block_comment, - [96007] = 4, + [96052] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7096), 1, - sym_identifier, + ACTIONS(7106), 1, + anon_sym_COLON_COLON, STATE(3554), 2, sym_line_comment, sym_block_comment, - [96021] = 4, + [96066] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7098), 1, - anon_sym_LBRACK, + ACTIONS(5222), 1, + anon_sym_COLON_COLON, STATE(3555), 2, sym_line_comment, sym_block_comment, - [96035] = 4, + [96080] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7100), 1, - anon_sym_COLON, + ACTIONS(5244), 1, + anon_sym_COLON_COLON, STATE(3556), 2, sym_line_comment, sym_block_comment, - [96049] = 4, + [96094] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7102), 1, - anon_sym_COLON, + ACTIONS(4126), 1, + anon_sym_COLON_COLON, STATE(3557), 2, sym_line_comment, sym_block_comment, - [96063] = 4, + [96108] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7104), 1, - sym_identifier, + ACTIONS(7108), 1, + anon_sym_COLON_COLON, STATE(3558), 2, sym_line_comment, sym_block_comment, - [96077] = 4, + [96122] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7106), 1, + ACTIONS(6550), 1, anon_sym_SEMI, STATE(3559), 2, sym_line_comment, sym_block_comment, - [96091] = 4, + [96136] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5829), 1, - anon_sym_RBRACK, + ACTIONS(7110), 1, + anon_sym_RPAREN, STATE(3560), 2, sym_line_comment, sym_block_comment, - [96105] = 4, + [96150] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5206), 1, - anon_sym_SEMI, + ACTIONS(4743), 1, + anon_sym_COLON_COLON, STATE(3561), 2, sym_line_comment, sym_block_comment, - [96119] = 4, + [96164] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7108), 1, - anon_sym_COLON, + ACTIONS(7112), 1, + anon_sym_RBRACK, STATE(3562), 2, sym_line_comment, sym_block_comment, - [96133] = 4, + [96178] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7110), 1, - sym_identifier, + ACTIONS(7114), 1, + anon_sym_COLON, STATE(3563), 2, sym_line_comment, sym_block_comment, - [96147] = 4, + [96192] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7112), 1, - sym_identifier, + ACTIONS(7116), 1, + anon_sym_LBRACK, STATE(3564), 2, sym_line_comment, sym_block_comment, - [96161] = 4, + [96206] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7114), 1, - anon_sym_SEMI, + ACTIONS(7118), 1, + anon_sym_EQ_GT, STATE(3565), 2, sym_line_comment, sym_block_comment, - [96175] = 4, + [96220] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7116), 1, - sym_identifier, + ACTIONS(7120), 1, + anon_sym_LBRACK, STATE(3566), 2, sym_line_comment, sym_block_comment, - [96189] = 4, + [96234] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5660), 1, - anon_sym_RPAREN, + ACTIONS(7122), 1, + anon_sym_COLON, STATE(3567), 2, sym_line_comment, sym_block_comment, - [96203] = 4, + [96248] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7118), 1, - anon_sym_SEMI, + ACTIONS(7124), 1, + anon_sym_COLON, STATE(3568), 2, sym_line_comment, sym_block_comment, - [96217] = 4, + [96262] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7120), 1, - anon_sym_COLON, + ACTIONS(7126), 1, + anon_sym_SEMI, STATE(3569), 2, sym_line_comment, sym_block_comment, - [96231] = 4, + [96276] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7122), 1, - sym_identifier, + ACTIONS(7128), 1, + anon_sym_SEMI, STATE(3570), 2, sym_line_comment, sym_block_comment, - [96245] = 4, + [96290] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7124), 1, + ACTIONS(7130), 1, anon_sym_SEMI, STATE(3571), 2, sym_line_comment, sym_block_comment, - [96259] = 4, + [96304] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7126), 1, - anon_sym_COLON, + ACTIONS(5564), 1, + anon_sym_RPAREN, STATE(3572), 2, sym_line_comment, sym_block_comment, - [96273] = 4, + [96318] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7128), 1, + ACTIONS(7132), 1, anon_sym_COLON, STATE(3573), 2, sym_line_comment, sym_block_comment, - [96287] = 4, + [96332] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7130), 1, - anon_sym_EQ_GT, + ACTIONS(7134), 1, + sym_self, STATE(3574), 2, sym_line_comment, sym_block_comment, - [96301] = 4, + [96346] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7132), 1, - sym_identifier, + ACTIONS(7136), 1, + anon_sym_SEMI, STATE(3575), 2, sym_line_comment, sym_block_comment, - [96315] = 4, + [96360] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7134), 1, - anon_sym_COLON, + ACTIONS(7138), 1, + sym_identifier, STATE(3576), 2, sym_line_comment, sym_block_comment, - [96329] = 4, + [96374] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7136), 1, - anon_sym_COLON, + ACTIONS(7140), 1, + anon_sym_COLON_COLON, STATE(3577), 2, sym_line_comment, sym_block_comment, - [96343] = 4, + [96388] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7138), 1, - anon_sym_RBRACE, + ACTIONS(7142), 1, + sym_identifier, STATE(3578), 2, sym_line_comment, sym_block_comment, - [96357] = 4, + [96402] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, - anon_sym_RBRACK, + ACTIONS(5933), 1, + anon_sym_RBRACE, STATE(3579), 2, sym_line_comment, sym_block_comment, - [96371] = 4, + [96416] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7140), 1, - anon_sym_SEMI, + ACTIONS(7144), 1, + anon_sym_COLON_COLON, STATE(3580), 2, sym_line_comment, sym_block_comment, - [96385] = 4, + [96430] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7142), 1, - sym__raw_string_literal_end, + ACTIONS(925), 1, + anon_sym_EQ_GT, STATE(3581), 2, sym_line_comment, sym_block_comment, - [96399] = 4, + [96444] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7144), 1, - anon_sym_COLON, + ACTIONS(7146), 1, + anon_sym_fn, STATE(3582), 2, sym_line_comment, sym_block_comment, - [96413] = 4, + [96458] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7146), 1, - anon_sym_SEMI, + ACTIONS(7148), 1, + anon_sym_COLON, STATE(3583), 2, sym_line_comment, sym_block_comment, - [96427] = 4, + [96472] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7148), 1, - anon_sym_SEMI, + ACTIONS(7150), 1, + sym_identifier, STATE(3584), 2, sym_line_comment, sym_block_comment, - [96441] = 4, + [96486] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6516), 1, + ACTIONS(7152), 1, anon_sym_SEMI, STATE(3585), 2, sym_line_comment, sym_block_comment, - [96455] = 4, + [96500] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7150), 1, - anon_sym_RBRACK, + ACTIONS(7154), 1, + anon_sym_SEMI, STATE(3586), 2, sym_line_comment, sym_block_comment, - [96469] = 4, + [96514] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7152), 1, - anon_sym_SEMI, + ACTIONS(7156), 1, + anon_sym_COLON, STATE(3587), 2, sym_line_comment, sym_block_comment, - [96483] = 4, + [96528] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7154), 1, - anon_sym_SEMI, + ACTIONS(4158), 1, + anon_sym_RPAREN, STATE(3588), 2, sym_line_comment, sym_block_comment, - [96497] = 4, + [96542] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7156), 1, - anon_sym_EQ, + ACTIONS(7158), 1, + anon_sym_COLON, STATE(3589), 2, sym_line_comment, sym_block_comment, - [96511] = 4, + [96556] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, - anon_sym_EQ_GT, + ACTIONS(7160), 1, + sym__line_doc_content, STATE(3590), 2, sym_line_comment, sym_block_comment, - [96525] = 4, + [96570] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7158), 1, - sym_identifier, + ACTIONS(7162), 1, + anon_sym_SEMI, STATE(3591), 2, sym_line_comment, sym_block_comment, - [96539] = 4, + [96584] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5228), 1, - anon_sym_SEMI, + ACTIONS(7164), 1, + anon_sym_COLON, STATE(3592), 2, sym_line_comment, sym_block_comment, - [96553] = 4, + [96598] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7160), 1, - anon_sym_COLON, + ACTIONS(7166), 1, + anon_sym_RPAREN, STATE(3593), 2, sym_line_comment, sym_block_comment, - [96567] = 4, + [96612] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7162), 1, - anon_sym_SEMI, + ACTIONS(7168), 1, + anon_sym_LPAREN, STATE(3594), 2, sym_line_comment, sym_block_comment, - [96581] = 4, + [96626] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7164), 1, - anon_sym_COLON, + ACTIONS(7170), 1, + sym__raw_string_literal_end, STATE(3595), 2, sym_line_comment, sym_block_comment, - [96595] = 4, + [96640] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7166), 1, - anon_sym_LBRACK, + ACTIONS(955), 1, + anon_sym_RBRACK, STATE(3596), 2, sym_line_comment, sym_block_comment, - [96609] = 4, + [96654] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7168), 1, - anon_sym_LBRACK, + ACTIONS(7172), 1, + sym_identifier, STATE(3597), 2, sym_line_comment, sym_block_comment, - [96623] = 4, + [96668] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7170), 1, - anon_sym_COLON, + ACTIONS(7174), 1, + anon_sym_EQ, STATE(3598), 2, sym_line_comment, sym_block_comment, - [96637] = 4, + [96682] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7172), 1, + ACTIONS(7176), 1, sym_identifier, STATE(3599), 2, sym_line_comment, sym_block_comment, - [96651] = 4, + [96696] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7174), 1, - sym_identifier, + ACTIONS(7178), 1, + anon_sym_SEMI, STATE(3600), 2, sym_line_comment, sym_block_comment, - [96665] = 4, + [96710] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7176), 1, - anon_sym_COLON, + ACTIONS(7180), 1, + anon_sym_SEMI, STATE(3601), 2, sym_line_comment, sym_block_comment, - [96679] = 4, + [96724] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7178), 1, - anon_sym_COLON, + ACTIONS(7182), 1, + sym_identifier, STATE(3602), 2, sym_line_comment, sym_block_comment, - [96693] = 4, + [96738] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7180), 1, - sym__line_doc_content, + ACTIONS(7184), 1, + anon_sym_COLON, STATE(3603), 2, sym_line_comment, sym_block_comment, - [96707] = 4, + [96752] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7182), 1, - anon_sym_RBRACK, + ACTIONS(7186), 1, + ts_builtin_sym_end, STATE(3604), 2, sym_line_comment, sym_block_comment, - [96721] = 4, + [96766] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7184), 1, + ACTIONS(7188), 1, anon_sym_COLON, STATE(3605), 2, sym_line_comment, sym_block_comment, - [96735] = 4, + [96780] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7186), 1, - anon_sym_COLON, + ACTIONS(7190), 1, + anon_sym_LBRACK, STATE(3606), 2, sym_line_comment, sym_block_comment, - [96749] = 4, + [96794] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7188), 1, - anon_sym_COLON, + ACTIONS(7192), 1, + anon_sym_LBRACK, STATE(3607), 2, sym_line_comment, sym_block_comment, - [96763] = 4, + [96808] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(883), 1, - anon_sym_RBRACK, + ACTIONS(7194), 1, + anon_sym_COLON, STATE(3608), 2, sym_line_comment, sym_block_comment, - [96777] = 4, + [96822] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4538), 1, - anon_sym_fn, + ACTIONS(5190), 1, + anon_sym_SEMI, STATE(3609), 2, sym_line_comment, sym_block_comment, - [96791] = 4, + [96836] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7190), 1, + ACTIONS(7196), 1, anon_sym_SEMI, STATE(3610), 2, sym_line_comment, sym_block_comment, - [96805] = 4, + [96850] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5166), 1, - anon_sym_SEMI, + ACTIONS(7198), 1, + anon_sym_COLON, STATE(3611), 2, sym_line_comment, sym_block_comment, - [96819] = 4, + [96864] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7192), 1, - sym_identifier, + ACTIONS(7200), 1, + anon_sym_COLON, STATE(3612), 2, sym_line_comment, sym_block_comment, - [96833] = 4, + [96878] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7194), 1, - anon_sym_COLON, + ACTIONS(7202), 1, + anon_sym_LT, STATE(3613), 2, sym_line_comment, sym_block_comment, - [96847] = 4, + [96892] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7196), 1, - sym_raw_string_literal_content, + ACTIONS(7204), 1, + sym_identifier, STATE(3614), 2, sym_line_comment, sym_block_comment, - [96861] = 4, + [96906] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7198), 1, - sym_identifier, + ACTIONS(7206), 1, + anon_sym_COLON, STATE(3615), 2, sym_line_comment, sym_block_comment, - [96875] = 4, + [96920] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7200), 1, - anon_sym_fn, + ACTIONS(7208), 1, + anon_sym_COLON, STATE(3616), 2, sym_line_comment, sym_block_comment, - [96889] = 4, + [96934] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7202), 1, - anon_sym_SEMI, + ACTIONS(7210), 1, + anon_sym_COLON, STATE(3617), 2, sym_line_comment, sym_block_comment, - [96903] = 4, + [96948] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7204), 1, - sym_identifier, + ACTIONS(7212), 1, + anon_sym_COLON, STATE(3618), 2, sym_line_comment, sym_block_comment, - [96917] = 4, + [96962] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7206), 1, - sym_identifier, + ACTIONS(4524), 1, + anon_sym_fn, STATE(3619), 2, sym_line_comment, sym_block_comment, - [96931] = 4, + [96976] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7208), 1, - sym_identifier, + ACTIONS(7214), 1, + anon_sym_SEMI, STATE(3620), 2, sym_line_comment, sym_block_comment, - [96945] = 4, + [96990] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7210), 1, - anon_sym_RBRACK, + ACTIONS(7216), 1, + anon_sym_COLON, STATE(3621), 2, sym_line_comment, sym_block_comment, - [96959] = 4, + [97004] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7212), 1, - anon_sym_SEMI, + ACTIONS(7218), 1, + sym_identifier, STATE(3622), 2, sym_line_comment, sym_block_comment, - [96973] = 4, + [97018] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7214), 1, - sym_identifier, + ACTIONS(7220), 1, + anon_sym_COLON, STATE(3623), 2, sym_line_comment, sym_block_comment, - [96987] = 4, + [97032] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7216), 1, - sym_identifier, + ACTIONS(6626), 1, + anon_sym_SEMI, STATE(3624), 2, sym_line_comment, sym_block_comment, - [97001] = 4, + [97046] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7218), 1, - anon_sym_SEMI, + ACTIONS(7222), 1, + sym_identifier, STATE(3625), 2, sym_line_comment, sym_block_comment, - [97015] = 4, + [97060] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7220), 1, - anon_sym_SEMI, + ACTIONS(7224), 1, + sym_identifier, STATE(3626), 2, sym_line_comment, sym_block_comment, - [97029] = 4, + [97074] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7222), 1, - anon_sym_RBRACK, + ACTIONS(7226), 1, + anon_sym_fn, STATE(3627), 2, sym_line_comment, sym_block_comment, - [97043] = 4, + [97088] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7224), 1, - anon_sym_COLON, + ACTIONS(7228), 1, + sym_identifier, STATE(3628), 2, sym_line_comment, sym_block_comment, - [97057] = 1, - ACTIONS(7226), 1, + [97102] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7230), 1, + sym_raw_string_literal_content, + STATE(3629), 2, + sym_line_comment, + sym_block_comment, + [97116] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7232), 1, + anon_sym_SEMI, + STATE(3630), 2, + sym_line_comment, + sym_block_comment, + [97130] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7234), 1, + sym_identifier, + STATE(3631), 2, + sym_line_comment, + sym_block_comment, + [97144] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7236), 1, + sym_identifier, + STATE(3632), 2, + sym_line_comment, + sym_block_comment, + [97158] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7238), 1, + sym_identifier, + STATE(3633), 2, + sym_line_comment, + sym_block_comment, + [97172] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6319), 1, + anon_sym_RBRACE, + STATE(3634), 2, + sym_line_comment, + sym_block_comment, + [97186] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5676), 1, + anon_sym_RPAREN, + STATE(3635), 2, + sym_line_comment, + sym_block_comment, + [97200] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7240), 1, + anon_sym_SEMI, + STATE(3636), 2, + sym_line_comment, + sym_block_comment, + [97214] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7242), 1, + anon_sym_SEMI, + STATE(3637), 2, + sym_line_comment, + sym_block_comment, + [97228] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7244), 1, + sym_identifier, + STATE(3638), 2, + sym_line_comment, + sym_block_comment, + [97242] = 1, + ACTIONS(7246), 1, ts_builtin_sym_end, - [97061] = 1, - ACTIONS(7228), 1, + [97246] = 1, + ACTIONS(7248), 1, ts_builtin_sym_end, - [97065] = 1, - ACTIONS(7230), 1, + [97250] = 1, + ACTIONS(7250), 1, ts_builtin_sym_end, - [97069] = 1, - ACTIONS(7232), 1, + [97254] = 1, + ACTIONS(7252), 1, ts_builtin_sym_end, - [97073] = 1, - ACTIONS(7234), 1, + [97258] = 1, + ACTIONS(7254), 1, ts_builtin_sym_end, - [97077] = 1, - ACTIONS(7236), 1, + [97262] = 1, + ACTIONS(7256), 1, ts_builtin_sym_end, - [97081] = 1, - ACTIONS(7238), 1, + [97266] = 1, + ACTIONS(7258), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1010)] = 0, - [SMALL_STATE(1011)] = 75, - [SMALL_STATE(1012)] = 145, - [SMALL_STATE(1013)] = 214, - [SMALL_STATE(1014)] = 313, - [SMALL_STATE(1015)] = 412, - [SMALL_STATE(1016)] = 489, - [SMALL_STATE(1017)] = 563, - [SMALL_STATE(1018)] = 637, - [SMALL_STATE(1019)] = 711, - [SMALL_STATE(1020)] = 782, - [SMALL_STATE(1021)] = 845, - [SMALL_STATE(1022)] = 908, - [SMALL_STATE(1023)] = 975, - [SMALL_STATE(1024)] = 1046, - [SMALL_STATE(1025)] = 1109, - [SMALL_STATE(1026)] = 1176, - [SMALL_STATE(1027)] = 1239, - [SMALL_STATE(1028)] = 1302, - [SMALL_STATE(1029)] = 1369, - [SMALL_STATE(1030)] = 1432, - [SMALL_STATE(1031)] = 1503, - [SMALL_STATE(1032)] = 1574, - [SMALL_STATE(1033)] = 1637, - [SMALL_STATE(1034)] = 1704, - [SMALL_STATE(1035)] = 1767, - [SMALL_STATE(1036)] = 1830, - [SMALL_STATE(1037)] = 1892, - [SMALL_STATE(1038)] = 1958, - [SMALL_STATE(1039)] = 2020, - [SMALL_STATE(1040)] = 2082, - [SMALL_STATE(1041)] = 2152, - [SMALL_STATE(1042)] = 2214, - [SMALL_STATE(1043)] = 2276, - [SMALL_STATE(1044)] = 2338, - [SMALL_STATE(1045)] = 2400, - [SMALL_STATE(1046)] = 2462, - [SMALL_STATE(1047)] = 2524, - [SMALL_STATE(1048)] = 2592, - [SMALL_STATE(1049)] = 2657, - [SMALL_STATE(1050)] = 2720, - [SMALL_STATE(1051)] = 2783, - [SMALL_STATE(1052)] = 2846, - [SMALL_STATE(1053)] = 2911, - [SMALL_STATE(1054)] = 2972, - [SMALL_STATE(1055)] = 3033, - [SMALL_STATE(1056)] = 3094, - [SMALL_STATE(1057)] = 3193, - [SMALL_STATE(1058)] = 3254, - [SMALL_STATE(1059)] = 3317, - [SMALL_STATE(1060)] = 3380, - [SMALL_STATE(1061)] = 3443, - [SMALL_STATE(1062)] = 3506, - [SMALL_STATE(1063)] = 3569, - [SMALL_STATE(1064)] = 3634, - [SMALL_STATE(1065)] = 3695, - [SMALL_STATE(1066)] = 3756, - [SMALL_STATE(1067)] = 3819, - [SMALL_STATE(1068)] = 3882, - [SMALL_STATE(1069)] = 3945, - [SMALL_STATE(1070)] = 4006, - [SMALL_STATE(1071)] = 4067, - [SMALL_STATE(1072)] = 4130, - [SMALL_STATE(1073)] = 4193, - [SMALL_STATE(1074)] = 4254, - [SMALL_STATE(1075)] = 4315, - [SMALL_STATE(1076)] = 4376, - [SMALL_STATE(1077)] = 4437, - [SMALL_STATE(1078)] = 4498, - [SMALL_STATE(1079)] = 4559, - [SMALL_STATE(1080)] = 4622, - [SMALL_STATE(1081)] = 4685, - [SMALL_STATE(1082)] = 4746, - [SMALL_STATE(1083)] = 4807, - [SMALL_STATE(1084)] = 4872, - [SMALL_STATE(1085)] = 4971, - [SMALL_STATE(1086)] = 5076, - [SMALL_STATE(1087)] = 5181, - [SMALL_STATE(1088)] = 5286, - [SMALL_STATE(1089)] = 5391, - [SMALL_STATE(1090)] = 5454, - [SMALL_STATE(1091)] = 5559, - [SMALL_STATE(1092)] = 5664, - [SMALL_STATE(1093)] = 5727, - [SMALL_STATE(1094)] = 5788, - [SMALL_STATE(1095)] = 5851, - [SMALL_STATE(1096)] = 5911, - [SMALL_STATE(1097)] = 5971, - [SMALL_STATE(1098)] = 6031, - [SMALL_STATE(1099)] = 6091, - [SMALL_STATE(1100)] = 6151, - [SMALL_STATE(1101)] = 6211, - [SMALL_STATE(1102)] = 6271, - [SMALL_STATE(1103)] = 6331, - [SMALL_STATE(1104)] = 6391, - [SMALL_STATE(1105)] = 6451, - [SMALL_STATE(1106)] = 6511, - [SMALL_STATE(1107)] = 6571, - [SMALL_STATE(1108)] = 6631, - [SMALL_STATE(1109)] = 6691, - [SMALL_STATE(1110)] = 6751, - [SMALL_STATE(1111)] = 6811, - [SMALL_STATE(1112)] = 6871, - [SMALL_STATE(1113)] = 6931, - [SMALL_STATE(1114)] = 6991, - [SMALL_STATE(1115)] = 7051, - [SMALL_STATE(1116)] = 7111, - [SMALL_STATE(1117)] = 7171, - [SMALL_STATE(1118)] = 7231, - [SMALL_STATE(1119)] = 7291, - [SMALL_STATE(1120)] = 7351, - [SMALL_STATE(1121)] = 7411, - [SMALL_STATE(1122)] = 7471, - [SMALL_STATE(1123)] = 7531, - [SMALL_STATE(1124)] = 7591, - [SMALL_STATE(1125)] = 7651, - [SMALL_STATE(1126)] = 7711, - [SMALL_STATE(1127)] = 7771, - [SMALL_STATE(1128)] = 7831, - [SMALL_STATE(1129)] = 7891, - [SMALL_STATE(1130)] = 7951, - [SMALL_STATE(1131)] = 8011, - [SMALL_STATE(1132)] = 8071, - [SMALL_STATE(1133)] = 8131, - [SMALL_STATE(1134)] = 8191, - [SMALL_STATE(1135)] = 8251, - [SMALL_STATE(1136)] = 8311, - [SMALL_STATE(1137)] = 8371, - [SMALL_STATE(1138)] = 8431, - [SMALL_STATE(1139)] = 8491, - [SMALL_STATE(1140)] = 8551, - [SMALL_STATE(1141)] = 8611, - [SMALL_STATE(1142)] = 8671, - [SMALL_STATE(1143)] = 8731, - [SMALL_STATE(1144)] = 8791, - [SMALL_STATE(1145)] = 8851, - [SMALL_STATE(1146)] = 8911, - [SMALL_STATE(1147)] = 8971, - [SMALL_STATE(1148)] = 9031, - [SMALL_STATE(1149)] = 9091, - [SMALL_STATE(1150)] = 9151, - [SMALL_STATE(1151)] = 9211, - [SMALL_STATE(1152)] = 9271, - [SMALL_STATE(1153)] = 9331, - [SMALL_STATE(1154)] = 9391, - [SMALL_STATE(1155)] = 9451, - [SMALL_STATE(1156)] = 9511, - [SMALL_STATE(1157)] = 9571, - [SMALL_STATE(1158)] = 9631, - [SMALL_STATE(1159)] = 9691, - [SMALL_STATE(1160)] = 9751, - [SMALL_STATE(1161)] = 9811, - [SMALL_STATE(1162)] = 9871, - [SMALL_STATE(1163)] = 9931, - [SMALL_STATE(1164)] = 9991, - [SMALL_STATE(1165)] = 10051, - [SMALL_STATE(1166)] = 10111, - [SMALL_STATE(1167)] = 10171, - [SMALL_STATE(1168)] = 10231, - [SMALL_STATE(1169)] = 10291, - [SMALL_STATE(1170)] = 10351, - [SMALL_STATE(1171)] = 10411, - [SMALL_STATE(1172)] = 10471, - [SMALL_STATE(1173)] = 10531, - [SMALL_STATE(1174)] = 10591, - [SMALL_STATE(1175)] = 10651, - [SMALL_STATE(1176)] = 10711, - [SMALL_STATE(1177)] = 10771, - [SMALL_STATE(1178)] = 10831, - [SMALL_STATE(1179)] = 10891, - [SMALL_STATE(1180)] = 10951, - [SMALL_STATE(1181)] = 11011, - [SMALL_STATE(1182)] = 11071, - [SMALL_STATE(1183)] = 11131, - [SMALL_STATE(1184)] = 11191, - [SMALL_STATE(1185)] = 11251, - [SMALL_STATE(1186)] = 11311, - [SMALL_STATE(1187)] = 11371, - [SMALL_STATE(1188)] = 11431, - [SMALL_STATE(1189)] = 11491, - [SMALL_STATE(1190)] = 11551, - [SMALL_STATE(1191)] = 11611, - [SMALL_STATE(1192)] = 11671, - [SMALL_STATE(1193)] = 11731, - [SMALL_STATE(1194)] = 11791, - [SMALL_STATE(1195)] = 11851, - [SMALL_STATE(1196)] = 11911, - [SMALL_STATE(1197)] = 11971, - [SMALL_STATE(1198)] = 12031, - [SMALL_STATE(1199)] = 12091, - [SMALL_STATE(1200)] = 12151, - [SMALL_STATE(1201)] = 12211, - [SMALL_STATE(1202)] = 12271, - [SMALL_STATE(1203)] = 12331, - [SMALL_STATE(1204)] = 12391, - [SMALL_STATE(1205)] = 12451, - [SMALL_STATE(1206)] = 12511, - [SMALL_STATE(1207)] = 12571, - [SMALL_STATE(1208)] = 12631, - [SMALL_STATE(1209)] = 12691, - [SMALL_STATE(1210)] = 12751, - [SMALL_STATE(1211)] = 12811, - [SMALL_STATE(1212)] = 12871, - [SMALL_STATE(1213)] = 12931, - [SMALL_STATE(1214)] = 12991, - [SMALL_STATE(1215)] = 13051, - [SMALL_STATE(1216)] = 13111, - [SMALL_STATE(1217)] = 13171, - [SMALL_STATE(1218)] = 13231, - [SMALL_STATE(1219)] = 13291, - [SMALL_STATE(1220)] = 13351, - [SMALL_STATE(1221)] = 13411, - [SMALL_STATE(1222)] = 13471, - [SMALL_STATE(1223)] = 13531, - [SMALL_STATE(1224)] = 13591, - [SMALL_STATE(1225)] = 13651, - [SMALL_STATE(1226)] = 13711, - [SMALL_STATE(1227)] = 13771, - [SMALL_STATE(1228)] = 13831, - [SMALL_STATE(1229)] = 13891, - [SMALL_STATE(1230)] = 13951, - [SMALL_STATE(1231)] = 14011, - [SMALL_STATE(1232)] = 14071, - [SMALL_STATE(1233)] = 14131, - [SMALL_STATE(1234)] = 14191, - [SMALL_STATE(1235)] = 14251, - [SMALL_STATE(1236)] = 14311, - [SMALL_STATE(1237)] = 14371, - [SMALL_STATE(1238)] = 14431, - [SMALL_STATE(1239)] = 14491, - [SMALL_STATE(1240)] = 14583, - [SMALL_STATE(1241)] = 14643, - [SMALL_STATE(1242)] = 14703, - [SMALL_STATE(1243)] = 14769, - [SMALL_STATE(1244)] = 14829, - [SMALL_STATE(1245)] = 14889, - [SMALL_STATE(1246)] = 14955, - [SMALL_STATE(1247)] = 15015, - [SMALL_STATE(1248)] = 15075, - [SMALL_STATE(1249)] = 15135, - [SMALL_STATE(1250)] = 15195, - [SMALL_STATE(1251)] = 15255, - [SMALL_STATE(1252)] = 15315, - [SMALL_STATE(1253)] = 15375, - [SMALL_STATE(1254)] = 15435, - [SMALL_STATE(1255)] = 15495, - [SMALL_STATE(1256)] = 15555, - [SMALL_STATE(1257)] = 15615, - [SMALL_STATE(1258)] = 15675, - [SMALL_STATE(1259)] = 15735, - [SMALL_STATE(1260)] = 15795, - [SMALL_STATE(1261)] = 15855, - [SMALL_STATE(1262)] = 15915, - [SMALL_STATE(1263)] = 15975, - [SMALL_STATE(1264)] = 16035, - [SMALL_STATE(1265)] = 16095, - [SMALL_STATE(1266)] = 16155, - [SMALL_STATE(1267)] = 16215, - [SMALL_STATE(1268)] = 16275, - [SMALL_STATE(1269)] = 16335, - [SMALL_STATE(1270)] = 16395, - [SMALL_STATE(1271)] = 16455, - [SMALL_STATE(1272)] = 16515, - [SMALL_STATE(1273)] = 16575, - [SMALL_STATE(1274)] = 16635, - [SMALL_STATE(1275)] = 16695, - [SMALL_STATE(1276)] = 16755, - [SMALL_STATE(1277)] = 16815, - [SMALL_STATE(1278)] = 16875, - [SMALL_STATE(1279)] = 16935, - [SMALL_STATE(1280)] = 16995, - [SMALL_STATE(1281)] = 17055, - [SMALL_STATE(1282)] = 17115, - [SMALL_STATE(1283)] = 17175, - [SMALL_STATE(1284)] = 17235, - [SMALL_STATE(1285)] = 17295, - [SMALL_STATE(1286)] = 17355, - [SMALL_STATE(1287)] = 17415, - [SMALL_STATE(1288)] = 17475, - [SMALL_STATE(1289)] = 17535, - [SMALL_STATE(1290)] = 17595, - [SMALL_STATE(1291)] = 17655, - [SMALL_STATE(1292)] = 17715, - [SMALL_STATE(1293)] = 17775, - [SMALL_STATE(1294)] = 17835, - [SMALL_STATE(1295)] = 17895, - [SMALL_STATE(1296)] = 17955, - [SMALL_STATE(1297)] = 18015, - [SMALL_STATE(1298)] = 18075, - [SMALL_STATE(1299)] = 18135, - [SMALL_STATE(1300)] = 18195, - [SMALL_STATE(1301)] = 18255, - [SMALL_STATE(1302)] = 18315, - [SMALL_STATE(1303)] = 18407, - [SMALL_STATE(1304)] = 18467, - [SMALL_STATE(1305)] = 18527, - [SMALL_STATE(1306)] = 18587, - [SMALL_STATE(1307)] = 18647, - [SMALL_STATE(1308)] = 18707, - [SMALL_STATE(1309)] = 18767, - [SMALL_STATE(1310)] = 18827, - [SMALL_STATE(1311)] = 18887, - [SMALL_STATE(1312)] = 18947, - [SMALL_STATE(1313)] = 19007, - [SMALL_STATE(1314)] = 19067, - [SMALL_STATE(1315)] = 19127, - [SMALL_STATE(1316)] = 19187, - [SMALL_STATE(1317)] = 19247, - [SMALL_STATE(1318)] = 19307, - [SMALL_STATE(1319)] = 19367, - [SMALL_STATE(1320)] = 19427, - [SMALL_STATE(1321)] = 19487, - [SMALL_STATE(1322)] = 19547, - [SMALL_STATE(1323)] = 19607, - [SMALL_STATE(1324)] = 19667, - [SMALL_STATE(1325)] = 19727, - [SMALL_STATE(1326)] = 19787, - [SMALL_STATE(1327)] = 19847, - [SMALL_STATE(1328)] = 19907, - [SMALL_STATE(1329)] = 19967, - [SMALL_STATE(1330)] = 20027, - [SMALL_STATE(1331)] = 20087, - [SMALL_STATE(1332)] = 20147, - [SMALL_STATE(1333)] = 20207, - [SMALL_STATE(1334)] = 20267, - [SMALL_STATE(1335)] = 20327, - [SMALL_STATE(1336)] = 20387, - [SMALL_STATE(1337)] = 20447, - [SMALL_STATE(1338)] = 20507, - [SMALL_STATE(1339)] = 20567, - [SMALL_STATE(1340)] = 20627, - [SMALL_STATE(1341)] = 20687, - [SMALL_STATE(1342)] = 20747, - [SMALL_STATE(1343)] = 20807, - [SMALL_STATE(1344)] = 20867, - [SMALL_STATE(1345)] = 20927, - [SMALL_STATE(1346)] = 20987, - [SMALL_STATE(1347)] = 21047, - [SMALL_STATE(1348)] = 21107, - [SMALL_STATE(1349)] = 21167, - [SMALL_STATE(1350)] = 21227, - [SMALL_STATE(1351)] = 21287, - [SMALL_STATE(1352)] = 21347, - [SMALL_STATE(1353)] = 21407, - [SMALL_STATE(1354)] = 21467, - [SMALL_STATE(1355)] = 21527, - [SMALL_STATE(1356)] = 21587, - [SMALL_STATE(1357)] = 21647, - [SMALL_STATE(1358)] = 21707, - [SMALL_STATE(1359)] = 21767, - [SMALL_STATE(1360)] = 21827, - [SMALL_STATE(1361)] = 21887, - [SMALL_STATE(1362)] = 21947, - [SMALL_STATE(1363)] = 22007, - [SMALL_STATE(1364)] = 22067, - [SMALL_STATE(1365)] = 22127, - [SMALL_STATE(1366)] = 22187, - [SMALL_STATE(1367)] = 22247, - [SMALL_STATE(1368)] = 22307, - [SMALL_STATE(1369)] = 22367, - [SMALL_STATE(1370)] = 22427, - [SMALL_STATE(1371)] = 22487, - [SMALL_STATE(1372)] = 22547, - [SMALL_STATE(1373)] = 22607, - [SMALL_STATE(1374)] = 22667, - [SMALL_STATE(1375)] = 22727, - [SMALL_STATE(1376)] = 22787, - [SMALL_STATE(1377)] = 22847, - [SMALL_STATE(1378)] = 22907, - [SMALL_STATE(1379)] = 22967, - [SMALL_STATE(1380)] = 23027, - [SMALL_STATE(1381)] = 23087, - [SMALL_STATE(1382)] = 23147, - [SMALL_STATE(1383)] = 23207, - [SMALL_STATE(1384)] = 23267, - [SMALL_STATE(1385)] = 23327, - [SMALL_STATE(1386)] = 23387, - [SMALL_STATE(1387)] = 23447, - [SMALL_STATE(1388)] = 23507, - [SMALL_STATE(1389)] = 23567, - [SMALL_STATE(1390)] = 23627, - [SMALL_STATE(1391)] = 23687, - [SMALL_STATE(1392)] = 23747, - [SMALL_STATE(1393)] = 23807, - [SMALL_STATE(1394)] = 23867, - [SMALL_STATE(1395)] = 23927, - [SMALL_STATE(1396)] = 23987, - [SMALL_STATE(1397)] = 24047, - [SMALL_STATE(1398)] = 24107, - [SMALL_STATE(1399)] = 24167, - [SMALL_STATE(1400)] = 24227, - [SMALL_STATE(1401)] = 24287, - [SMALL_STATE(1402)] = 24347, - [SMALL_STATE(1403)] = 24407, - [SMALL_STATE(1404)] = 24467, - [SMALL_STATE(1405)] = 24527, - [SMALL_STATE(1406)] = 24587, - [SMALL_STATE(1407)] = 24647, - [SMALL_STATE(1408)] = 24707, - [SMALL_STATE(1409)] = 24769, - [SMALL_STATE(1410)] = 24829, - [SMALL_STATE(1411)] = 24889, - [SMALL_STATE(1412)] = 24949, - [SMALL_STATE(1413)] = 25009, - [SMALL_STATE(1414)] = 25069, - [SMALL_STATE(1415)] = 25137, - [SMALL_STATE(1416)] = 25197, - [SMALL_STATE(1417)] = 25257, - [SMALL_STATE(1418)] = 25317, - [SMALL_STATE(1419)] = 25377, - [SMALL_STATE(1420)] = 25437, - [SMALL_STATE(1421)] = 25499, - [SMALL_STATE(1422)] = 25559, - [SMALL_STATE(1423)] = 25619, - [SMALL_STATE(1424)] = 25679, - [SMALL_STATE(1425)] = 25739, - [SMALL_STATE(1426)] = 25799, - [SMALL_STATE(1427)] = 25859, - [SMALL_STATE(1428)] = 25919, - [SMALL_STATE(1429)] = 25979, - [SMALL_STATE(1430)] = 26039, - [SMALL_STATE(1431)] = 26099, - [SMALL_STATE(1432)] = 26159, - [SMALL_STATE(1433)] = 26219, - [SMALL_STATE(1434)] = 26279, - [SMALL_STATE(1435)] = 26339, - [SMALL_STATE(1436)] = 26399, - [SMALL_STATE(1437)] = 26459, - [SMALL_STATE(1438)] = 26519, - [SMALL_STATE(1439)] = 26579, - [SMALL_STATE(1440)] = 26639, - [SMALL_STATE(1441)] = 26699, - [SMALL_STATE(1442)] = 26759, - [SMALL_STATE(1443)] = 26819, - [SMALL_STATE(1444)] = 26879, - [SMALL_STATE(1445)] = 26939, - [SMALL_STATE(1446)] = 26999, - [SMALL_STATE(1447)] = 27059, - [SMALL_STATE(1448)] = 27119, - [SMALL_STATE(1449)] = 27185, - [SMALL_STATE(1450)] = 27245, - [SMALL_STATE(1451)] = 27305, - [SMALL_STATE(1452)] = 27365, - [SMALL_STATE(1453)] = 27425, - [SMALL_STATE(1454)] = 27485, - [SMALL_STATE(1455)] = 27545, - [SMALL_STATE(1456)] = 27605, - [SMALL_STATE(1457)] = 27665, - [SMALL_STATE(1458)] = 27725, - [SMALL_STATE(1459)] = 27785, - [SMALL_STATE(1460)] = 27845, - [SMALL_STATE(1461)] = 27905, - [SMALL_STATE(1462)] = 27969, - [SMALL_STATE(1463)] = 28029, - [SMALL_STATE(1464)] = 28089, - [SMALL_STATE(1465)] = 28151, - [SMALL_STATE(1466)] = 28211, - [SMALL_STATE(1467)] = 28271, - [SMALL_STATE(1468)] = 28331, - [SMALL_STATE(1469)] = 28391, - [SMALL_STATE(1470)] = 28451, - [SMALL_STATE(1471)] = 28515, - [SMALL_STATE(1472)] = 28577, - [SMALL_STATE(1473)] = 28637, - [SMALL_STATE(1474)] = 28697, - [SMALL_STATE(1475)] = 28757, - [SMALL_STATE(1476)] = 28817, - [SMALL_STATE(1477)] = 28877, - [SMALL_STATE(1478)] = 28972, - [SMALL_STATE(1479)] = 29033, - [SMALL_STATE(1480)] = 29092, - [SMALL_STATE(1481)] = 29151, - [SMALL_STATE(1482)] = 29210, - [SMALL_STATE(1483)] = 29271, - [SMALL_STATE(1484)] = 29330, - [SMALL_STATE(1485)] = 29389, - [SMALL_STATE(1486)] = 29484, - [SMALL_STATE(1487)] = 29543, - [SMALL_STATE(1488)] = 29602, - [SMALL_STATE(1489)] = 29692, - [SMALL_STATE(1490)] = 29758, - [SMALL_STATE(1491)] = 29840, - [SMALL_STATE(1492)] = 29924, - [SMALL_STATE(1493)] = 29994, - [SMALL_STATE(1494)] = 30084, - [SMALL_STATE(1495)] = 30176, - [SMALL_STATE(1496)] = 30254, - [SMALL_STATE(1497)] = 30340, - [SMALL_STATE(1498)] = 30430, - [SMALL_STATE(1499)] = 30500, - [SMALL_STATE(1500)] = 30590, - [SMALL_STATE(1501)] = 30682, - [SMALL_STATE(1502)] = 30780, - [SMALL_STATE(1503)] = 30878, - [SMALL_STATE(1504)] = 30976, - [SMALL_STATE(1505)] = 31062, - [SMALL_STATE(1506)] = 31130, - [SMALL_STATE(1507)] = 31220, - [SMALL_STATE(1508)] = 31294, - [SMALL_STATE(1509)] = 31366, - [SMALL_STATE(1510)] = 31458, - [SMALL_STATE(1511)] = 31548, - [SMALL_STATE(1512)] = 31624, - [SMALL_STATE(1513)] = 31687, - [SMALL_STATE(1514)] = 31754, - [SMALL_STATE(1515)] = 31819, - [SMALL_STATE(1516)] = 31904, - [SMALL_STATE(1517)] = 31989, - [SMALL_STATE(1518)] = 32074, - [SMALL_STATE(1519)] = 32141, - [SMALL_STATE(1520)] = 32208, - [SMALL_STATE(1521)] = 32271, - [SMALL_STATE(1522)] = 32356, - [SMALL_STATE(1523)] = 32416, - [SMALL_STATE(1524)] = 32476, - [SMALL_STATE(1525)] = 32532, - [SMALL_STATE(1526)] = 32590, - [SMALL_STATE(1527)] = 32654, - [SMALL_STATE(1528)] = 32710, - [SMALL_STATE(1529)] = 32768, - [SMALL_STATE(1530)] = 32832, - [SMALL_STATE(1531)] = 32888, - [SMALL_STATE(1532)] = 32944, - [SMALL_STATE(1533)] = 33000, - [SMALL_STATE(1534)] = 33056, - [SMALL_STATE(1535)] = 33114, - [SMALL_STATE(1536)] = 33170, - [SMALL_STATE(1537)] = 33230, - [SMALL_STATE(1538)] = 33286, - [SMALL_STATE(1539)] = 33350, - [SMALL_STATE(1540)] = 33410, - [SMALL_STATE(1541)] = 33474, - [SMALL_STATE(1542)] = 33530, - [SMALL_STATE(1543)] = 33590, - [SMALL_STATE(1544)] = 33650, - [SMALL_STATE(1545)] = 33708, - [SMALL_STATE(1546)] = 33766, - [SMALL_STATE(1547)] = 33826, - [SMALL_STATE(1548)] = 33884, - [SMALL_STATE(1549)] = 33939, - [SMALL_STATE(1550)] = 33994, - [SMALL_STATE(1551)] = 34053, - [SMALL_STATE(1552)] = 34112, - [SMALL_STATE(1553)] = 34167, - [SMALL_STATE(1554)] = 34222, - [SMALL_STATE(1555)] = 34277, - [SMALL_STATE(1556)] = 34336, - [SMALL_STATE(1557)] = 34431, - [SMALL_STATE(1558)] = 34488, - [SMALL_STATE(1559)] = 34545, - [SMALL_STATE(1560)] = 34640, - [SMALL_STATE(1561)] = 34735, - [SMALL_STATE(1562)] = 34830, - [SMALL_STATE(1563)] = 34925, - [SMALL_STATE(1564)] = 34980, - [SMALL_STATE(1565)] = 35075, - [SMALL_STATE(1566)] = 35170, - [SMALL_STATE(1567)] = 35265, - [SMALL_STATE(1568)] = 35360, - [SMALL_STATE(1569)] = 35455, - [SMALL_STATE(1570)] = 35550, - [SMALL_STATE(1571)] = 35605, - [SMALL_STATE(1572)] = 35662, - [SMALL_STATE(1573)] = 35719, - [SMALL_STATE(1574)] = 35778, - [SMALL_STATE(1575)] = 35833, - [SMALL_STATE(1576)] = 35890, - [SMALL_STATE(1577)] = 35947, - [SMALL_STATE(1578)] = 36004, - [SMALL_STATE(1579)] = 36099, - [SMALL_STATE(1580)] = 36153, - [SMALL_STATE(1581)] = 36209, - [SMALL_STATE(1582)] = 36265, - [SMALL_STATE(1583)] = 36347, - [SMALL_STATE(1584)] = 36433, - [SMALL_STATE(1585)] = 36519, - [SMALL_STATE(1586)] = 36605, - [SMALL_STATE(1587)] = 36661, - [SMALL_STATE(1588)] = 36753, - [SMALL_STATE(1589)] = 36845, - [SMALL_STATE(1590)] = 36901, - [SMALL_STATE(1591)] = 36955, - [SMALL_STATE(1592)] = 37047, - [SMALL_STATE(1593)] = 37103, - [SMALL_STATE(1594)] = 37167, - [SMALL_STATE(1595)] = 37255, - [SMALL_STATE(1596)] = 37325, - [SMALL_STATE(1597)] = 37413, - [SMALL_STATE(1598)] = 37481, - [SMALL_STATE(1599)] = 37537, - [SMALL_STATE(1600)] = 37609, - [SMALL_STATE(1601)] = 37665, - [SMALL_STATE(1602)] = 37743, - [SMALL_STATE(1603)] = 37823, - [SMALL_STATE(1604)] = 37911, - [SMALL_STATE(1605)] = 38003, - [SMALL_STATE(1606)] = 38091, - [SMALL_STATE(1607)] = 38145, - [SMALL_STATE(1608)] = 38199, - [SMALL_STATE(1609)] = 38291, - [SMALL_STATE(1610)] = 38357, - [SMALL_STATE(1611)] = 38413, - [SMALL_STATE(1612)] = 38469, - [SMALL_STATE(1613)] = 38555, - [SMALL_STATE(1614)] = 38641, - [SMALL_STATE(1615)] = 38695, - [SMALL_STATE(1616)] = 38749, - [SMALL_STATE(1617)] = 38807, - [SMALL_STATE(1618)] = 38861, - [SMALL_STATE(1619)] = 38915, - [SMALL_STATE(1620)] = 39001, - [SMALL_STATE(1621)] = 39075, - [SMALL_STATE(1622)] = 39129, - [SMALL_STATE(1623)] = 39183, - [SMALL_STATE(1624)] = 39237, - [SMALL_STATE(1625)] = 39325, - [SMALL_STATE(1626)] = 39381, - [SMALL_STATE(1627)] = 39437, - [SMALL_STATE(1628)] = 39491, - [SMALL_STATE(1629)] = 39545, - [SMALL_STATE(1630)] = 39633, - [SMALL_STATE(1631)] = 39721, - [SMALL_STATE(1632)] = 39803, - [SMALL_STATE(1633)] = 39859, - [SMALL_STATE(1634)] = 39913, - [SMALL_STATE(1635)] = 39969, - [SMALL_STATE(1636)] = 40025, - [SMALL_STATE(1637)] = 40081, - [SMALL_STATE(1638)] = 40137, - [SMALL_STATE(1639)] = 40225, - [SMALL_STATE(1640)] = 40279, - [SMALL_STATE(1641)] = 40371, - [SMALL_STATE(1642)] = 40425, - [SMALL_STATE(1643)] = 40478, - [SMALL_STATE(1644)] = 40531, - [SMALL_STATE(1645)] = 40584, - [SMALL_STATE(1646)] = 40637, - [SMALL_STATE(1647)] = 40690, - [SMALL_STATE(1648)] = 40743, - [SMALL_STATE(1649)] = 40796, - [SMALL_STATE(1650)] = 40849, - [SMALL_STATE(1651)] = 40902, - [SMALL_STATE(1652)] = 40955, - [SMALL_STATE(1653)] = 41008, - [SMALL_STATE(1654)] = 41061, - [SMALL_STATE(1655)] = 41114, - [SMALL_STATE(1656)] = 41167, - [SMALL_STATE(1657)] = 41220, - [SMALL_STATE(1658)] = 41273, - [SMALL_STATE(1659)] = 41362, - [SMALL_STATE(1660)] = 41415, - [SMALL_STATE(1661)] = 41468, - [SMALL_STATE(1662)] = 41521, - [SMALL_STATE(1663)] = 41606, - [SMALL_STATE(1664)] = 41695, - [SMALL_STATE(1665)] = 41784, - [SMALL_STATE(1666)] = 41837, - [SMALL_STATE(1667)] = 41922, - [SMALL_STATE(1668)] = 42001, - [SMALL_STATE(1669)] = 42054, - [SMALL_STATE(1670)] = 42107, - [SMALL_STATE(1671)] = 42160, - [SMALL_STATE(1672)] = 42213, - [SMALL_STATE(1673)] = 42266, - [SMALL_STATE(1674)] = 42319, - [SMALL_STATE(1675)] = 42372, - [SMALL_STATE(1676)] = 42461, - [SMALL_STATE(1677)] = 42514, - [SMALL_STATE(1678)] = 42567, - [SMALL_STATE(1679)] = 42620, - [SMALL_STATE(1680)] = 42707, - [SMALL_STATE(1681)] = 42760, - [SMALL_STATE(1682)] = 42813, - [SMALL_STATE(1683)] = 42866, - [SMALL_STATE(1684)] = 42951, - [SMALL_STATE(1685)] = 43004, - [SMALL_STATE(1686)] = 43057, - [SMALL_STATE(1687)] = 43110, - [SMALL_STATE(1688)] = 43197, - [SMALL_STATE(1689)] = 43250, - [SMALL_STATE(1690)] = 43313, - [SMALL_STATE(1691)] = 43382, - [SMALL_STATE(1692)] = 43449, - [SMALL_STATE(1693)] = 43520, - [SMALL_STATE(1694)] = 43597, - [SMALL_STATE(1695)] = 43676, - [SMALL_STATE(1696)] = 43741, - [SMALL_STATE(1697)] = 43826, - [SMALL_STATE(1698)] = 43911, - [SMALL_STATE(1699)] = 43984, - [SMALL_STATE(1700)] = 44065, - [SMALL_STATE(1701)] = 44118, - [SMALL_STATE(1702)] = 44171, - [SMALL_STATE(1703)] = 44224, - [SMALL_STATE(1704)] = 44277, - [SMALL_STATE(1705)] = 44330, - [SMALL_STATE(1706)] = 44417, - [SMALL_STATE(1707)] = 44470, - [SMALL_STATE(1708)] = 44523, - [SMALL_STATE(1709)] = 44576, - [SMALL_STATE(1710)] = 44629, - [SMALL_STATE(1711)] = 44682, - [SMALL_STATE(1712)] = 44735, - [SMALL_STATE(1713)] = 44788, - [SMALL_STATE(1714)] = 44841, - [SMALL_STATE(1715)] = 44894, - [SMALL_STATE(1716)] = 44947, - [SMALL_STATE(1717)] = 45000, - [SMALL_STATE(1718)] = 45053, - [SMALL_STATE(1719)] = 45106, - [SMALL_STATE(1720)] = 45193, - [SMALL_STATE(1721)] = 45246, - [SMALL_STATE(1722)] = 45299, - [SMALL_STATE(1723)] = 45386, - [SMALL_STATE(1724)] = 45439, - [SMALL_STATE(1725)] = 45492, - [SMALL_STATE(1726)] = 45545, - [SMALL_STATE(1727)] = 45632, - [SMALL_STATE(1728)] = 45685, - [SMALL_STATE(1729)] = 45772, - [SMALL_STATE(1730)] = 45825, - [SMALL_STATE(1731)] = 45878, - [SMALL_STATE(1732)] = 45931, - [SMALL_STATE(1733)] = 45984, - [SMALL_STATE(1734)] = 46071, - [SMALL_STATE(1735)] = 46130, - [SMALL_STATE(1736)] = 46189, - [SMALL_STATE(1737)] = 46242, - [SMALL_STATE(1738)] = 46331, - [SMALL_STATE(1739)] = 46420, - [SMALL_STATE(1740)] = 46473, - [SMALL_STATE(1741)] = 46526, - [SMALL_STATE(1742)] = 46579, - [SMALL_STATE(1743)] = 46668, - [SMALL_STATE(1744)] = 46721, - [SMALL_STATE(1745)] = 46774, - [SMALL_STATE(1746)] = 46863, - [SMALL_STATE(1747)] = 46952, - [SMALL_STATE(1748)] = 47041, - [SMALL_STATE(1749)] = 47094, - [SMALL_STATE(1750)] = 47147, - [SMALL_STATE(1751)] = 47236, - [SMALL_STATE(1752)] = 47289, - [SMALL_STATE(1753)] = 47342, - [SMALL_STATE(1754)] = 47431, - [SMALL_STATE(1755)] = 47484, - [SMALL_STATE(1756)] = 47573, - [SMALL_STATE(1757)] = 47662, - [SMALL_STATE(1758)] = 47715, - [SMALL_STATE(1759)] = 47804, - [SMALL_STATE(1760)] = 47893, - [SMALL_STATE(1761)] = 47946, - [SMALL_STATE(1762)] = 48035, - [SMALL_STATE(1763)] = 48116, - [SMALL_STATE(1764)] = 48203, - [SMALL_STATE(1765)] = 48290, - [SMALL_STATE(1766)] = 48351, - [SMALL_STATE(1767)] = 48440, - [SMALL_STATE(1768)] = 48529, - [SMALL_STATE(1769)] = 48582, - [SMALL_STATE(1770)] = 48667, - [SMALL_STATE(1771)] = 48720, - [SMALL_STATE(1772)] = 48809, - [SMALL_STATE(1773)] = 48898, - [SMALL_STATE(1774)] = 48951, - [SMALL_STATE(1775)] = 49038, - [SMALL_STATE(1776)] = 49119, - [SMALL_STATE(1777)] = 49204, - [SMALL_STATE(1778)] = 49293, - [SMALL_STATE(1779)] = 49378, - [SMALL_STATE(1780)] = 49463, - [SMALL_STATE(1781)] = 49552, - [SMALL_STATE(1782)] = 49639, - [SMALL_STATE(1783)] = 49726, - [SMALL_STATE(1784)] = 49811, - [SMALL_STATE(1785)] = 49900, - [SMALL_STATE(1786)] = 49985, - [SMALL_STATE(1787)] = 50074, - [SMALL_STATE(1788)] = 50127, - [SMALL_STATE(1789)] = 50212, - [SMALL_STATE(1790)] = 50301, - [SMALL_STATE(1791)] = 50364, - [SMALL_STATE(1792)] = 50453, - [SMALL_STATE(1793)] = 50542, - [SMALL_STATE(1794)] = 50611, - [SMALL_STATE(1795)] = 50678, - [SMALL_STATE(1796)] = 50749, - [SMALL_STATE(1797)] = 50826, - [SMALL_STATE(1798)] = 50915, - [SMALL_STATE(1799)] = 51004, - [SMALL_STATE(1800)] = 51083, - [SMALL_STATE(1801)] = 51172, - [SMALL_STATE(1802)] = 51261, - [SMALL_STATE(1803)] = 51326, - [SMALL_STATE(1804)] = 51415, - [SMALL_STATE(1805)] = 51502, - [SMALL_STATE(1806)] = 51591, - [SMALL_STATE(1807)] = 51644, - [SMALL_STATE(1808)] = 51733, - [SMALL_STATE(1809)] = 51822, - [SMALL_STATE(1810)] = 51909, - [SMALL_STATE(1811)] = 51994, - [SMALL_STATE(1812)] = 52079, - [SMALL_STATE(1813)] = 52152, - [SMALL_STATE(1814)] = 52241, - [SMALL_STATE(1815)] = 52330, - [SMALL_STATE(1816)] = 52419, - [SMALL_STATE(1817)] = 52500, - [SMALL_STATE(1818)] = 52589, - [SMALL_STATE(1819)] = 52678, - [SMALL_STATE(1820)] = 52767, - [SMALL_STATE(1821)] = 52856, - [SMALL_STATE(1822)] = 52945, - [SMALL_STATE(1823)] = 52998, - [SMALL_STATE(1824)] = 53051, - [SMALL_STATE(1825)] = 53104, - [SMALL_STATE(1826)] = 53157, - [SMALL_STATE(1827)] = 53210, - [SMALL_STATE(1828)] = 53269, - [SMALL_STATE(1829)] = 53358, - [SMALL_STATE(1830)] = 53411, - [SMALL_STATE(1831)] = 53500, - [SMALL_STATE(1832)] = 53553, - [SMALL_STATE(1833)] = 53606, - [SMALL_STATE(1834)] = 53659, - [SMALL_STATE(1835)] = 53748, - [SMALL_STATE(1836)] = 53801, - [SMALL_STATE(1837)] = 53854, - [SMALL_STATE(1838)] = 53941, - [SMALL_STATE(1839)] = 53994, - [SMALL_STATE(1840)] = 54047, - [SMALL_STATE(1841)] = 54134, - [SMALL_STATE(1842)] = 54221, - [SMALL_STATE(1843)] = 54274, - [SMALL_STATE(1844)] = 54327, - [SMALL_STATE(1845)] = 54380, - [SMALL_STATE(1846)] = 54467, - [SMALL_STATE(1847)] = 54556, - [SMALL_STATE(1848)] = 54645, - [SMALL_STATE(1849)] = 54734, - [SMALL_STATE(1850)] = 54787, - [SMALL_STATE(1851)] = 54873, - [SMALL_STATE(1852)] = 54959, - [SMALL_STATE(1853)] = 55045, - [SMALL_STATE(1854)] = 55131, - [SMALL_STATE(1855)] = 55217, - [SMALL_STATE(1856)] = 55303, - [SMALL_STATE(1857)] = 55389, - [SMALL_STATE(1858)] = 55475, - [SMALL_STATE(1859)] = 55561, - [SMALL_STATE(1860)] = 55647, - [SMALL_STATE(1861)] = 55733, - [SMALL_STATE(1862)] = 55819, - [SMALL_STATE(1863)] = 55905, - [SMALL_STATE(1864)] = 55991, - [SMALL_STATE(1865)] = 56077, - [SMALL_STATE(1866)] = 56163, - [SMALL_STATE(1867)] = 56249, - [SMALL_STATE(1868)] = 56335, - [SMALL_STATE(1869)] = 56411, - [SMALL_STATE(1870)] = 56497, - [SMALL_STATE(1871)] = 56581, - [SMALL_STATE(1872)] = 56667, - [SMALL_STATE(1873)] = 56753, - [SMALL_STATE(1874)] = 56839, - [SMALL_STATE(1875)] = 56925, - [SMALL_STATE(1876)] = 57001, - [SMALL_STATE(1877)] = 57087, - [SMALL_STATE(1878)] = 57173, - [SMALL_STATE(1879)] = 57259, - [SMALL_STATE(1880)] = 57345, - [SMALL_STATE(1881)] = 57431, - [SMALL_STATE(1882)] = 57515, - [SMALL_STATE(1883)] = 57601, - [SMALL_STATE(1884)] = 57687, - [SMALL_STATE(1885)] = 57760, - [SMALL_STATE(1886)] = 57833, - [SMALL_STATE(1887)] = 57906, - [SMALL_STATE(1888)] = 57979, - [SMALL_STATE(1889)] = 58052, - [SMALL_STATE(1890)] = 58126, - [SMALL_STATE(1891)] = 58200, - [SMALL_STATE(1892)] = 58274, - [SMALL_STATE(1893)] = 58348, - [SMALL_STATE(1894)] = 58422, - [SMALL_STATE(1895)] = 58496, - [SMALL_STATE(1896)] = 58570, - [SMALL_STATE(1897)] = 58644, - [SMALL_STATE(1898)] = 58690, - [SMALL_STATE(1899)] = 58736, - [SMALL_STATE(1900)] = 58782, - [SMALL_STATE(1901)] = 58843, - [SMALL_STATE(1902)] = 58904, - [SMALL_STATE(1903)] = 58965, - [SMALL_STATE(1904)] = 59026, - [SMALL_STATE(1905)] = 59087, - [SMALL_STATE(1906)] = 59148, - [SMALL_STATE(1907)] = 59209, - [SMALL_STATE(1908)] = 59270, - [SMALL_STATE(1909)] = 59328, - [SMALL_STATE(1910)] = 59386, - [SMALL_STATE(1911)] = 59422, - [SMALL_STATE(1912)] = 59458, - [SMALL_STATE(1913)] = 59506, - [SMALL_STATE(1914)] = 59543, - [SMALL_STATE(1915)] = 59588, - [SMALL_STATE(1916)] = 59625, - [SMALL_STATE(1917)] = 59670, - [SMALL_STATE(1918)] = 59723, - [SMALL_STATE(1919)] = 59760, - [SMALL_STATE(1920)] = 59797, - [SMALL_STATE(1921)] = 59842, - [SMALL_STATE(1922)] = 59878, - [SMALL_STATE(1923)] = 59918, - [SMALL_STATE(1924)] = 59958, - [SMALL_STATE(1925)] = 59998, - [SMALL_STATE(1926)] = 60034, - [SMALL_STATE(1927)] = 60070, - [SMALL_STATE(1928)] = 60106, - [SMALL_STATE(1929)] = 60146, - [SMALL_STATE(1930)] = 60179, - [SMALL_STATE(1931)] = 60212, - [SMALL_STATE(1932)] = 60245, - [SMALL_STATE(1933)] = 60278, - [SMALL_STATE(1934)] = 60311, - [SMALL_STATE(1935)] = 60344, - [SMALL_STATE(1936)] = 60377, - [SMALL_STATE(1937)] = 60410, - [SMALL_STATE(1938)] = 60441, - [SMALL_STATE(1939)] = 60487, - [SMALL_STATE(1940)] = 60519, - [SMALL_STATE(1941)] = 60551, - [SMALL_STATE(1942)] = 60611, - [SMALL_STATE(1943)] = 60655, - [SMALL_STATE(1944)] = 60687, - [SMALL_STATE(1945)] = 60747, - [SMALL_STATE(1946)] = 60802, - [SMALL_STATE(1947)] = 60831, - [SMALL_STATE(1948)] = 60864, - [SMALL_STATE(1949)] = 60893, - [SMALL_STATE(1950)] = 60926, - [SMALL_STATE(1951)] = 60955, - [SMALL_STATE(1952)] = 60984, - [SMALL_STATE(1953)] = 61015, - [SMALL_STATE(1954)] = 61044, - [SMALL_STATE(1955)] = 61087, - [SMALL_STATE(1956)] = 61120, - [SMALL_STATE(1957)] = 61151, - [SMALL_STATE(1958)] = 61182, - [SMALL_STATE(1959)] = 61235, - [SMALL_STATE(1960)] = 61264, - [SMALL_STATE(1961)] = 61297, - [SMALL_STATE(1962)] = 61330, - [SMALL_STATE(1963)] = 61361, - [SMALL_STATE(1964)] = 61394, - [SMALL_STATE(1965)] = 61425, - [SMALL_STATE(1966)] = 61454, - [SMALL_STATE(1967)] = 61507, - [SMALL_STATE(1968)] = 61538, - [SMALL_STATE(1969)] = 61567, - [SMALL_STATE(1970)] = 61598, - [SMALL_STATE(1971)] = 61629, - [SMALL_STATE(1972)] = 61670, - [SMALL_STATE(1973)] = 61699, - [SMALL_STATE(1974)] = 61727, - [SMALL_STATE(1975)] = 61755, - [SMALL_STATE(1976)] = 61783, - [SMALL_STATE(1977)] = 61811, - [SMALL_STATE(1978)] = 61839, - [SMALL_STATE(1979)] = 61867, - [SMALL_STATE(1980)] = 61895, - [SMALL_STATE(1981)] = 61939, - [SMALL_STATE(1982)] = 61967, - [SMALL_STATE(1983)] = 61995, - [SMALL_STATE(1984)] = 62023, - [SMALL_STATE(1985)] = 62051, - [SMALL_STATE(1986)] = 62079, - [SMALL_STATE(1987)] = 62107, - [SMALL_STATE(1988)] = 62135, - [SMALL_STATE(1989)] = 62165, - [SMALL_STATE(1990)] = 62193, - [SMALL_STATE(1991)] = 62221, - [SMALL_STATE(1992)] = 62249, - [SMALL_STATE(1993)] = 62277, - [SMALL_STATE(1994)] = 62305, - [SMALL_STATE(1995)] = 62333, - [SMALL_STATE(1996)] = 62363, - [SMALL_STATE(1997)] = 62391, - [SMALL_STATE(1998)] = 62419, - [SMALL_STATE(1999)] = 62447, - [SMALL_STATE(2000)] = 62475, - [SMALL_STATE(2001)] = 62503, - [SMALL_STATE(2002)] = 62531, - [SMALL_STATE(2003)] = 62559, - [SMALL_STATE(2004)] = 62587, - [SMALL_STATE(2005)] = 62615, - [SMALL_STATE(2006)] = 62644, - [SMALL_STATE(2007)] = 62673, - [SMALL_STATE(2008)] = 62704, - [SMALL_STATE(2009)] = 62755, - [SMALL_STATE(2010)] = 62790, - [SMALL_STATE(2011)] = 62822, - [SMALL_STATE(2012)] = 62854, - [SMALL_STATE(2013)] = 62886, - [SMALL_STATE(2014)] = 62918, - [SMALL_STATE(2015)] = 62950, - [SMALL_STATE(2016)] = 62982, - [SMALL_STATE(2017)] = 63010, - [SMALL_STATE(2018)] = 63040, - [SMALL_STATE(2019)] = 63072, - [SMALL_STATE(2020)] = 63100, - [SMALL_STATE(2021)] = 63132, - [SMALL_STATE(2022)] = 63164, - [SMALL_STATE(2023)] = 63208, - [SMALL_STATE(2024)] = 63240, - [SMALL_STATE(2025)] = 63272, - [SMALL_STATE(2026)] = 63304, - [SMALL_STATE(2027)] = 63349, - [SMALL_STATE(2028)] = 63394, - [SMALL_STATE(2029)] = 63439, - [SMALL_STATE(2030)] = 63484, - [SMALL_STATE(2031)] = 63529, - [SMALL_STATE(2032)] = 63574, - [SMALL_STATE(2033)] = 63619, - [SMALL_STATE(2034)] = 63664, - [SMALL_STATE(2035)] = 63709, - [SMALL_STATE(2036)] = 63754, - [SMALL_STATE(2037)] = 63799, - [SMALL_STATE(2038)] = 63836, - [SMALL_STATE(2039)] = 63881, - [SMALL_STATE(2040)] = 63926, - [SMALL_STATE(2041)] = 63971, - [SMALL_STATE(2042)] = 64016, - [SMALL_STATE(2043)] = 64040, - [SMALL_STATE(2044)] = 64068, - [SMALL_STATE(2045)] = 64096, - [SMALL_STATE(2046)] = 64138, - [SMALL_STATE(2047)] = 64166, - [SMALL_STATE(2048)] = 64208, - [SMALL_STATE(2049)] = 64250, - [SMALL_STATE(2050)] = 64280, - [SMALL_STATE(2051)] = 64320, - [SMALL_STATE(2052)] = 64350, - [SMALL_STATE(2053)] = 64374, - [SMALL_STATE(2054)] = 64416, - [SMALL_STATE(2055)] = 64458, - [SMALL_STATE(2056)] = 64496, - [SMALL_STATE(2057)] = 64530, - [SMALL_STATE(2058)] = 64564, - [SMALL_STATE(2059)] = 64588, - [SMALL_STATE(2060)] = 64616, - [SMALL_STATE(2061)] = 64654, - [SMALL_STATE(2062)] = 64682, - [SMALL_STATE(2063)] = 64706, - [SMALL_STATE(2064)] = 64734, - [SMALL_STATE(2065)] = 64762, - [SMALL_STATE(2066)] = 64790, - [SMALL_STATE(2067)] = 64818, - [SMALL_STATE(2068)] = 64846, - [SMALL_STATE(2069)] = 64886, - [SMALL_STATE(2070)] = 64928, - [SMALL_STATE(2071)] = 64966, - [SMALL_STATE(2072)] = 65004, - [SMALL_STATE(2073)] = 65042, - [SMALL_STATE(2074)] = 65066, - [SMALL_STATE(2075)] = 65108, - [SMALL_STATE(2076)] = 65136, - [SMALL_STATE(2077)] = 65166, - [SMALL_STATE(2078)] = 65204, - [SMALL_STATE(2079)] = 65234, - [SMALL_STATE(2080)] = 65272, - [SMALL_STATE(2081)] = 65310, - [SMALL_STATE(2082)] = 65348, - [SMALL_STATE(2083)] = 65388, - [SMALL_STATE(2084)] = 65416, - [SMALL_STATE(2085)] = 65451, - [SMALL_STATE(2086)] = 65492, - [SMALL_STATE(2087)] = 65515, - [SMALL_STATE(2088)] = 65538, - [SMALL_STATE(2089)] = 65561, - [SMALL_STATE(2090)] = 65584, - [SMALL_STATE(2091)] = 65607, - [SMALL_STATE(2092)] = 65630, - [SMALL_STATE(2093)] = 65653, - [SMALL_STATE(2094)] = 65676, - [SMALL_STATE(2095)] = 65707, - [SMALL_STATE(2096)] = 65730, - [SMALL_STATE(2097)] = 65753, - [SMALL_STATE(2098)] = 65776, - [SMALL_STATE(2099)] = 65799, - [SMALL_STATE(2100)] = 65822, - [SMALL_STATE(2101)] = 65845, - [SMALL_STATE(2102)] = 65876, - [SMALL_STATE(2103)] = 65911, - [SMALL_STATE(2104)] = 65934, - [SMALL_STATE(2105)] = 65971, - [SMALL_STATE(2106)] = 65994, - [SMALL_STATE(2107)] = 66017, - [SMALL_STATE(2108)] = 66040, - [SMALL_STATE(2109)] = 66063, - [SMALL_STATE(2110)] = 66086, - [SMALL_STATE(2111)] = 66109, - [SMALL_STATE(2112)] = 66132, - [SMALL_STATE(2113)] = 66155, - [SMALL_STATE(2114)] = 66178, - [SMALL_STATE(2115)] = 66215, - [SMALL_STATE(2116)] = 66238, - [SMALL_STATE(2117)] = 66271, - [SMALL_STATE(2118)] = 66294, - [SMALL_STATE(2119)] = 66317, - [SMALL_STATE(2120)] = 66340, - [SMALL_STATE(2121)] = 66363, - [SMALL_STATE(2122)] = 66394, - [SMALL_STATE(2123)] = 66431, - [SMALL_STATE(2124)] = 66454, - [SMALL_STATE(2125)] = 66477, - [SMALL_STATE(2126)] = 66518, - [SMALL_STATE(2127)] = 66553, - [SMALL_STATE(2128)] = 66594, - [SMALL_STATE(2129)] = 66625, - [SMALL_STATE(2130)] = 66648, - [SMALL_STATE(2131)] = 66671, - [SMALL_STATE(2132)] = 66694, - [SMALL_STATE(2133)] = 66735, - [SMALL_STATE(2134)] = 66758, - [SMALL_STATE(2135)] = 66795, - [SMALL_STATE(2136)] = 66818, - [SMALL_STATE(2137)] = 66850, - [SMALL_STATE(2138)] = 66874, - [SMALL_STATE(2139)] = 66912, - [SMALL_STATE(2140)] = 66948, - [SMALL_STATE(2141)] = 66986, - [SMALL_STATE(2142)] = 67024, - [SMALL_STATE(2143)] = 67048, - [SMALL_STATE(2144)] = 67086, - [SMALL_STATE(2145)] = 67112, - [SMALL_STATE(2146)] = 67144, - [SMALL_STATE(2147)] = 67182, - [SMALL_STATE(2148)] = 67210, - [SMALL_STATE(2149)] = 67236, - [SMALL_STATE(2150)] = 67274, - [SMALL_STATE(2151)] = 67300, - [SMALL_STATE(2152)] = 67332, - [SMALL_STATE(2153)] = 67358, - [SMALL_STATE(2154)] = 67390, - [SMALL_STATE(2155)] = 67422, - [SMALL_STATE(2156)] = 67446, - [SMALL_STATE(2157)] = 67484, - [SMALL_STATE(2158)] = 67512, - [SMALL_STATE(2159)] = 67544, - [SMALL_STATE(2160)] = 67582, - [SMALL_STATE(2161)] = 67606, - [SMALL_STATE(2162)] = 67634, - [SMALL_STATE(2163)] = 67668, - [SMALL_STATE(2164)] = 67696, - [SMALL_STATE(2165)] = 67734, - [SMALL_STATE(2166)] = 67762, - [SMALL_STATE(2167)] = 67800, - [SMALL_STATE(2168)] = 67838, - [SMALL_STATE(2169)] = 67876, - [SMALL_STATE(2170)] = 67914, - [SMALL_STATE(2171)] = 67946, - [SMALL_STATE(2172)] = 67978, - [SMALL_STATE(2173)] = 68016, - [SMALL_STATE(2174)] = 68054, - [SMALL_STATE(2175)] = 68086, - [SMALL_STATE(2176)] = 68114, - [SMALL_STATE(2177)] = 68146, - [SMALL_STATE(2178)] = 68178, - [SMALL_STATE(2179)] = 68210, - [SMALL_STATE(2180)] = 68248, - [SMALL_STATE(2181)] = 68282, - [SMALL_STATE(2182)] = 68310, - [SMALL_STATE(2183)] = 68342, - [SMALL_STATE(2184)] = 68366, - [SMALL_STATE(2185)] = 68401, - [SMALL_STATE(2186)] = 68436, - [SMALL_STATE(2187)] = 68471, - [SMALL_STATE(2188)] = 68506, - [SMALL_STATE(2189)] = 68531, - [SMALL_STATE(2190)] = 68566, - [SMALL_STATE(2191)] = 68601, - [SMALL_STATE(2192)] = 68626, - [SMALL_STATE(2193)] = 68647, - [SMALL_STATE(2194)] = 68682, - [SMALL_STATE(2195)] = 68717, - [SMALL_STATE(2196)] = 68738, - [SMALL_STATE(2197)] = 68773, - [SMALL_STATE(2198)] = 68794, - [SMALL_STATE(2199)] = 68827, - [SMALL_STATE(2200)] = 68862, - [SMALL_STATE(2201)] = 68897, - [SMALL_STATE(2202)] = 68932, - [SMALL_STATE(2203)] = 68965, - [SMALL_STATE(2204)] = 68990, - [SMALL_STATE(2205)] = 69023, - [SMALL_STATE(2206)] = 69058, - [SMALL_STATE(2207)] = 69093, - [SMALL_STATE(2208)] = 69114, - [SMALL_STATE(2209)] = 69149, - [SMALL_STATE(2210)] = 69170, - [SMALL_STATE(2211)] = 69205, - [SMALL_STATE(2212)] = 69240, - [SMALL_STATE(2213)] = 69275, - [SMALL_STATE(2214)] = 69302, - [SMALL_STATE(2215)] = 69335, - [SMALL_STATE(2216)] = 69370, - [SMALL_STATE(2217)] = 69405, - [SMALL_STATE(2218)] = 69440, - [SMALL_STATE(2219)] = 69475, - [SMALL_STATE(2220)] = 69510, - [SMALL_STATE(2221)] = 69545, - [SMALL_STATE(2222)] = 69580, - [SMALL_STATE(2223)] = 69609, - [SMALL_STATE(2224)] = 69644, - [SMALL_STATE(2225)] = 69679, - [SMALL_STATE(2226)] = 69714, - [SMALL_STATE(2227)] = 69749, - [SMALL_STATE(2228)] = 69784, - [SMALL_STATE(2229)] = 69819, - [SMALL_STATE(2230)] = 69840, - [SMALL_STATE(2231)] = 69875, - [SMALL_STATE(2232)] = 69910, - [SMALL_STATE(2233)] = 69945, - [SMALL_STATE(2234)] = 69980, - [SMALL_STATE(2235)] = 70013, - [SMALL_STATE(2236)] = 70048, - [SMALL_STATE(2237)] = 70083, - [SMALL_STATE(2238)] = 70118, - [SMALL_STATE(2239)] = 70153, - [SMALL_STATE(2240)] = 70188, - [SMALL_STATE(2241)] = 70216, - [SMALL_STATE(2242)] = 70248, - [SMALL_STATE(2243)] = 70280, - [SMALL_STATE(2244)] = 70310, - [SMALL_STATE(2245)] = 70342, - [SMALL_STATE(2246)] = 70374, - [SMALL_STATE(2247)] = 70406, - [SMALL_STATE(2248)] = 70438, - [SMALL_STATE(2249)] = 70460, - [SMALL_STATE(2250)] = 70492, - [SMALL_STATE(2251)] = 70524, - [SMALL_STATE(2252)] = 70554, - [SMALL_STATE(2253)] = 70580, - [SMALL_STATE(2254)] = 70610, - [SMALL_STATE(2255)] = 70642, - [SMALL_STATE(2256)] = 70674, - [SMALL_STATE(2257)] = 70706, - [SMALL_STATE(2258)] = 70738, - [SMALL_STATE(2259)] = 70770, - [SMALL_STATE(2260)] = 70802, - [SMALL_STATE(2261)] = 70834, - [SMALL_STATE(2262)] = 70862, - [SMALL_STATE(2263)] = 70888, - [SMALL_STATE(2264)] = 70916, - [SMALL_STATE(2265)] = 70948, - [SMALL_STATE(2266)] = 70980, - [SMALL_STATE(2267)] = 71008, - [SMALL_STATE(2268)] = 71030, - [SMALL_STATE(2269)] = 71060, - [SMALL_STATE(2270)] = 71090, - [SMALL_STATE(2271)] = 71122, - [SMALL_STATE(2272)] = 71152, - [SMALL_STATE(2273)] = 71184, - [SMALL_STATE(2274)] = 71216, - [SMALL_STATE(2275)] = 71248, - [SMALL_STATE(2276)] = 71280, - [SMALL_STATE(2277)] = 71312, - [SMALL_STATE(2278)] = 71344, - [SMALL_STATE(2279)] = 71374, - [SMALL_STATE(2280)] = 71406, - [SMALL_STATE(2281)] = 71428, - [SMALL_STATE(2282)] = 71460, - [SMALL_STATE(2283)] = 71492, - [SMALL_STATE(2284)] = 71518, - [SMALL_STATE(2285)] = 71548, - [SMALL_STATE(2286)] = 71570, - [SMALL_STATE(2287)] = 71600, - [SMALL_STATE(2288)] = 71632, - [SMALL_STATE(2289)] = 71660, - [SMALL_STATE(2290)] = 71692, - [SMALL_STATE(2291)] = 71718, - [SMALL_STATE(2292)] = 71740, - [SMALL_STATE(2293)] = 71772, - [SMALL_STATE(2294)] = 71794, - [SMALL_STATE(2295)] = 71826, - [SMALL_STATE(2296)] = 71856, - [SMALL_STATE(2297)] = 71888, - [SMALL_STATE(2298)] = 71920, - [SMALL_STATE(2299)] = 71943, - [SMALL_STATE(2300)] = 71972, - [SMALL_STATE(2301)] = 71995, - [SMALL_STATE(2302)] = 72024, - [SMALL_STATE(2303)] = 72053, - [SMALL_STATE(2304)] = 72082, - [SMALL_STATE(2305)] = 72111, - [SMALL_STATE(2306)] = 72140, - [SMALL_STATE(2307)] = 72169, - [SMALL_STATE(2308)] = 72192, - [SMALL_STATE(2309)] = 72215, - [SMALL_STATE(2310)] = 72244, - [SMALL_STATE(2311)] = 72267, - [SMALL_STATE(2312)] = 72288, - [SMALL_STATE(2313)] = 72313, - [SMALL_STATE(2314)] = 72342, - [SMALL_STATE(2315)] = 72371, - [SMALL_STATE(2316)] = 72400, - [SMALL_STATE(2317)] = 72423, - [SMALL_STATE(2318)] = 72452, - [SMALL_STATE(2319)] = 72471, - [SMALL_STATE(2320)] = 72494, - [SMALL_STATE(2321)] = 72515, - [SMALL_STATE(2322)] = 72544, - [SMALL_STATE(2323)] = 72565, - [SMALL_STATE(2324)] = 72594, - [SMALL_STATE(2325)] = 72623, - [SMALL_STATE(2326)] = 72652, - [SMALL_STATE(2327)] = 72679, - [SMALL_STATE(2328)] = 72704, - [SMALL_STATE(2329)] = 72733, - [SMALL_STATE(2330)] = 72762, - [SMALL_STATE(2331)] = 72791, - [SMALL_STATE(2332)] = 72820, - [SMALL_STATE(2333)] = 72849, - [SMALL_STATE(2334)] = 72878, - [SMALL_STATE(2335)] = 72907, - [SMALL_STATE(2336)] = 72932, - [SMALL_STATE(2337)] = 72961, - [SMALL_STATE(2338)] = 72990, - [SMALL_STATE(2339)] = 73017, - [SMALL_STATE(2340)] = 73046, - [SMALL_STATE(2341)] = 73075, - [SMALL_STATE(2342)] = 73104, - [SMALL_STATE(2343)] = 73133, - [SMALL_STATE(2344)] = 73160, - [SMALL_STATE(2345)] = 73189, - [SMALL_STATE(2346)] = 73210, - [SMALL_STATE(2347)] = 73231, - [SMALL_STATE(2348)] = 73260, - [SMALL_STATE(2349)] = 73289, - [SMALL_STATE(2350)] = 73318, - [SMALL_STATE(2351)] = 73347, - [SMALL_STATE(2352)] = 73376, - [SMALL_STATE(2353)] = 73405, - [SMALL_STATE(2354)] = 73434, - [SMALL_STATE(2355)] = 73463, - [SMALL_STATE(2356)] = 73486, - [SMALL_STATE(2357)] = 73515, - [SMALL_STATE(2358)] = 73544, - [SMALL_STATE(2359)] = 73573, - [SMALL_STATE(2360)] = 73596, - [SMALL_STATE(2361)] = 73625, - [SMALL_STATE(2362)] = 73652, - [SMALL_STATE(2363)] = 73681, - [SMALL_STATE(2364)] = 73710, - [SMALL_STATE(2365)] = 73733, - [SMALL_STATE(2366)] = 73752, - [SMALL_STATE(2367)] = 73781, - [SMALL_STATE(2368)] = 73810, - [SMALL_STATE(2369)] = 73831, - [SMALL_STATE(2370)] = 73860, - [SMALL_STATE(2371)] = 73889, - [SMALL_STATE(2372)] = 73918, - [SMALL_STATE(2373)] = 73941, - [SMALL_STATE(2374)] = 73970, - [SMALL_STATE(2375)] = 73999, - [SMALL_STATE(2376)] = 74026, - [SMALL_STATE(2377)] = 74055, - [SMALL_STATE(2378)] = 74078, - [SMALL_STATE(2379)] = 74107, - [SMALL_STATE(2380)] = 74136, - [SMALL_STATE(2381)] = 74165, - [SMALL_STATE(2382)] = 74194, - [SMALL_STATE(2383)] = 74217, - [SMALL_STATE(2384)] = 74240, - [SMALL_STATE(2385)] = 74261, - [SMALL_STATE(2386)] = 74288, - [SMALL_STATE(2387)] = 74317, - [SMALL_STATE(2388)] = 74346, - [SMALL_STATE(2389)] = 74375, - [SMALL_STATE(2390)] = 74404, - [SMALL_STATE(2391)] = 74429, - [SMALL_STATE(2392)] = 74450, - [SMALL_STATE(2393)] = 74479, - [SMALL_STATE(2394)] = 74508, - [SMALL_STATE(2395)] = 74537, - [SMALL_STATE(2396)] = 74566, - [SMALL_STATE(2397)] = 74595, - [SMALL_STATE(2398)] = 74617, - [SMALL_STATE(2399)] = 74643, - [SMALL_STATE(2400)] = 74669, - [SMALL_STATE(2401)] = 74695, - [SMALL_STATE(2402)] = 74721, - [SMALL_STATE(2403)] = 74743, - [SMALL_STATE(2404)] = 74769, - [SMALL_STATE(2405)] = 74795, - [SMALL_STATE(2406)] = 74813, - [SMALL_STATE(2407)] = 74839, - [SMALL_STATE(2408)] = 74863, - [SMALL_STATE(2409)] = 74887, - [SMALL_STATE(2410)] = 74911, - [SMALL_STATE(2411)] = 74935, - [SMALL_STATE(2412)] = 74961, - [SMALL_STATE(2413)] = 74985, - [SMALL_STATE(2414)] = 75007, - [SMALL_STATE(2415)] = 75027, - [SMALL_STATE(2416)] = 75053, - [SMALL_STATE(2417)] = 75071, - [SMALL_STATE(2418)] = 75097, - [SMALL_STATE(2419)] = 75115, - [SMALL_STATE(2420)] = 75133, - [SMALL_STATE(2421)] = 75157, - [SMALL_STATE(2422)] = 75183, - [SMALL_STATE(2423)] = 75209, - [SMALL_STATE(2424)] = 75235, - [SMALL_STATE(2425)] = 75261, - [SMALL_STATE(2426)] = 75287, - [SMALL_STATE(2427)] = 75305, - [SMALL_STATE(2428)] = 75331, - [SMALL_STATE(2429)] = 75353, - [SMALL_STATE(2430)] = 75371, - [SMALL_STATE(2431)] = 75397, - [SMALL_STATE(2432)] = 75415, - [SMALL_STATE(2433)] = 75441, - [SMALL_STATE(2434)] = 75465, - [SMALL_STATE(2435)] = 75483, - [SMALL_STATE(2436)] = 75501, - [SMALL_STATE(2437)] = 75519, - [SMALL_STATE(2438)] = 75545, - [SMALL_STATE(2439)] = 75569, - [SMALL_STATE(2440)] = 75595, - [SMALL_STATE(2441)] = 75621, - [SMALL_STATE(2442)] = 75647, - [SMALL_STATE(2443)] = 75673, - [SMALL_STATE(2444)] = 75697, - [SMALL_STATE(2445)] = 75723, - [SMALL_STATE(2446)] = 75747, - [SMALL_STATE(2447)] = 75773, - [SMALL_STATE(2448)] = 75799, - [SMALL_STATE(2449)] = 75821, - [SMALL_STATE(2450)] = 75847, - [SMALL_STATE(2451)] = 75873, - [SMALL_STATE(2452)] = 75895, - [SMALL_STATE(2453)] = 75921, - [SMALL_STATE(2454)] = 75943, - [SMALL_STATE(2455)] = 75961, - [SMALL_STATE(2456)] = 75979, - [SMALL_STATE(2457)] = 75997, - [SMALL_STATE(2458)] = 76019, - [SMALL_STATE(2459)] = 76045, - [SMALL_STATE(2460)] = 76071, - [SMALL_STATE(2461)] = 76097, - [SMALL_STATE(2462)] = 76123, - [SMALL_STATE(2463)] = 76149, - [SMALL_STATE(2464)] = 76175, - [SMALL_STATE(2465)] = 76201, - [SMALL_STATE(2466)] = 76227, - [SMALL_STATE(2467)] = 76253, - [SMALL_STATE(2468)] = 76279, - [SMALL_STATE(2469)] = 76305, - [SMALL_STATE(2470)] = 76331, - [SMALL_STATE(2471)] = 76357, - [SMALL_STATE(2472)] = 76381, - [SMALL_STATE(2473)] = 76399, - [SMALL_STATE(2474)] = 76423, - [SMALL_STATE(2475)] = 76441, - [SMALL_STATE(2476)] = 76459, - [SMALL_STATE(2477)] = 76477, - [SMALL_STATE(2478)] = 76503, - [SMALL_STATE(2479)] = 76521, - [SMALL_STATE(2480)] = 76539, - [SMALL_STATE(2481)] = 76565, - [SMALL_STATE(2482)] = 76585, - [SMALL_STATE(2483)] = 76611, - [SMALL_STATE(2484)] = 76637, - [SMALL_STATE(2485)] = 76661, - [SMALL_STATE(2486)] = 76687, - [SMALL_STATE(2487)] = 76713, - [SMALL_STATE(2488)] = 76731, - [SMALL_STATE(2489)] = 76749, - [SMALL_STATE(2490)] = 76767, - [SMALL_STATE(2491)] = 76789, - [SMALL_STATE(2492)] = 76815, - [SMALL_STATE(2493)] = 76841, - [SMALL_STATE(2494)] = 76865, - [SMALL_STATE(2495)] = 76891, - [SMALL_STATE(2496)] = 76917, - [SMALL_STATE(2497)] = 76935, - [SMALL_STATE(2498)] = 76961, - [SMALL_STATE(2499)] = 76985, - [SMALL_STATE(2500)] = 77005, - [SMALL_STATE(2501)] = 77031, - [SMALL_STATE(2502)] = 77049, - [SMALL_STATE(2503)] = 77067, - [SMALL_STATE(2504)] = 77093, - [SMALL_STATE(2505)] = 77115, - [SMALL_STATE(2506)] = 77141, - [SMALL_STATE(2507)] = 77164, - [SMALL_STATE(2508)] = 77181, - [SMALL_STATE(2509)] = 77204, - [SMALL_STATE(2510)] = 77223, - [SMALL_STATE(2511)] = 77242, - [SMALL_STATE(2512)] = 77261, - [SMALL_STATE(2513)] = 77280, - [SMALL_STATE(2514)] = 77303, - [SMALL_STATE(2515)] = 77326, - [SMALL_STATE(2516)] = 77345, - [SMALL_STATE(2517)] = 77368, - [SMALL_STATE(2518)] = 77389, - [SMALL_STATE(2519)] = 77410, - [SMALL_STATE(2520)] = 77429, - [SMALL_STATE(2521)] = 77448, - [SMALL_STATE(2522)] = 77467, - [SMALL_STATE(2523)] = 77490, - [SMALL_STATE(2524)] = 77509, - [SMALL_STATE(2525)] = 77532, - [SMALL_STATE(2526)] = 77555, - [SMALL_STATE(2527)] = 77578, - [SMALL_STATE(2528)] = 77601, - [SMALL_STATE(2529)] = 77624, - [SMALL_STATE(2530)] = 77647, - [SMALL_STATE(2531)] = 77670, - [SMALL_STATE(2532)] = 77689, - [SMALL_STATE(2533)] = 77712, - [SMALL_STATE(2534)] = 77733, - [SMALL_STATE(2535)] = 77756, - [SMALL_STATE(2536)] = 77779, - [SMALL_STATE(2537)] = 77802, - [SMALL_STATE(2538)] = 77825, - [SMALL_STATE(2539)] = 77848, - [SMALL_STATE(2540)] = 77871, - [SMALL_STATE(2541)] = 77894, - [SMALL_STATE(2542)] = 77917, - [SMALL_STATE(2543)] = 77934, - [SMALL_STATE(2544)] = 77955, - [SMALL_STATE(2545)] = 77978, - [SMALL_STATE(2546)] = 78001, - [SMALL_STATE(2547)] = 78024, - [SMALL_STATE(2548)] = 78047, - [SMALL_STATE(2549)] = 78068, - [SMALL_STATE(2550)] = 78087, - [SMALL_STATE(2551)] = 78110, - [SMALL_STATE(2552)] = 78133, - [SMALL_STATE(2553)] = 78150, - [SMALL_STATE(2554)] = 78173, - [SMALL_STATE(2555)] = 78196, - [SMALL_STATE(2556)] = 78217, - [SMALL_STATE(2557)] = 78240, - [SMALL_STATE(2558)] = 78257, - [SMALL_STATE(2559)] = 78280, - [SMALL_STATE(2560)] = 78303, - [SMALL_STATE(2561)] = 78326, - [SMALL_STATE(2562)] = 78345, - [SMALL_STATE(2563)] = 78368, - [SMALL_STATE(2564)] = 78391, - [SMALL_STATE(2565)] = 78414, - [SMALL_STATE(2566)] = 78433, - [SMALL_STATE(2567)] = 78456, - [SMALL_STATE(2568)] = 78479, - [SMALL_STATE(2569)] = 78502, - [SMALL_STATE(2570)] = 78525, - [SMALL_STATE(2571)] = 78548, - [SMALL_STATE(2572)] = 78571, - [SMALL_STATE(2573)] = 78594, - [SMALL_STATE(2574)] = 78613, - [SMALL_STATE(2575)] = 78636, - [SMALL_STATE(2576)] = 78657, - [SMALL_STATE(2577)] = 78678, - [SMALL_STATE(2578)] = 78699, - [SMALL_STATE(2579)] = 78722, - [SMALL_STATE(2580)] = 78745, - [SMALL_STATE(2581)] = 78768, - [SMALL_STATE(2582)] = 78789, - [SMALL_STATE(2583)] = 78812, - [SMALL_STATE(2584)] = 78835, - [SMALL_STATE(2585)] = 78856, - [SMALL_STATE(2586)] = 78879, - [SMALL_STATE(2587)] = 78902, - [SMALL_STATE(2588)] = 78923, - [SMALL_STATE(2589)] = 78946, - [SMALL_STATE(2590)] = 78969, - [SMALL_STATE(2591)] = 78992, - [SMALL_STATE(2592)] = 79013, - [SMALL_STATE(2593)] = 79036, - [SMALL_STATE(2594)] = 79059, - [SMALL_STATE(2595)] = 79082, - [SMALL_STATE(2596)] = 79105, - [SMALL_STATE(2597)] = 79128, - [SMALL_STATE(2598)] = 79151, - [SMALL_STATE(2599)] = 79172, - [SMALL_STATE(2600)] = 79195, - [SMALL_STATE(2601)] = 79218, - [SMALL_STATE(2602)] = 79241, - [SMALL_STATE(2603)] = 79264, - [SMALL_STATE(2604)] = 79287, - [SMALL_STATE(2605)] = 79310, - [SMALL_STATE(2606)] = 79329, - [SMALL_STATE(2607)] = 79352, - [SMALL_STATE(2608)] = 79375, - [SMALL_STATE(2609)] = 79394, - [SMALL_STATE(2610)] = 79411, - [SMALL_STATE(2611)] = 79434, - [SMALL_STATE(2612)] = 79457, - [SMALL_STATE(2613)] = 79478, - [SMALL_STATE(2614)] = 79501, - [SMALL_STATE(2615)] = 79524, - [SMALL_STATE(2616)] = 79547, - [SMALL_STATE(2617)] = 79570, - [SMALL_STATE(2618)] = 79589, - [SMALL_STATE(2619)] = 79612, - [SMALL_STATE(2620)] = 79635, - [SMALL_STATE(2621)] = 79658, - [SMALL_STATE(2622)] = 79681, - [SMALL_STATE(2623)] = 79704, - [SMALL_STATE(2624)] = 79727, - [SMALL_STATE(2625)] = 79750, - [SMALL_STATE(2626)] = 79773, - [SMALL_STATE(2627)] = 79796, - [SMALL_STATE(2628)] = 79819, - [SMALL_STATE(2629)] = 79842, - [SMALL_STATE(2630)] = 79863, - [SMALL_STATE(2631)] = 79886, - [SMALL_STATE(2632)] = 79909, - [SMALL_STATE(2633)] = 79932, - [SMALL_STATE(2634)] = 79955, - [SMALL_STATE(2635)] = 79978, - [SMALL_STATE(2636)] = 80001, - [SMALL_STATE(2637)] = 80022, - [SMALL_STATE(2638)] = 80045, - [SMALL_STATE(2639)] = 80068, - [SMALL_STATE(2640)] = 80091, - [SMALL_STATE(2641)] = 80114, - [SMALL_STATE(2642)] = 80137, - [SMALL_STATE(2643)] = 80160, - [SMALL_STATE(2644)] = 80179, - [SMALL_STATE(2645)] = 80202, - [SMALL_STATE(2646)] = 80223, - [SMALL_STATE(2647)] = 80246, - [SMALL_STATE(2648)] = 80269, - [SMALL_STATE(2649)] = 80290, - [SMALL_STATE(2650)] = 80313, - [SMALL_STATE(2651)] = 80336, - [SMALL_STATE(2652)] = 80359, - [SMALL_STATE(2653)] = 80382, - [SMALL_STATE(2654)] = 80405, - [SMALL_STATE(2655)] = 80428, - [SMALL_STATE(2656)] = 80451, - [SMALL_STATE(2657)] = 80472, - [SMALL_STATE(2658)] = 80495, - [SMALL_STATE(2659)] = 80516, - [SMALL_STATE(2660)] = 80539, - [SMALL_STATE(2661)] = 80562, - [SMALL_STATE(2662)] = 80581, - [SMALL_STATE(2663)] = 80604, - [SMALL_STATE(2664)] = 80627, - [SMALL_STATE(2665)] = 80646, - [SMALL_STATE(2666)] = 80669, - [SMALL_STATE(2667)] = 80692, - [SMALL_STATE(2668)] = 80715, - [SMALL_STATE(2669)] = 80738, - [SMALL_STATE(2670)] = 80761, - [SMALL_STATE(2671)] = 80784, - [SMALL_STATE(2672)] = 80807, - [SMALL_STATE(2673)] = 80830, - [SMALL_STATE(2674)] = 80853, - [SMALL_STATE(2675)] = 80876, - [SMALL_STATE(2676)] = 80899, - [SMALL_STATE(2677)] = 80922, - [SMALL_STATE(2678)] = 80941, - [SMALL_STATE(2679)] = 80958, - [SMALL_STATE(2680)] = 80981, - [SMALL_STATE(2681)] = 81004, - [SMALL_STATE(2682)] = 81025, - [SMALL_STATE(2683)] = 81048, - [SMALL_STATE(2684)] = 81071, - [SMALL_STATE(2685)] = 81090, - [SMALL_STATE(2686)] = 81113, - [SMALL_STATE(2687)] = 81136, - [SMALL_STATE(2688)] = 81159, - [SMALL_STATE(2689)] = 81182, - [SMALL_STATE(2690)] = 81205, - [SMALL_STATE(2691)] = 81222, - [SMALL_STATE(2692)] = 81239, - [SMALL_STATE(2693)] = 81258, - [SMALL_STATE(2694)] = 81281, - [SMALL_STATE(2695)] = 81304, - [SMALL_STATE(2696)] = 81327, - [SMALL_STATE(2697)] = 81350, - [SMALL_STATE(2698)] = 81373, - [SMALL_STATE(2699)] = 81396, - [SMALL_STATE(2700)] = 81419, - [SMALL_STATE(2701)] = 81442, - [SMALL_STATE(2702)] = 81463, - [SMALL_STATE(2703)] = 81486, - [SMALL_STATE(2704)] = 81509, - [SMALL_STATE(2705)] = 81532, - [SMALL_STATE(2706)] = 81551, - [SMALL_STATE(2707)] = 81574, - [SMALL_STATE(2708)] = 81597, - [SMALL_STATE(2709)] = 81620, - [SMALL_STATE(2710)] = 81643, - [SMALL_STATE(2711)] = 81666, - [SMALL_STATE(2712)] = 81689, - [SMALL_STATE(2713)] = 81712, - [SMALL_STATE(2714)] = 81735, - [SMALL_STATE(2715)] = 81758, - [SMALL_STATE(2716)] = 81781, - [SMALL_STATE(2717)] = 81800, - [SMALL_STATE(2718)] = 81823, - [SMALL_STATE(2719)] = 81846, - [SMALL_STATE(2720)] = 81869, - [SMALL_STATE(2721)] = 81892, - [SMALL_STATE(2722)] = 81915, - [SMALL_STATE(2723)] = 81938, - [SMALL_STATE(2724)] = 81961, - [SMALL_STATE(2725)] = 81982, - [SMALL_STATE(2726)] = 82005, - [SMALL_STATE(2727)] = 82028, - [SMALL_STATE(2728)] = 82047, - [SMALL_STATE(2729)] = 82070, - [SMALL_STATE(2730)] = 82093, - [SMALL_STATE(2731)] = 82116, - [SMALL_STATE(2732)] = 82139, - [SMALL_STATE(2733)] = 82160, - [SMALL_STATE(2734)] = 82183, - [SMALL_STATE(2735)] = 82206, - [SMALL_STATE(2736)] = 82229, - [SMALL_STATE(2737)] = 82252, - [SMALL_STATE(2738)] = 82275, - [SMALL_STATE(2739)] = 82298, - [SMALL_STATE(2740)] = 82321, - [SMALL_STATE(2741)] = 82344, - [SMALL_STATE(2742)] = 82367, - [SMALL_STATE(2743)] = 82390, - [SMALL_STATE(2744)] = 82411, - [SMALL_STATE(2745)] = 82432, - [SMALL_STATE(2746)] = 82455, - [SMALL_STATE(2747)] = 82476, - [SMALL_STATE(2748)] = 82496, - [SMALL_STATE(2749)] = 82516, - [SMALL_STATE(2750)] = 82536, - [SMALL_STATE(2751)] = 82556, - [SMALL_STATE(2752)] = 82572, - [SMALL_STATE(2753)] = 82592, - [SMALL_STATE(2754)] = 82612, - [SMALL_STATE(2755)] = 82630, - [SMALL_STATE(2756)] = 82646, - [SMALL_STATE(2757)] = 82662, - [SMALL_STATE(2758)] = 82682, - [SMALL_STATE(2759)] = 82700, - [SMALL_STATE(2760)] = 82716, - [SMALL_STATE(2761)] = 82736, - [SMALL_STATE(2762)] = 82754, - [SMALL_STATE(2763)] = 82770, - [SMALL_STATE(2764)] = 82790, - [SMALL_STATE(2765)] = 82810, - [SMALL_STATE(2766)] = 82830, - [SMALL_STATE(2767)] = 82850, - [SMALL_STATE(2768)] = 82870, - [SMALL_STATE(2769)] = 82890, - [SMALL_STATE(2770)] = 82910, - [SMALL_STATE(2771)] = 82926, - [SMALL_STATE(2772)] = 82946, - [SMALL_STATE(2773)] = 82966, - [SMALL_STATE(2774)] = 82982, - [SMALL_STATE(2775)] = 83002, - [SMALL_STATE(2776)] = 83022, - [SMALL_STATE(2777)] = 83042, - [SMALL_STATE(2778)] = 83062, - [SMALL_STATE(2779)] = 83078, - [SMALL_STATE(2780)] = 83094, - [SMALL_STATE(2781)] = 83114, - [SMALL_STATE(2782)] = 83130, - [SMALL_STATE(2783)] = 83150, - [SMALL_STATE(2784)] = 83166, - [SMALL_STATE(2785)] = 83182, - [SMALL_STATE(2786)] = 83202, - [SMALL_STATE(2787)] = 83222, - [SMALL_STATE(2788)] = 83240, - [SMALL_STATE(2789)] = 83260, - [SMALL_STATE(2790)] = 83276, - [SMALL_STATE(2791)] = 83296, - [SMALL_STATE(2792)] = 83312, - [SMALL_STATE(2793)] = 83332, - [SMALL_STATE(2794)] = 83352, - [SMALL_STATE(2795)] = 83368, - [SMALL_STATE(2796)] = 83388, - [SMALL_STATE(2797)] = 83404, - [SMALL_STATE(2798)] = 83422, - [SMALL_STATE(2799)] = 83440, - [SMALL_STATE(2800)] = 83460, - [SMALL_STATE(2801)] = 83476, - [SMALL_STATE(2802)] = 83496, - [SMALL_STATE(2803)] = 83516, - [SMALL_STATE(2804)] = 83536, - [SMALL_STATE(2805)] = 83556, - [SMALL_STATE(2806)] = 83574, - [SMALL_STATE(2807)] = 83592, - [SMALL_STATE(2808)] = 83608, - [SMALL_STATE(2809)] = 83626, - [SMALL_STATE(2810)] = 83646, - [SMALL_STATE(2811)] = 83666, - [SMALL_STATE(2812)] = 83686, - [SMALL_STATE(2813)] = 83706, - [SMALL_STATE(2814)] = 83724, - [SMALL_STATE(2815)] = 83744, - [SMALL_STATE(2816)] = 83764, - [SMALL_STATE(2817)] = 83782, - [SMALL_STATE(2818)] = 83802, - [SMALL_STATE(2819)] = 83818, - [SMALL_STATE(2820)] = 83838, - [SMALL_STATE(2821)] = 83854, - [SMALL_STATE(2822)] = 83870, - [SMALL_STATE(2823)] = 83888, - [SMALL_STATE(2824)] = 83904, - [SMALL_STATE(2825)] = 83924, - [SMALL_STATE(2826)] = 83944, - [SMALL_STATE(2827)] = 83964, - [SMALL_STATE(2828)] = 83984, - [SMALL_STATE(2829)] = 84004, - [SMALL_STATE(2830)] = 84022, - [SMALL_STATE(2831)] = 84042, - [SMALL_STATE(2832)] = 84062, - [SMALL_STATE(2833)] = 84082, - [SMALL_STATE(2834)] = 84098, - [SMALL_STATE(2835)] = 84118, - [SMALL_STATE(2836)] = 84138, - [SMALL_STATE(2837)] = 84158, - [SMALL_STATE(2838)] = 84178, - [SMALL_STATE(2839)] = 84198, - [SMALL_STATE(2840)] = 84218, - [SMALL_STATE(2841)] = 84238, - [SMALL_STATE(2842)] = 84258, - [SMALL_STATE(2843)] = 84278, - [SMALL_STATE(2844)] = 84294, - [SMALL_STATE(2845)] = 84314, - [SMALL_STATE(2846)] = 84334, - [SMALL_STATE(2847)] = 84354, - [SMALL_STATE(2848)] = 84372, - [SMALL_STATE(2849)] = 84390, - [SMALL_STATE(2850)] = 84406, - [SMALL_STATE(2851)] = 84426, - [SMALL_STATE(2852)] = 84446, - [SMALL_STATE(2853)] = 84466, - [SMALL_STATE(2854)] = 84486, - [SMALL_STATE(2855)] = 84506, - [SMALL_STATE(2856)] = 84526, - [SMALL_STATE(2857)] = 84544, - [SMALL_STATE(2858)] = 84560, - [SMALL_STATE(2859)] = 84576, - [SMALL_STATE(2860)] = 84592, - [SMALL_STATE(2861)] = 84612, - [SMALL_STATE(2862)] = 84628, - [SMALL_STATE(2863)] = 84644, - [SMALL_STATE(2864)] = 84660, - [SMALL_STATE(2865)] = 84680, - [SMALL_STATE(2866)] = 84698, - [SMALL_STATE(2867)] = 84718, - [SMALL_STATE(2868)] = 84738, - [SMALL_STATE(2869)] = 84758, - [SMALL_STATE(2870)] = 84774, - [SMALL_STATE(2871)] = 84794, - [SMALL_STATE(2872)] = 84810, - [SMALL_STATE(2873)] = 84830, - [SMALL_STATE(2874)] = 84850, - [SMALL_STATE(2875)] = 84868, - [SMALL_STATE(2876)] = 84888, - [SMALL_STATE(2877)] = 84908, - [SMALL_STATE(2878)] = 84928, - [SMALL_STATE(2879)] = 84948, - [SMALL_STATE(2880)] = 84966, - [SMALL_STATE(2881)] = 84986, - [SMALL_STATE(2882)] = 85006, - [SMALL_STATE(2883)] = 85026, - [SMALL_STATE(2884)] = 85046, - [SMALL_STATE(2885)] = 85064, - [SMALL_STATE(2886)] = 85084, - [SMALL_STATE(2887)] = 85100, - [SMALL_STATE(2888)] = 85120, - [SMALL_STATE(2889)] = 85140, - [SMALL_STATE(2890)] = 85160, - [SMALL_STATE(2891)] = 85180, - [SMALL_STATE(2892)] = 85200, - [SMALL_STATE(2893)] = 85220, - [SMALL_STATE(2894)] = 85240, - [SMALL_STATE(2895)] = 85260, - [SMALL_STATE(2896)] = 85280, - [SMALL_STATE(2897)] = 85298, - [SMALL_STATE(2898)] = 85318, - [SMALL_STATE(2899)] = 85338, - [SMALL_STATE(2900)] = 85358, - [SMALL_STATE(2901)] = 85376, - [SMALL_STATE(2902)] = 85396, - [SMALL_STATE(2903)] = 85416, - [SMALL_STATE(2904)] = 85436, - [SMALL_STATE(2905)] = 85456, - [SMALL_STATE(2906)] = 85474, - [SMALL_STATE(2907)] = 85494, - [SMALL_STATE(2908)] = 85514, - [SMALL_STATE(2909)] = 85532, - [SMALL_STATE(2910)] = 85552, - [SMALL_STATE(2911)] = 85570, - [SMALL_STATE(2912)] = 85590, - [SMALL_STATE(2913)] = 85610, - [SMALL_STATE(2914)] = 85630, - [SMALL_STATE(2915)] = 85650, - [SMALL_STATE(2916)] = 85670, - [SMALL_STATE(2917)] = 85690, - [SMALL_STATE(2918)] = 85710, - [SMALL_STATE(2919)] = 85728, - [SMALL_STATE(2920)] = 85746, - [SMALL_STATE(2921)] = 85766, - [SMALL_STATE(2922)] = 85782, - [SMALL_STATE(2923)] = 85802, - [SMALL_STATE(2924)] = 85822, - [SMALL_STATE(2925)] = 85840, - [SMALL_STATE(2926)] = 85856, - [SMALL_STATE(2927)] = 85876, - [SMALL_STATE(2928)] = 85896, - [SMALL_STATE(2929)] = 85916, - [SMALL_STATE(2930)] = 85934, - [SMALL_STATE(2931)] = 85954, - [SMALL_STATE(2932)] = 85974, - [SMALL_STATE(2933)] = 85994, - [SMALL_STATE(2934)] = 86014, - [SMALL_STATE(2935)] = 86034, - [SMALL_STATE(2936)] = 86054, - [SMALL_STATE(2937)] = 86072, - [SMALL_STATE(2938)] = 86092, - [SMALL_STATE(2939)] = 86112, - [SMALL_STATE(2940)] = 86132, - [SMALL_STATE(2941)] = 86152, - [SMALL_STATE(2942)] = 86172, - [SMALL_STATE(2943)] = 86192, - [SMALL_STATE(2944)] = 86210, - [SMALL_STATE(2945)] = 86230, - [SMALL_STATE(2946)] = 86250, - [SMALL_STATE(2947)] = 86268, - [SMALL_STATE(2948)] = 86288, - [SMALL_STATE(2949)] = 86308, - [SMALL_STATE(2950)] = 86328, - [SMALL_STATE(2951)] = 86348, - [SMALL_STATE(2952)] = 86364, - [SMALL_STATE(2953)] = 86384, - [SMALL_STATE(2954)] = 86404, - [SMALL_STATE(2955)] = 86424, - [SMALL_STATE(2956)] = 86444, - [SMALL_STATE(2957)] = 86464, - [SMALL_STATE(2958)] = 86482, - [SMALL_STATE(2959)] = 86502, - [SMALL_STATE(2960)] = 86522, - [SMALL_STATE(2961)] = 86540, - [SMALL_STATE(2962)] = 86560, - [SMALL_STATE(2963)] = 86578, - [SMALL_STATE(2964)] = 86596, - [SMALL_STATE(2965)] = 86616, - [SMALL_STATE(2966)] = 86636, - [SMALL_STATE(2967)] = 86656, - [SMALL_STATE(2968)] = 86674, - [SMALL_STATE(2969)] = 86690, - [SMALL_STATE(2970)] = 86708, - [SMALL_STATE(2971)] = 86728, - [SMALL_STATE(2972)] = 86748, - [SMALL_STATE(2973)] = 86768, - [SMALL_STATE(2974)] = 86784, - [SMALL_STATE(2975)] = 86804, - [SMALL_STATE(2976)] = 86820, - [SMALL_STATE(2977)] = 86838, - [SMALL_STATE(2978)] = 86858, - [SMALL_STATE(2979)] = 86876, - [SMALL_STATE(2980)] = 86896, - [SMALL_STATE(2981)] = 86914, - [SMALL_STATE(2982)] = 86930, - [SMALL_STATE(2983)] = 86950, - [SMALL_STATE(2984)] = 86970, - [SMALL_STATE(2985)] = 86990, - [SMALL_STATE(2986)] = 87010, - [SMALL_STATE(2987)] = 87028, - [SMALL_STATE(2988)] = 87046, - [SMALL_STATE(2989)] = 87066, - [SMALL_STATE(2990)] = 87086, - [SMALL_STATE(2991)] = 87106, - [SMALL_STATE(2992)] = 87126, - [SMALL_STATE(2993)] = 87146, - [SMALL_STATE(2994)] = 87162, - [SMALL_STATE(2995)] = 87182, - [SMALL_STATE(2996)] = 87202, - [SMALL_STATE(2997)] = 87222, - [SMALL_STATE(2998)] = 87242, - [SMALL_STATE(2999)] = 87258, - [SMALL_STATE(3000)] = 87278, - [SMALL_STATE(3001)] = 87294, - [SMALL_STATE(3002)] = 87314, - [SMALL_STATE(3003)] = 87330, - [SMALL_STATE(3004)] = 87350, - [SMALL_STATE(3005)] = 87366, - [SMALL_STATE(3006)] = 87386, - [SMALL_STATE(3007)] = 87406, - [SMALL_STATE(3008)] = 87426, - [SMALL_STATE(3009)] = 87442, - [SMALL_STATE(3010)] = 87462, - [SMALL_STATE(3011)] = 87482, - [SMALL_STATE(3012)] = 87498, - [SMALL_STATE(3013)] = 87518, - [SMALL_STATE(3014)] = 87538, - [SMALL_STATE(3015)] = 87558, - [SMALL_STATE(3016)] = 87578, - [SMALL_STATE(3017)] = 87598, - [SMALL_STATE(3018)] = 87618, - [SMALL_STATE(3019)] = 87634, - [SMALL_STATE(3020)] = 87650, - [SMALL_STATE(3021)] = 87666, - [SMALL_STATE(3022)] = 87686, - [SMALL_STATE(3023)] = 87706, - [SMALL_STATE(3024)] = 87726, - [SMALL_STATE(3025)] = 87746, - [SMALL_STATE(3026)] = 87766, - [SMALL_STATE(3027)] = 87782, - [SMALL_STATE(3028)] = 87802, - [SMALL_STATE(3029)] = 87820, - [SMALL_STATE(3030)] = 87840, - [SMALL_STATE(3031)] = 87860, - [SMALL_STATE(3032)] = 87876, - [SMALL_STATE(3033)] = 87892, - [SMALL_STATE(3034)] = 87908, - [SMALL_STATE(3035)] = 87928, - [SMALL_STATE(3036)] = 87948, - [SMALL_STATE(3037)] = 87964, - [SMALL_STATE(3038)] = 87984, - [SMALL_STATE(3039)] = 88004, - [SMALL_STATE(3040)] = 88024, - [SMALL_STATE(3041)] = 88044, - [SMALL_STATE(3042)] = 88064, - [SMALL_STATE(3043)] = 88084, - [SMALL_STATE(3044)] = 88104, - [SMALL_STATE(3045)] = 88120, - [SMALL_STATE(3046)] = 88140, - [SMALL_STATE(3047)] = 88160, - [SMALL_STATE(3048)] = 88180, - [SMALL_STATE(3049)] = 88200, - [SMALL_STATE(3050)] = 88217, - [SMALL_STATE(3051)] = 88234, - [SMALL_STATE(3052)] = 88249, - [SMALL_STATE(3053)] = 88266, - [SMALL_STATE(3054)] = 88283, - [SMALL_STATE(3055)] = 88300, - [SMALL_STATE(3056)] = 88317, - [SMALL_STATE(3057)] = 88334, - [SMALL_STATE(3058)] = 88351, - [SMALL_STATE(3059)] = 88368, - [SMALL_STATE(3060)] = 88385, - [SMALL_STATE(3061)] = 88400, - [SMALL_STATE(3062)] = 88417, - [SMALL_STATE(3063)] = 88434, - [SMALL_STATE(3064)] = 88451, - [SMALL_STATE(3065)] = 88466, - [SMALL_STATE(3066)] = 88483, - [SMALL_STATE(3067)] = 88500, - [SMALL_STATE(3068)] = 88517, - [SMALL_STATE(3069)] = 88532, - [SMALL_STATE(3070)] = 88549, - [SMALL_STATE(3071)] = 88564, - [SMALL_STATE(3072)] = 88579, - [SMALL_STATE(3073)] = 88596, - [SMALL_STATE(3074)] = 88613, - [SMALL_STATE(3075)] = 88628, - [SMALL_STATE(3076)] = 88643, - [SMALL_STATE(3077)] = 88660, - [SMALL_STATE(3078)] = 88677, - [SMALL_STATE(3079)] = 88692, - [SMALL_STATE(3080)] = 88709, - [SMALL_STATE(3081)] = 88726, - [SMALL_STATE(3082)] = 88743, - [SMALL_STATE(3083)] = 88760, - [SMALL_STATE(3084)] = 88777, - [SMALL_STATE(3085)] = 88792, - [SMALL_STATE(3086)] = 88809, - [SMALL_STATE(3087)] = 88826, - [SMALL_STATE(3088)] = 88843, - [SMALL_STATE(3089)] = 88860, - [SMALL_STATE(3090)] = 88877, - [SMALL_STATE(3091)] = 88894, - [SMALL_STATE(3092)] = 88909, - [SMALL_STATE(3093)] = 88926, - [SMALL_STATE(3094)] = 88941, - [SMALL_STATE(3095)] = 88958, - [SMALL_STATE(3096)] = 88975, - [SMALL_STATE(3097)] = 88990, - [SMALL_STATE(3098)] = 89007, - [SMALL_STATE(3099)] = 89024, - [SMALL_STATE(3100)] = 89041, - [SMALL_STATE(3101)] = 89058, - [SMALL_STATE(3102)] = 89075, - [SMALL_STATE(3103)] = 89090, - [SMALL_STATE(3104)] = 89107, - [SMALL_STATE(3105)] = 89124, - [SMALL_STATE(3106)] = 89141, - [SMALL_STATE(3107)] = 89158, - [SMALL_STATE(3108)] = 89175, - [SMALL_STATE(3109)] = 89192, - [SMALL_STATE(3110)] = 89207, - [SMALL_STATE(3111)] = 89224, - [SMALL_STATE(3112)] = 89241, - [SMALL_STATE(3113)] = 89258, - [SMALL_STATE(3114)] = 89275, - [SMALL_STATE(3115)] = 89292, - [SMALL_STATE(3116)] = 89309, - [SMALL_STATE(3117)] = 89326, - [SMALL_STATE(3118)] = 89343, - [SMALL_STATE(3119)] = 89358, - [SMALL_STATE(3120)] = 89375, - [SMALL_STATE(3121)] = 89392, - [SMALL_STATE(3122)] = 89409, - [SMALL_STATE(3123)] = 89426, - [SMALL_STATE(3124)] = 89443, - [SMALL_STATE(3125)] = 89460, - [SMALL_STATE(3126)] = 89477, - [SMALL_STATE(3127)] = 89494, - [SMALL_STATE(3128)] = 89509, - [SMALL_STATE(3129)] = 89526, - [SMALL_STATE(3130)] = 89543, - [SMALL_STATE(3131)] = 89560, - [SMALL_STATE(3132)] = 89577, - [SMALL_STATE(3133)] = 89594, - [SMALL_STATE(3134)] = 89611, - [SMALL_STATE(3135)] = 89628, - [SMALL_STATE(3136)] = 89645, - [SMALL_STATE(3137)] = 89660, - [SMALL_STATE(3138)] = 89677, - [SMALL_STATE(3139)] = 89692, - [SMALL_STATE(3140)] = 89707, - [SMALL_STATE(3141)] = 89722, - [SMALL_STATE(3142)] = 89739, - [SMALL_STATE(3143)] = 89756, - [SMALL_STATE(3144)] = 89771, - [SMALL_STATE(3145)] = 89788, - [SMALL_STATE(3146)] = 89803, - [SMALL_STATE(3147)] = 89820, - [SMALL_STATE(3148)] = 89837, - [SMALL_STATE(3149)] = 89854, - [SMALL_STATE(3150)] = 89871, - [SMALL_STATE(3151)] = 89888, - [SMALL_STATE(3152)] = 89905, - [SMALL_STATE(3153)] = 89922, - [SMALL_STATE(3154)] = 89939, - [SMALL_STATE(3155)] = 89956, - [SMALL_STATE(3156)] = 89973, - [SMALL_STATE(3157)] = 89990, - [SMALL_STATE(3158)] = 90007, - [SMALL_STATE(3159)] = 90024, - [SMALL_STATE(3160)] = 90039, - [SMALL_STATE(3161)] = 90056, - [SMALL_STATE(3162)] = 90073, - [SMALL_STATE(3163)] = 90090, - [SMALL_STATE(3164)] = 90107, - [SMALL_STATE(3165)] = 90124, - [SMALL_STATE(3166)] = 90141, - [SMALL_STATE(3167)] = 90156, - [SMALL_STATE(3168)] = 90173, - [SMALL_STATE(3169)] = 90190, - [SMALL_STATE(3170)] = 90207, - [SMALL_STATE(3171)] = 90224, - [SMALL_STATE(3172)] = 90239, - [SMALL_STATE(3173)] = 90256, - [SMALL_STATE(3174)] = 90273, - [SMALL_STATE(3175)] = 90290, - [SMALL_STATE(3176)] = 90307, - [SMALL_STATE(3177)] = 90324, - [SMALL_STATE(3178)] = 90341, - [SMALL_STATE(3179)] = 90358, - [SMALL_STATE(3180)] = 90375, - [SMALL_STATE(3181)] = 90392, - [SMALL_STATE(3182)] = 90409, - [SMALL_STATE(3183)] = 90426, - [SMALL_STATE(3184)] = 90443, - [SMALL_STATE(3185)] = 90460, - [SMALL_STATE(3186)] = 90477, - [SMALL_STATE(3187)] = 90494, - [SMALL_STATE(3188)] = 90511, - [SMALL_STATE(3189)] = 90528, - [SMALL_STATE(3190)] = 90545, - [SMALL_STATE(3191)] = 90562, - [SMALL_STATE(3192)] = 90579, - [SMALL_STATE(3193)] = 90596, - [SMALL_STATE(3194)] = 90613, - [SMALL_STATE(3195)] = 90630, - [SMALL_STATE(3196)] = 90647, - [SMALL_STATE(3197)] = 90664, - [SMALL_STATE(3198)] = 90681, - [SMALL_STATE(3199)] = 90698, - [SMALL_STATE(3200)] = 90715, - [SMALL_STATE(3201)] = 90732, - [SMALL_STATE(3202)] = 90749, - [SMALL_STATE(3203)] = 90766, - [SMALL_STATE(3204)] = 90781, - [SMALL_STATE(3205)] = 90798, - [SMALL_STATE(3206)] = 90815, - [SMALL_STATE(3207)] = 90832, - [SMALL_STATE(3208)] = 90849, - [SMALL_STATE(3209)] = 90866, - [SMALL_STATE(3210)] = 90883, - [SMALL_STATE(3211)] = 90900, - [SMALL_STATE(3212)] = 90915, - [SMALL_STATE(3213)] = 90932, - [SMALL_STATE(3214)] = 90949, - [SMALL_STATE(3215)] = 90966, - [SMALL_STATE(3216)] = 90983, - [SMALL_STATE(3217)] = 91000, - [SMALL_STATE(3218)] = 91015, - [SMALL_STATE(3219)] = 91032, - [SMALL_STATE(3220)] = 91049, - [SMALL_STATE(3221)] = 91066, - [SMALL_STATE(3222)] = 91083, - [SMALL_STATE(3223)] = 91100, - [SMALL_STATE(3224)] = 91117, - [SMALL_STATE(3225)] = 91134, - [SMALL_STATE(3226)] = 91149, - [SMALL_STATE(3227)] = 91166, - [SMALL_STATE(3228)] = 91181, - [SMALL_STATE(3229)] = 91196, - [SMALL_STATE(3230)] = 91211, - [SMALL_STATE(3231)] = 91228, - [SMALL_STATE(3232)] = 91245, - [SMALL_STATE(3233)] = 91262, - [SMALL_STATE(3234)] = 91279, - [SMALL_STATE(3235)] = 91294, - [SMALL_STATE(3236)] = 91311, - [SMALL_STATE(3237)] = 91328, - [SMALL_STATE(3238)] = 91345, - [SMALL_STATE(3239)] = 91362, - [SMALL_STATE(3240)] = 91379, - [SMALL_STATE(3241)] = 91396, - [SMALL_STATE(3242)] = 91413, - [SMALL_STATE(3243)] = 91430, - [SMALL_STATE(3244)] = 91447, - [SMALL_STATE(3245)] = 91464, - [SMALL_STATE(3246)] = 91481, - [SMALL_STATE(3247)] = 91496, - [SMALL_STATE(3248)] = 91513, - [SMALL_STATE(3249)] = 91528, - [SMALL_STATE(3250)] = 91545, - [SMALL_STATE(3251)] = 91562, - [SMALL_STATE(3252)] = 91579, - [SMALL_STATE(3253)] = 91596, - [SMALL_STATE(3254)] = 91613, - [SMALL_STATE(3255)] = 91630, - [SMALL_STATE(3256)] = 91647, - [SMALL_STATE(3257)] = 91664, - [SMALL_STATE(3258)] = 91681, - [SMALL_STATE(3259)] = 91698, - [SMALL_STATE(3260)] = 91713, - [SMALL_STATE(3261)] = 91730, - [SMALL_STATE(3262)] = 91747, - [SMALL_STATE(3263)] = 91764, - [SMALL_STATE(3264)] = 91781, - [SMALL_STATE(3265)] = 91798, - [SMALL_STATE(3266)] = 91813, - [SMALL_STATE(3267)] = 91828, - [SMALL_STATE(3268)] = 91845, - [SMALL_STATE(3269)] = 91862, - [SMALL_STATE(3270)] = 91879, - [SMALL_STATE(3271)] = 91894, - [SMALL_STATE(3272)] = 91911, - [SMALL_STATE(3273)] = 91928, - [SMALL_STATE(3274)] = 91945, - [SMALL_STATE(3275)] = 91962, - [SMALL_STATE(3276)] = 91977, - [SMALL_STATE(3277)] = 91994, - [SMALL_STATE(3278)] = 92011, - [SMALL_STATE(3279)] = 92028, - [SMALL_STATE(3280)] = 92045, - [SMALL_STATE(3281)] = 92062, - [SMALL_STATE(3282)] = 92079, - [SMALL_STATE(3283)] = 92096, - [SMALL_STATE(3284)] = 92111, - [SMALL_STATE(3285)] = 92128, - [SMALL_STATE(3286)] = 92143, - [SMALL_STATE(3287)] = 92160, - [SMALL_STATE(3288)] = 92177, - [SMALL_STATE(3289)] = 92194, - [SMALL_STATE(3290)] = 92209, - [SMALL_STATE(3291)] = 92226, - [SMALL_STATE(3292)] = 92241, - [SMALL_STATE(3293)] = 92258, - [SMALL_STATE(3294)] = 92275, - [SMALL_STATE(3295)] = 92290, - [SMALL_STATE(3296)] = 92305, - [SMALL_STATE(3297)] = 92320, - [SMALL_STATE(3298)] = 92337, - [SMALL_STATE(3299)] = 92354, - [SMALL_STATE(3300)] = 92371, - [SMALL_STATE(3301)] = 92388, - [SMALL_STATE(3302)] = 92405, - [SMALL_STATE(3303)] = 92422, - [SMALL_STATE(3304)] = 92437, - [SMALL_STATE(3305)] = 92454, - [SMALL_STATE(3306)] = 92469, - [SMALL_STATE(3307)] = 92486, - [SMALL_STATE(3308)] = 92503, - [SMALL_STATE(3309)] = 92520, - [SMALL_STATE(3310)] = 92537, - [SMALL_STATE(3311)] = 92554, - [SMALL_STATE(3312)] = 92571, - [SMALL_STATE(3313)] = 92588, - [SMALL_STATE(3314)] = 92605, - [SMALL_STATE(3315)] = 92622, - [SMALL_STATE(3316)] = 92639, - [SMALL_STATE(3317)] = 92656, - [SMALL_STATE(3318)] = 92673, - [SMALL_STATE(3319)] = 92690, - [SMALL_STATE(3320)] = 92707, - [SMALL_STATE(3321)] = 92724, - [SMALL_STATE(3322)] = 92741, - [SMALL_STATE(3323)] = 92758, - [SMALL_STATE(3324)] = 92775, - [SMALL_STATE(3325)] = 92792, - [SMALL_STATE(3326)] = 92809, - [SMALL_STATE(3327)] = 92826, - [SMALL_STATE(3328)] = 92843, - [SMALL_STATE(3329)] = 92857, - [SMALL_STATE(3330)] = 92871, - [SMALL_STATE(3331)] = 92885, - [SMALL_STATE(3332)] = 92899, - [SMALL_STATE(3333)] = 92913, - [SMALL_STATE(3334)] = 92927, - [SMALL_STATE(3335)] = 92941, - [SMALL_STATE(3336)] = 92955, - [SMALL_STATE(3337)] = 92969, - [SMALL_STATE(3338)] = 92983, - [SMALL_STATE(3339)] = 92997, - [SMALL_STATE(3340)] = 93011, - [SMALL_STATE(3341)] = 93025, - [SMALL_STATE(3342)] = 93039, - [SMALL_STATE(3343)] = 93053, - [SMALL_STATE(3344)] = 93067, - [SMALL_STATE(3345)] = 93081, - [SMALL_STATE(3346)] = 93095, - [SMALL_STATE(3347)] = 93109, - [SMALL_STATE(3348)] = 93123, - [SMALL_STATE(3349)] = 93137, - [SMALL_STATE(3350)] = 93151, - [SMALL_STATE(3351)] = 93165, - [SMALL_STATE(3352)] = 93179, - [SMALL_STATE(3353)] = 93193, - [SMALL_STATE(3354)] = 93207, - [SMALL_STATE(3355)] = 93221, - [SMALL_STATE(3356)] = 93235, - [SMALL_STATE(3357)] = 93249, - [SMALL_STATE(3358)] = 93263, - [SMALL_STATE(3359)] = 93277, - [SMALL_STATE(3360)] = 93291, - [SMALL_STATE(3361)] = 93305, - [SMALL_STATE(3362)] = 93319, - [SMALL_STATE(3363)] = 93333, - [SMALL_STATE(3364)] = 93347, - [SMALL_STATE(3365)] = 93361, - [SMALL_STATE(3366)] = 93375, - [SMALL_STATE(3367)] = 93389, - [SMALL_STATE(3368)] = 93403, - [SMALL_STATE(3369)] = 93417, - [SMALL_STATE(3370)] = 93431, - [SMALL_STATE(3371)] = 93445, - [SMALL_STATE(3372)] = 93459, - [SMALL_STATE(3373)] = 93473, - [SMALL_STATE(3374)] = 93487, - [SMALL_STATE(3375)] = 93501, - [SMALL_STATE(3376)] = 93515, - [SMALL_STATE(3377)] = 93529, - [SMALL_STATE(3378)] = 93543, - [SMALL_STATE(3379)] = 93557, - [SMALL_STATE(3380)] = 93571, - [SMALL_STATE(3381)] = 93585, - [SMALL_STATE(3382)] = 93599, - [SMALL_STATE(3383)] = 93613, - [SMALL_STATE(3384)] = 93627, - [SMALL_STATE(3385)] = 93641, - [SMALL_STATE(3386)] = 93655, - [SMALL_STATE(3387)] = 93669, - [SMALL_STATE(3388)] = 93683, - [SMALL_STATE(3389)] = 93697, - [SMALL_STATE(3390)] = 93711, - [SMALL_STATE(3391)] = 93725, - [SMALL_STATE(3392)] = 93739, - [SMALL_STATE(3393)] = 93753, - [SMALL_STATE(3394)] = 93767, - [SMALL_STATE(3395)] = 93781, - [SMALL_STATE(3396)] = 93795, - [SMALL_STATE(3397)] = 93809, - [SMALL_STATE(3398)] = 93823, - [SMALL_STATE(3399)] = 93837, - [SMALL_STATE(3400)] = 93851, - [SMALL_STATE(3401)] = 93865, - [SMALL_STATE(3402)] = 93879, - [SMALL_STATE(3403)] = 93893, - [SMALL_STATE(3404)] = 93907, - [SMALL_STATE(3405)] = 93921, - [SMALL_STATE(3406)] = 93935, - [SMALL_STATE(3407)] = 93949, - [SMALL_STATE(3408)] = 93963, - [SMALL_STATE(3409)] = 93977, - [SMALL_STATE(3410)] = 93991, - [SMALL_STATE(3411)] = 94005, - [SMALL_STATE(3412)] = 94019, - [SMALL_STATE(3413)] = 94033, - [SMALL_STATE(3414)] = 94047, - [SMALL_STATE(3415)] = 94061, - [SMALL_STATE(3416)] = 94075, - [SMALL_STATE(3417)] = 94089, - [SMALL_STATE(3418)] = 94103, - [SMALL_STATE(3419)] = 94117, - [SMALL_STATE(3420)] = 94131, - [SMALL_STATE(3421)] = 94145, - [SMALL_STATE(3422)] = 94159, - [SMALL_STATE(3423)] = 94173, - [SMALL_STATE(3424)] = 94187, - [SMALL_STATE(3425)] = 94201, - [SMALL_STATE(3426)] = 94215, - [SMALL_STATE(3427)] = 94229, - [SMALL_STATE(3428)] = 94243, - [SMALL_STATE(3429)] = 94257, - [SMALL_STATE(3430)] = 94271, - [SMALL_STATE(3431)] = 94285, - [SMALL_STATE(3432)] = 94299, - [SMALL_STATE(3433)] = 94313, - [SMALL_STATE(3434)] = 94327, - [SMALL_STATE(3435)] = 94341, - [SMALL_STATE(3436)] = 94355, - [SMALL_STATE(3437)] = 94369, - [SMALL_STATE(3438)] = 94383, - [SMALL_STATE(3439)] = 94397, - [SMALL_STATE(3440)] = 94411, - [SMALL_STATE(3441)] = 94425, - [SMALL_STATE(3442)] = 94439, - [SMALL_STATE(3443)] = 94453, - [SMALL_STATE(3444)] = 94467, - [SMALL_STATE(3445)] = 94481, - [SMALL_STATE(3446)] = 94495, - [SMALL_STATE(3447)] = 94509, - [SMALL_STATE(3448)] = 94523, - [SMALL_STATE(3449)] = 94537, - [SMALL_STATE(3450)] = 94551, - [SMALL_STATE(3451)] = 94565, - [SMALL_STATE(3452)] = 94579, - [SMALL_STATE(3453)] = 94593, - [SMALL_STATE(3454)] = 94607, - [SMALL_STATE(3455)] = 94621, - [SMALL_STATE(3456)] = 94635, - [SMALL_STATE(3457)] = 94649, - [SMALL_STATE(3458)] = 94663, - [SMALL_STATE(3459)] = 94677, - [SMALL_STATE(3460)] = 94691, - [SMALL_STATE(3461)] = 94705, - [SMALL_STATE(3462)] = 94719, - [SMALL_STATE(3463)] = 94733, - [SMALL_STATE(3464)] = 94747, - [SMALL_STATE(3465)] = 94761, - [SMALL_STATE(3466)] = 94775, - [SMALL_STATE(3467)] = 94789, - [SMALL_STATE(3468)] = 94803, - [SMALL_STATE(3469)] = 94817, - [SMALL_STATE(3470)] = 94831, - [SMALL_STATE(3471)] = 94845, - [SMALL_STATE(3472)] = 94859, - [SMALL_STATE(3473)] = 94873, - [SMALL_STATE(3474)] = 94887, - [SMALL_STATE(3475)] = 94901, - [SMALL_STATE(3476)] = 94915, - [SMALL_STATE(3477)] = 94929, - [SMALL_STATE(3478)] = 94943, - [SMALL_STATE(3479)] = 94957, - [SMALL_STATE(3480)] = 94971, - [SMALL_STATE(3481)] = 94985, - [SMALL_STATE(3482)] = 94999, - [SMALL_STATE(3483)] = 95013, - [SMALL_STATE(3484)] = 95027, - [SMALL_STATE(3485)] = 95041, - [SMALL_STATE(3486)] = 95055, - [SMALL_STATE(3487)] = 95069, - [SMALL_STATE(3488)] = 95083, - [SMALL_STATE(3489)] = 95097, - [SMALL_STATE(3490)] = 95111, - [SMALL_STATE(3491)] = 95125, - [SMALL_STATE(3492)] = 95139, - [SMALL_STATE(3493)] = 95153, - [SMALL_STATE(3494)] = 95167, - [SMALL_STATE(3495)] = 95181, - [SMALL_STATE(3496)] = 95195, - [SMALL_STATE(3497)] = 95209, - [SMALL_STATE(3498)] = 95223, - [SMALL_STATE(3499)] = 95237, - [SMALL_STATE(3500)] = 95251, - [SMALL_STATE(3501)] = 95265, - [SMALL_STATE(3502)] = 95279, - [SMALL_STATE(3503)] = 95293, - [SMALL_STATE(3504)] = 95307, - [SMALL_STATE(3505)] = 95321, - [SMALL_STATE(3506)] = 95335, - [SMALL_STATE(3507)] = 95349, - [SMALL_STATE(3508)] = 95363, - [SMALL_STATE(3509)] = 95377, - [SMALL_STATE(3510)] = 95391, - [SMALL_STATE(3511)] = 95405, - [SMALL_STATE(3512)] = 95419, - [SMALL_STATE(3513)] = 95433, - [SMALL_STATE(3514)] = 95447, - [SMALL_STATE(3515)] = 95461, - [SMALL_STATE(3516)] = 95475, - [SMALL_STATE(3517)] = 95489, - [SMALL_STATE(3518)] = 95503, - [SMALL_STATE(3519)] = 95517, - [SMALL_STATE(3520)] = 95531, - [SMALL_STATE(3521)] = 95545, - [SMALL_STATE(3522)] = 95559, - [SMALL_STATE(3523)] = 95573, - [SMALL_STATE(3524)] = 95587, - [SMALL_STATE(3525)] = 95601, - [SMALL_STATE(3526)] = 95615, - [SMALL_STATE(3527)] = 95629, - [SMALL_STATE(3528)] = 95643, - [SMALL_STATE(3529)] = 95657, - [SMALL_STATE(3530)] = 95671, - [SMALL_STATE(3531)] = 95685, - [SMALL_STATE(3532)] = 95699, - [SMALL_STATE(3533)] = 95713, - [SMALL_STATE(3534)] = 95727, - [SMALL_STATE(3535)] = 95741, - [SMALL_STATE(3536)] = 95755, - [SMALL_STATE(3537)] = 95769, - [SMALL_STATE(3538)] = 95783, - [SMALL_STATE(3539)] = 95797, - [SMALL_STATE(3540)] = 95811, - [SMALL_STATE(3541)] = 95825, - [SMALL_STATE(3542)] = 95839, - [SMALL_STATE(3543)] = 95853, - [SMALL_STATE(3544)] = 95867, - [SMALL_STATE(3545)] = 95881, - [SMALL_STATE(3546)] = 95895, - [SMALL_STATE(3547)] = 95909, - [SMALL_STATE(3548)] = 95923, - [SMALL_STATE(3549)] = 95937, - [SMALL_STATE(3550)] = 95951, - [SMALL_STATE(3551)] = 95965, - [SMALL_STATE(3552)] = 95979, - [SMALL_STATE(3553)] = 95993, - [SMALL_STATE(3554)] = 96007, - [SMALL_STATE(3555)] = 96021, - [SMALL_STATE(3556)] = 96035, - [SMALL_STATE(3557)] = 96049, - [SMALL_STATE(3558)] = 96063, - [SMALL_STATE(3559)] = 96077, - [SMALL_STATE(3560)] = 96091, - [SMALL_STATE(3561)] = 96105, - [SMALL_STATE(3562)] = 96119, - [SMALL_STATE(3563)] = 96133, - [SMALL_STATE(3564)] = 96147, - [SMALL_STATE(3565)] = 96161, - [SMALL_STATE(3566)] = 96175, - [SMALL_STATE(3567)] = 96189, - [SMALL_STATE(3568)] = 96203, - [SMALL_STATE(3569)] = 96217, - [SMALL_STATE(3570)] = 96231, - [SMALL_STATE(3571)] = 96245, - [SMALL_STATE(3572)] = 96259, - [SMALL_STATE(3573)] = 96273, - [SMALL_STATE(3574)] = 96287, - [SMALL_STATE(3575)] = 96301, - [SMALL_STATE(3576)] = 96315, - [SMALL_STATE(3577)] = 96329, - [SMALL_STATE(3578)] = 96343, - [SMALL_STATE(3579)] = 96357, - [SMALL_STATE(3580)] = 96371, - [SMALL_STATE(3581)] = 96385, - [SMALL_STATE(3582)] = 96399, - [SMALL_STATE(3583)] = 96413, - [SMALL_STATE(3584)] = 96427, - [SMALL_STATE(3585)] = 96441, - [SMALL_STATE(3586)] = 96455, - [SMALL_STATE(3587)] = 96469, - [SMALL_STATE(3588)] = 96483, - [SMALL_STATE(3589)] = 96497, - [SMALL_STATE(3590)] = 96511, - [SMALL_STATE(3591)] = 96525, - [SMALL_STATE(3592)] = 96539, - [SMALL_STATE(3593)] = 96553, - [SMALL_STATE(3594)] = 96567, - [SMALL_STATE(3595)] = 96581, - [SMALL_STATE(3596)] = 96595, - [SMALL_STATE(3597)] = 96609, - [SMALL_STATE(3598)] = 96623, - [SMALL_STATE(3599)] = 96637, - [SMALL_STATE(3600)] = 96651, - [SMALL_STATE(3601)] = 96665, - [SMALL_STATE(3602)] = 96679, - [SMALL_STATE(3603)] = 96693, - [SMALL_STATE(3604)] = 96707, - [SMALL_STATE(3605)] = 96721, - [SMALL_STATE(3606)] = 96735, - [SMALL_STATE(3607)] = 96749, - [SMALL_STATE(3608)] = 96763, - [SMALL_STATE(3609)] = 96777, - [SMALL_STATE(3610)] = 96791, - [SMALL_STATE(3611)] = 96805, - [SMALL_STATE(3612)] = 96819, - [SMALL_STATE(3613)] = 96833, - [SMALL_STATE(3614)] = 96847, - [SMALL_STATE(3615)] = 96861, - [SMALL_STATE(3616)] = 96875, - [SMALL_STATE(3617)] = 96889, - [SMALL_STATE(3618)] = 96903, - [SMALL_STATE(3619)] = 96917, - [SMALL_STATE(3620)] = 96931, - [SMALL_STATE(3621)] = 96945, - [SMALL_STATE(3622)] = 96959, - [SMALL_STATE(3623)] = 96973, - [SMALL_STATE(3624)] = 96987, - [SMALL_STATE(3625)] = 97001, - [SMALL_STATE(3626)] = 97015, - [SMALL_STATE(3627)] = 97029, - [SMALL_STATE(3628)] = 97043, - [SMALL_STATE(3629)] = 97057, - [SMALL_STATE(3630)] = 97061, - [SMALL_STATE(3631)] = 97065, - [SMALL_STATE(3632)] = 97069, - [SMALL_STATE(3633)] = 97073, - [SMALL_STATE(3634)] = 97077, - [SMALL_STATE(3635)] = 97081, + [SMALL_STATE(1014)] = 0, + [SMALL_STATE(1015)] = 75, + [SMALL_STATE(1016)] = 145, + [SMALL_STATE(1017)] = 214, + [SMALL_STATE(1018)] = 313, + [SMALL_STATE(1019)] = 412, + [SMALL_STATE(1020)] = 489, + [SMALL_STATE(1021)] = 563, + [SMALL_STATE(1022)] = 637, + [SMALL_STATE(1023)] = 711, + [SMALL_STATE(1024)] = 774, + [SMALL_STATE(1025)] = 837, + [SMALL_STATE(1026)] = 904, + [SMALL_STATE(1027)] = 971, + [SMALL_STATE(1028)] = 1042, + [SMALL_STATE(1029)] = 1113, + [SMALL_STATE(1030)] = 1176, + [SMALL_STATE(1031)] = 1243, + [SMALL_STATE(1032)] = 1306, + [SMALL_STATE(1033)] = 1377, + [SMALL_STATE(1034)] = 1440, + [SMALL_STATE(1035)] = 1503, + [SMALL_STATE(1036)] = 1570, + [SMALL_STATE(1037)] = 1641, + [SMALL_STATE(1038)] = 1704, + [SMALL_STATE(1039)] = 1767, + [SMALL_STATE(1040)] = 1830, + [SMALL_STATE(1041)] = 1892, + [SMALL_STATE(1042)] = 1962, + [SMALL_STATE(1043)] = 2028, + [SMALL_STATE(1044)] = 2090, + [SMALL_STATE(1045)] = 2152, + [SMALL_STATE(1046)] = 2220, + [SMALL_STATE(1047)] = 2282, + [SMALL_STATE(1048)] = 2344, + [SMALL_STATE(1049)] = 2406, + [SMALL_STATE(1050)] = 2468, + [SMALL_STATE(1051)] = 2530, + [SMALL_STATE(1052)] = 2592, + [SMALL_STATE(1053)] = 2657, + [SMALL_STATE(1054)] = 2718, + [SMALL_STATE(1055)] = 2779, + [SMALL_STATE(1056)] = 2840, + [SMALL_STATE(1057)] = 2903, + [SMALL_STATE(1058)] = 2966, + [SMALL_STATE(1059)] = 3071, + [SMALL_STATE(1060)] = 3134, + [SMALL_STATE(1061)] = 3197, + [SMALL_STATE(1062)] = 3260, + [SMALL_STATE(1063)] = 3321, + [SMALL_STATE(1064)] = 3382, + [SMALL_STATE(1065)] = 3445, + [SMALL_STATE(1066)] = 3508, + [SMALL_STATE(1067)] = 3571, + [SMALL_STATE(1068)] = 3634, + [SMALL_STATE(1069)] = 3695, + [SMALL_STATE(1070)] = 3760, + [SMALL_STATE(1071)] = 3821, + [SMALL_STATE(1072)] = 3884, + [SMALL_STATE(1073)] = 3945, + [SMALL_STATE(1074)] = 4006, + [SMALL_STATE(1075)] = 4067, + [SMALL_STATE(1076)] = 4128, + [SMALL_STATE(1077)] = 4189, + [SMALL_STATE(1078)] = 4250, + [SMALL_STATE(1079)] = 4311, + [SMALL_STATE(1080)] = 4410, + [SMALL_STATE(1081)] = 4475, + [SMALL_STATE(1082)] = 4580, + [SMALL_STATE(1083)] = 4643, + [SMALL_STATE(1084)] = 4706, + [SMALL_STATE(1085)] = 4811, + [SMALL_STATE(1086)] = 4910, + [SMALL_STATE(1087)] = 4971, + [SMALL_STATE(1088)] = 5032, + [SMALL_STATE(1089)] = 5137, + [SMALL_STATE(1090)] = 5242, + [SMALL_STATE(1091)] = 5347, + [SMALL_STATE(1092)] = 5410, + [SMALL_STATE(1093)] = 5473, + [SMALL_STATE(1094)] = 5536, + [SMALL_STATE(1095)] = 5599, + [SMALL_STATE(1096)] = 5662, + [SMALL_STATE(1097)] = 5727, + [SMALL_STATE(1098)] = 5788, + [SMALL_STATE(1099)] = 5851, + [SMALL_STATE(1100)] = 5911, + [SMALL_STATE(1101)] = 5971, + [SMALL_STATE(1102)] = 6031, + [SMALL_STATE(1103)] = 6091, + [SMALL_STATE(1104)] = 6151, + [SMALL_STATE(1105)] = 6211, + [SMALL_STATE(1106)] = 6271, + [SMALL_STATE(1107)] = 6331, + [SMALL_STATE(1108)] = 6391, + [SMALL_STATE(1109)] = 6451, + [SMALL_STATE(1110)] = 6511, + [SMALL_STATE(1111)] = 6571, + [SMALL_STATE(1112)] = 6631, + [SMALL_STATE(1113)] = 6691, + [SMALL_STATE(1114)] = 6751, + [SMALL_STATE(1115)] = 6811, + [SMALL_STATE(1116)] = 6871, + [SMALL_STATE(1117)] = 6931, + [SMALL_STATE(1118)] = 6991, + [SMALL_STATE(1119)] = 7051, + [SMALL_STATE(1120)] = 7111, + [SMALL_STATE(1121)] = 7171, + [SMALL_STATE(1122)] = 7231, + [SMALL_STATE(1123)] = 7291, + [SMALL_STATE(1124)] = 7351, + [SMALL_STATE(1125)] = 7411, + [SMALL_STATE(1126)] = 7471, + [SMALL_STATE(1127)] = 7531, + [SMALL_STATE(1128)] = 7591, + [SMALL_STATE(1129)] = 7651, + [SMALL_STATE(1130)] = 7711, + [SMALL_STATE(1131)] = 7771, + [SMALL_STATE(1132)] = 7831, + [SMALL_STATE(1133)] = 7891, + [SMALL_STATE(1134)] = 7951, + [SMALL_STATE(1135)] = 8011, + [SMALL_STATE(1136)] = 8071, + [SMALL_STATE(1137)] = 8131, + [SMALL_STATE(1138)] = 8191, + [SMALL_STATE(1139)] = 8251, + [SMALL_STATE(1140)] = 8311, + [SMALL_STATE(1141)] = 8371, + [SMALL_STATE(1142)] = 8431, + [SMALL_STATE(1143)] = 8491, + [SMALL_STATE(1144)] = 8551, + [SMALL_STATE(1145)] = 8611, + [SMALL_STATE(1146)] = 8671, + [SMALL_STATE(1147)] = 8731, + [SMALL_STATE(1148)] = 8791, + [SMALL_STATE(1149)] = 8851, + [SMALL_STATE(1150)] = 8911, + [SMALL_STATE(1151)] = 8971, + [SMALL_STATE(1152)] = 9031, + [SMALL_STATE(1153)] = 9091, + [SMALL_STATE(1154)] = 9151, + [SMALL_STATE(1155)] = 9211, + [SMALL_STATE(1156)] = 9271, + [SMALL_STATE(1157)] = 9331, + [SMALL_STATE(1158)] = 9391, + [SMALL_STATE(1159)] = 9451, + [SMALL_STATE(1160)] = 9511, + [SMALL_STATE(1161)] = 9571, + [SMALL_STATE(1162)] = 9631, + [SMALL_STATE(1163)] = 9691, + [SMALL_STATE(1164)] = 9751, + [SMALL_STATE(1165)] = 9811, + [SMALL_STATE(1166)] = 9871, + [SMALL_STATE(1167)] = 9931, + [SMALL_STATE(1168)] = 9991, + [SMALL_STATE(1169)] = 10051, + [SMALL_STATE(1170)] = 10111, + [SMALL_STATE(1171)] = 10171, + [SMALL_STATE(1172)] = 10231, + [SMALL_STATE(1173)] = 10291, + [SMALL_STATE(1174)] = 10351, + [SMALL_STATE(1175)] = 10411, + [SMALL_STATE(1176)] = 10471, + [SMALL_STATE(1177)] = 10531, + [SMALL_STATE(1178)] = 10591, + [SMALL_STATE(1179)] = 10651, + [SMALL_STATE(1180)] = 10711, + [SMALL_STATE(1181)] = 10771, + [SMALL_STATE(1182)] = 10831, + [SMALL_STATE(1183)] = 10891, + [SMALL_STATE(1184)] = 10951, + [SMALL_STATE(1185)] = 11011, + [SMALL_STATE(1186)] = 11071, + [SMALL_STATE(1187)] = 11131, + [SMALL_STATE(1188)] = 11191, + [SMALL_STATE(1189)] = 11251, + [SMALL_STATE(1190)] = 11311, + [SMALL_STATE(1191)] = 11371, + [SMALL_STATE(1192)] = 11431, + [SMALL_STATE(1193)] = 11491, + [SMALL_STATE(1194)] = 11551, + [SMALL_STATE(1195)] = 11611, + [SMALL_STATE(1196)] = 11671, + [SMALL_STATE(1197)] = 11731, + [SMALL_STATE(1198)] = 11791, + [SMALL_STATE(1199)] = 11851, + [SMALL_STATE(1200)] = 11911, + [SMALL_STATE(1201)] = 11971, + [SMALL_STATE(1202)] = 12031, + [SMALL_STATE(1203)] = 12091, + [SMALL_STATE(1204)] = 12151, + [SMALL_STATE(1205)] = 12211, + [SMALL_STATE(1206)] = 12271, + [SMALL_STATE(1207)] = 12331, + [SMALL_STATE(1208)] = 12391, + [SMALL_STATE(1209)] = 12451, + [SMALL_STATE(1210)] = 12511, + [SMALL_STATE(1211)] = 12571, + [SMALL_STATE(1212)] = 12631, + [SMALL_STATE(1213)] = 12691, + [SMALL_STATE(1214)] = 12751, + [SMALL_STATE(1215)] = 12811, + [SMALL_STATE(1216)] = 12871, + [SMALL_STATE(1217)] = 12931, + [SMALL_STATE(1218)] = 12991, + [SMALL_STATE(1219)] = 13051, + [SMALL_STATE(1220)] = 13111, + [SMALL_STATE(1221)] = 13171, + [SMALL_STATE(1222)] = 13231, + [SMALL_STATE(1223)] = 13291, + [SMALL_STATE(1224)] = 13355, + [SMALL_STATE(1225)] = 13415, + [SMALL_STATE(1226)] = 13475, + [SMALL_STATE(1227)] = 13535, + [SMALL_STATE(1228)] = 13595, + [SMALL_STATE(1229)] = 13655, + [SMALL_STATE(1230)] = 13715, + [SMALL_STATE(1231)] = 13775, + [SMALL_STATE(1232)] = 13835, + [SMALL_STATE(1233)] = 13895, + [SMALL_STATE(1234)] = 13955, + [SMALL_STATE(1235)] = 14015, + [SMALL_STATE(1236)] = 14075, + [SMALL_STATE(1237)] = 14135, + [SMALL_STATE(1238)] = 14195, + [SMALL_STATE(1239)] = 14255, + [SMALL_STATE(1240)] = 14315, + [SMALL_STATE(1241)] = 14375, + [SMALL_STATE(1242)] = 14435, + [SMALL_STATE(1243)] = 14495, + [SMALL_STATE(1244)] = 14555, + [SMALL_STATE(1245)] = 14615, + [SMALL_STATE(1246)] = 14675, + [SMALL_STATE(1247)] = 14735, + [SMALL_STATE(1248)] = 14795, + [SMALL_STATE(1249)] = 14855, + [SMALL_STATE(1250)] = 14915, + [SMALL_STATE(1251)] = 14975, + [SMALL_STATE(1252)] = 15035, + [SMALL_STATE(1253)] = 15095, + [SMALL_STATE(1254)] = 15155, + [SMALL_STATE(1255)] = 15215, + [SMALL_STATE(1256)] = 15275, + [SMALL_STATE(1257)] = 15335, + [SMALL_STATE(1258)] = 15395, + [SMALL_STATE(1259)] = 15455, + [SMALL_STATE(1260)] = 15515, + [SMALL_STATE(1261)] = 15575, + [SMALL_STATE(1262)] = 15635, + [SMALL_STATE(1263)] = 15695, + [SMALL_STATE(1264)] = 15755, + [SMALL_STATE(1265)] = 15815, + [SMALL_STATE(1266)] = 15875, + [SMALL_STATE(1267)] = 15935, + [SMALL_STATE(1268)] = 15995, + [SMALL_STATE(1269)] = 16055, + [SMALL_STATE(1270)] = 16115, + [SMALL_STATE(1271)] = 16175, + [SMALL_STATE(1272)] = 16235, + [SMALL_STATE(1273)] = 16295, + [SMALL_STATE(1274)] = 16355, + [SMALL_STATE(1275)] = 16415, + [SMALL_STATE(1276)] = 16475, + [SMALL_STATE(1277)] = 16535, + [SMALL_STATE(1278)] = 16595, + [SMALL_STATE(1279)] = 16655, + [SMALL_STATE(1280)] = 16715, + [SMALL_STATE(1281)] = 16775, + [SMALL_STATE(1282)] = 16835, + [SMALL_STATE(1283)] = 16895, + [SMALL_STATE(1284)] = 16955, + [SMALL_STATE(1285)] = 17015, + [SMALL_STATE(1286)] = 17075, + [SMALL_STATE(1287)] = 17135, + [SMALL_STATE(1288)] = 17195, + [SMALL_STATE(1289)] = 17255, + [SMALL_STATE(1290)] = 17315, + [SMALL_STATE(1291)] = 17375, + [SMALL_STATE(1292)] = 17435, + [SMALL_STATE(1293)] = 17495, + [SMALL_STATE(1294)] = 17555, + [SMALL_STATE(1295)] = 17615, + [SMALL_STATE(1296)] = 17675, + [SMALL_STATE(1297)] = 17735, + [SMALL_STATE(1298)] = 17795, + [SMALL_STATE(1299)] = 17855, + [SMALL_STATE(1300)] = 17915, + [SMALL_STATE(1301)] = 17975, + [SMALL_STATE(1302)] = 18035, + [SMALL_STATE(1303)] = 18095, + [SMALL_STATE(1304)] = 18155, + [SMALL_STATE(1305)] = 18215, + [SMALL_STATE(1306)] = 18275, + [SMALL_STATE(1307)] = 18335, + [SMALL_STATE(1308)] = 18395, + [SMALL_STATE(1309)] = 18455, + [SMALL_STATE(1310)] = 18515, + [SMALL_STATE(1311)] = 18575, + [SMALL_STATE(1312)] = 18635, + [SMALL_STATE(1313)] = 18695, + [SMALL_STATE(1314)] = 18755, + [SMALL_STATE(1315)] = 18815, + [SMALL_STATE(1316)] = 18875, + [SMALL_STATE(1317)] = 18935, + [SMALL_STATE(1318)] = 18995, + [SMALL_STATE(1319)] = 19055, + [SMALL_STATE(1320)] = 19115, + [SMALL_STATE(1321)] = 19175, + [SMALL_STATE(1322)] = 19235, + [SMALL_STATE(1323)] = 19295, + [SMALL_STATE(1324)] = 19355, + [SMALL_STATE(1325)] = 19415, + [SMALL_STATE(1326)] = 19475, + [SMALL_STATE(1327)] = 19535, + [SMALL_STATE(1328)] = 19595, + [SMALL_STATE(1329)] = 19655, + [SMALL_STATE(1330)] = 19715, + [SMALL_STATE(1331)] = 19807, + [SMALL_STATE(1332)] = 19867, + [SMALL_STATE(1333)] = 19927, + [SMALL_STATE(1334)] = 19987, + [SMALL_STATE(1335)] = 20047, + [SMALL_STATE(1336)] = 20107, + [SMALL_STATE(1337)] = 20167, + [SMALL_STATE(1338)] = 20227, + [SMALL_STATE(1339)] = 20287, + [SMALL_STATE(1340)] = 20347, + [SMALL_STATE(1341)] = 20407, + [SMALL_STATE(1342)] = 20467, + [SMALL_STATE(1343)] = 20527, + [SMALL_STATE(1344)] = 20587, + [SMALL_STATE(1345)] = 20647, + [SMALL_STATE(1346)] = 20707, + [SMALL_STATE(1347)] = 20767, + [SMALL_STATE(1348)] = 20827, + [SMALL_STATE(1349)] = 20887, + [SMALL_STATE(1350)] = 20947, + [SMALL_STATE(1351)] = 21007, + [SMALL_STATE(1352)] = 21067, + [SMALL_STATE(1353)] = 21127, + [SMALL_STATE(1354)] = 21187, + [SMALL_STATE(1355)] = 21247, + [SMALL_STATE(1356)] = 21307, + [SMALL_STATE(1357)] = 21367, + [SMALL_STATE(1358)] = 21427, + [SMALL_STATE(1359)] = 21487, + [SMALL_STATE(1360)] = 21547, + [SMALL_STATE(1361)] = 21607, + [SMALL_STATE(1362)] = 21667, + [SMALL_STATE(1363)] = 21727, + [SMALL_STATE(1364)] = 21787, + [SMALL_STATE(1365)] = 21847, + [SMALL_STATE(1366)] = 21907, + [SMALL_STATE(1367)] = 21967, + [SMALL_STATE(1368)] = 22027, + [SMALL_STATE(1369)] = 22087, + [SMALL_STATE(1370)] = 22147, + [SMALL_STATE(1371)] = 22207, + [SMALL_STATE(1372)] = 22267, + [SMALL_STATE(1373)] = 22327, + [SMALL_STATE(1374)] = 22387, + [SMALL_STATE(1375)] = 22447, + [SMALL_STATE(1376)] = 22507, + [SMALL_STATE(1377)] = 22567, + [SMALL_STATE(1378)] = 22627, + [SMALL_STATE(1379)] = 22687, + [SMALL_STATE(1380)] = 22747, + [SMALL_STATE(1381)] = 22807, + [SMALL_STATE(1382)] = 22867, + [SMALL_STATE(1383)] = 22927, + [SMALL_STATE(1384)] = 22987, + [SMALL_STATE(1385)] = 23047, + [SMALL_STATE(1386)] = 23107, + [SMALL_STATE(1387)] = 23167, + [SMALL_STATE(1388)] = 23227, + [SMALL_STATE(1389)] = 23287, + [SMALL_STATE(1390)] = 23347, + [SMALL_STATE(1391)] = 23407, + [SMALL_STATE(1392)] = 23467, + [SMALL_STATE(1393)] = 23527, + [SMALL_STATE(1394)] = 23587, + [SMALL_STATE(1395)] = 23647, + [SMALL_STATE(1396)] = 23707, + [SMALL_STATE(1397)] = 23767, + [SMALL_STATE(1398)] = 23827, + [SMALL_STATE(1399)] = 23887, + [SMALL_STATE(1400)] = 23947, + [SMALL_STATE(1401)] = 24007, + [SMALL_STATE(1402)] = 24067, + [SMALL_STATE(1403)] = 24127, + [SMALL_STATE(1404)] = 24187, + [SMALL_STATE(1405)] = 24253, + [SMALL_STATE(1406)] = 24313, + [SMALL_STATE(1407)] = 24379, + [SMALL_STATE(1408)] = 24439, + [SMALL_STATE(1409)] = 24499, + [SMALL_STATE(1410)] = 24559, + [SMALL_STATE(1411)] = 24619, + [SMALL_STATE(1412)] = 24679, + [SMALL_STATE(1413)] = 24739, + [SMALL_STATE(1414)] = 24799, + [SMALL_STATE(1415)] = 24859, + [SMALL_STATE(1416)] = 24919, + [SMALL_STATE(1417)] = 24979, + [SMALL_STATE(1418)] = 25039, + [SMALL_STATE(1419)] = 25099, + [SMALL_STATE(1420)] = 25159, + [SMALL_STATE(1421)] = 25219, + [SMALL_STATE(1422)] = 25279, + [SMALL_STATE(1423)] = 25339, + [SMALL_STATE(1424)] = 25399, + [SMALL_STATE(1425)] = 25459, + [SMALL_STATE(1426)] = 25519, + [SMALL_STATE(1427)] = 25579, + [SMALL_STATE(1428)] = 25639, + [SMALL_STATE(1429)] = 25699, + [SMALL_STATE(1430)] = 25759, + [SMALL_STATE(1431)] = 25819, + [SMALL_STATE(1432)] = 25879, + [SMALL_STATE(1433)] = 25941, + [SMALL_STATE(1434)] = 26003, + [SMALL_STATE(1435)] = 26063, + [SMALL_STATE(1436)] = 26123, + [SMALL_STATE(1437)] = 26183, + [SMALL_STATE(1438)] = 26243, + [SMALL_STATE(1439)] = 26303, + [SMALL_STATE(1440)] = 26363, + [SMALL_STATE(1441)] = 26423, + [SMALL_STATE(1442)] = 26483, + [SMALL_STATE(1443)] = 26551, + [SMALL_STATE(1444)] = 26611, + [SMALL_STATE(1445)] = 26671, + [SMALL_STATE(1446)] = 26731, + [SMALL_STATE(1447)] = 26791, + [SMALL_STATE(1448)] = 26851, + [SMALL_STATE(1449)] = 26913, + [SMALL_STATE(1450)] = 26973, + [SMALL_STATE(1451)] = 27035, + [SMALL_STATE(1452)] = 27095, + [SMALL_STATE(1453)] = 27155, + [SMALL_STATE(1454)] = 27215, + [SMALL_STATE(1455)] = 27275, + [SMALL_STATE(1456)] = 27335, + [SMALL_STATE(1457)] = 27395, + [SMALL_STATE(1458)] = 27455, + [SMALL_STATE(1459)] = 27515, + [SMALL_STATE(1460)] = 27575, + [SMALL_STATE(1461)] = 27641, + [SMALL_STATE(1462)] = 27707, + [SMALL_STATE(1463)] = 27767, + [SMALL_STATE(1464)] = 27827, + [SMALL_STATE(1465)] = 27891, + [SMALL_STATE(1466)] = 27951, + [SMALL_STATE(1467)] = 28011, + [SMALL_STATE(1468)] = 28071, + [SMALL_STATE(1469)] = 28131, + [SMALL_STATE(1470)] = 28191, + [SMALL_STATE(1471)] = 28251, + [SMALL_STATE(1472)] = 28311, + [SMALL_STATE(1473)] = 28371, + [SMALL_STATE(1474)] = 28431, + [SMALL_STATE(1475)] = 28491, + [SMALL_STATE(1476)] = 28551, + [SMALL_STATE(1477)] = 28611, + [SMALL_STATE(1478)] = 28671, + [SMALL_STATE(1479)] = 28731, + [SMALL_STATE(1480)] = 28791, + [SMALL_STATE(1481)] = 28883, + [SMALL_STATE(1482)] = 28943, + [SMALL_STATE(1483)] = 29004, + [SMALL_STATE(1484)] = 29063, + [SMALL_STATE(1485)] = 29158, + [SMALL_STATE(1486)] = 29217, + [SMALL_STATE(1487)] = 29276, + [SMALL_STATE(1488)] = 29335, + [SMALL_STATE(1489)] = 29430, + [SMALL_STATE(1490)] = 29489, + [SMALL_STATE(1491)] = 29548, + [SMALL_STATE(1492)] = 29609, + [SMALL_STATE(1493)] = 29668, + [SMALL_STATE(1494)] = 29742, + [SMALL_STATE(1495)] = 29834, + [SMALL_STATE(1496)] = 29924, + [SMALL_STATE(1497)] = 30010, + [SMALL_STATE(1498)] = 30100, + [SMALL_STATE(1499)] = 30198, + [SMALL_STATE(1500)] = 30270, + [SMALL_STATE(1501)] = 30368, + [SMALL_STATE(1502)] = 30444, + [SMALL_STATE(1503)] = 30526, + [SMALL_STATE(1504)] = 30610, + [SMALL_STATE(1505)] = 30680, + [SMALL_STATE(1506)] = 30770, + [SMALL_STATE(1507)] = 30860, + [SMALL_STATE(1508)] = 30952, + [SMALL_STATE(1509)] = 31030, + [SMALL_STATE(1510)] = 31128, + [SMALL_STATE(1511)] = 31196, + [SMALL_STATE(1512)] = 31286, + [SMALL_STATE(1513)] = 31372, + [SMALL_STATE(1514)] = 31462, + [SMALL_STATE(1515)] = 31532, + [SMALL_STATE(1516)] = 31624, + [SMALL_STATE(1517)] = 31690, + [SMALL_STATE(1518)] = 31757, + [SMALL_STATE(1519)] = 31842, + [SMALL_STATE(1520)] = 31927, + [SMALL_STATE(1521)] = 31994, + [SMALL_STATE(1522)] = 32059, + [SMALL_STATE(1523)] = 32144, + [SMALL_STATE(1524)] = 32229, + [SMALL_STATE(1525)] = 32292, + [SMALL_STATE(1526)] = 32359, + [SMALL_STATE(1527)] = 32422, + [SMALL_STATE(1528)] = 32482, + [SMALL_STATE(1529)] = 32542, + [SMALL_STATE(1530)] = 32598, + [SMALL_STATE(1531)] = 32654, + [SMALL_STATE(1532)] = 32710, + [SMALL_STATE(1533)] = 32766, + [SMALL_STATE(1534)] = 32830, + [SMALL_STATE(1535)] = 32888, + [SMALL_STATE(1536)] = 32946, + [SMALL_STATE(1537)] = 33010, + [SMALL_STATE(1538)] = 33068, + [SMALL_STATE(1539)] = 33124, + [SMALL_STATE(1540)] = 33184, + [SMALL_STATE(1541)] = 33242, + [SMALL_STATE(1542)] = 33302, + [SMALL_STATE(1543)] = 33366, + [SMALL_STATE(1544)] = 33424, + [SMALL_STATE(1545)] = 33488, + [SMALL_STATE(1546)] = 33544, + [SMALL_STATE(1547)] = 33600, + [SMALL_STATE(1548)] = 33656, + [SMALL_STATE(1549)] = 33716, + [SMALL_STATE(1550)] = 33776, + [SMALL_STATE(1551)] = 33836, + [SMALL_STATE(1552)] = 33892, + [SMALL_STATE(1553)] = 33950, + [SMALL_STATE(1554)] = 34045, + [SMALL_STATE(1555)] = 34140, + [SMALL_STATE(1556)] = 34235, + [SMALL_STATE(1557)] = 34330, + [SMALL_STATE(1558)] = 34389, + [SMALL_STATE(1559)] = 34484, + [SMALL_STATE(1560)] = 34539, + [SMALL_STATE(1561)] = 34634, + [SMALL_STATE(1562)] = 34729, + [SMALL_STATE(1563)] = 34784, + [SMALL_STATE(1564)] = 34841, + [SMALL_STATE(1565)] = 34898, + [SMALL_STATE(1566)] = 34953, + [SMALL_STATE(1567)] = 35010, + [SMALL_STATE(1568)] = 35105, + [SMALL_STATE(1569)] = 35162, + [SMALL_STATE(1570)] = 35221, + [SMALL_STATE(1571)] = 35280, + [SMALL_STATE(1572)] = 35335, + [SMALL_STATE(1573)] = 35430, + [SMALL_STATE(1574)] = 35485, + [SMALL_STATE(1575)] = 35544, + [SMALL_STATE(1576)] = 35599, + [SMALL_STATE(1577)] = 35654, + [SMALL_STATE(1578)] = 35749, + [SMALL_STATE(1579)] = 35804, + [SMALL_STATE(1580)] = 35899, + [SMALL_STATE(1581)] = 35956, + [SMALL_STATE(1582)] = 36013, + [SMALL_STATE(1583)] = 36108, + [SMALL_STATE(1584)] = 36165, + [SMALL_STATE(1585)] = 36253, + [SMALL_STATE(1586)] = 36345, + [SMALL_STATE(1587)] = 36427, + [SMALL_STATE(1588)] = 36493, + [SMALL_STATE(1589)] = 36547, + [SMALL_STATE(1590)] = 36601, + [SMALL_STATE(1591)] = 36689, + [SMALL_STATE(1592)] = 36745, + [SMALL_STATE(1593)] = 36833, + [SMALL_STATE(1594)] = 36919, + [SMALL_STATE(1595)] = 37005, + [SMALL_STATE(1596)] = 37061, + [SMALL_STATE(1597)] = 37117, + [SMALL_STATE(1598)] = 37209, + [SMALL_STATE(1599)] = 37263, + [SMALL_STATE(1600)] = 37317, + [SMALL_STATE(1601)] = 37371, + [SMALL_STATE(1602)] = 37427, + [SMALL_STATE(1603)] = 37481, + [SMALL_STATE(1604)] = 37553, + [SMALL_STATE(1605)] = 37609, + [SMALL_STATE(1606)] = 37665, + [SMALL_STATE(1607)] = 37751, + [SMALL_STATE(1608)] = 37843, + [SMALL_STATE(1609)] = 37899, + [SMALL_STATE(1610)] = 37955, + [SMALL_STATE(1611)] = 38041, + [SMALL_STATE(1612)] = 38129, + [SMALL_STATE(1613)] = 38209, + [SMALL_STATE(1614)] = 38265, + [SMALL_STATE(1615)] = 38323, + [SMALL_STATE(1616)] = 38379, + [SMALL_STATE(1617)] = 38435, + [SMALL_STATE(1618)] = 38491, + [SMALL_STATE(1619)] = 38583, + [SMALL_STATE(1620)] = 38637, + [SMALL_STATE(1621)] = 38729, + [SMALL_STATE(1622)] = 38785, + [SMALL_STATE(1623)] = 38841, + [SMALL_STATE(1624)] = 38895, + [SMALL_STATE(1625)] = 38949, + [SMALL_STATE(1626)] = 39037, + [SMALL_STATE(1627)] = 39093, + [SMALL_STATE(1628)] = 39147, + [SMALL_STATE(1629)] = 39201, + [SMALL_STATE(1630)] = 39255, + [SMALL_STATE(1631)] = 39309, + [SMALL_STATE(1632)] = 39397, + [SMALL_STATE(1633)] = 39471, + [SMALL_STATE(1634)] = 39559, + [SMALL_STATE(1635)] = 39613, + [SMALL_STATE(1636)] = 39677, + [SMALL_STATE(1637)] = 39733, + [SMALL_STATE(1638)] = 39811, + [SMALL_STATE(1639)] = 39899, + [SMALL_STATE(1640)] = 39969, + [SMALL_STATE(1641)] = 40023, + [SMALL_STATE(1642)] = 40105, + [SMALL_STATE(1643)] = 40197, + [SMALL_STATE(1644)] = 40283, + [SMALL_STATE(1645)] = 40351, + [SMALL_STATE(1646)] = 40437, + [SMALL_STATE(1647)] = 40491, + [SMALL_STATE(1648)] = 40544, + [SMALL_STATE(1649)] = 40597, + [SMALL_STATE(1650)] = 40650, + [SMALL_STATE(1651)] = 40703, + [SMALL_STATE(1652)] = 40756, + [SMALL_STATE(1653)] = 40809, + [SMALL_STATE(1654)] = 40862, + [SMALL_STATE(1655)] = 40949, + [SMALL_STATE(1656)] = 41002, + [SMALL_STATE(1657)] = 41089, + [SMALL_STATE(1658)] = 41142, + [SMALL_STATE(1659)] = 41195, + [SMALL_STATE(1660)] = 41280, + [SMALL_STATE(1661)] = 41369, + [SMALL_STATE(1662)] = 41422, + [SMALL_STATE(1663)] = 41475, + [SMALL_STATE(1664)] = 41562, + [SMALL_STATE(1665)] = 41615, + [SMALL_STATE(1666)] = 41668, + [SMALL_STATE(1667)] = 41731, + [SMALL_STATE(1668)] = 41800, + [SMALL_STATE(1669)] = 41867, + [SMALL_STATE(1670)] = 41938, + [SMALL_STATE(1671)] = 42015, + [SMALL_STATE(1672)] = 42094, + [SMALL_STATE(1673)] = 42159, + [SMALL_STATE(1674)] = 42244, + [SMALL_STATE(1675)] = 42329, + [SMALL_STATE(1676)] = 42402, + [SMALL_STATE(1677)] = 42483, + [SMALL_STATE(1678)] = 42536, + [SMALL_STATE(1679)] = 42589, + [SMALL_STATE(1680)] = 42642, + [SMALL_STATE(1681)] = 42695, + [SMALL_STATE(1682)] = 42748, + [SMALL_STATE(1683)] = 42835, + [SMALL_STATE(1684)] = 42888, + [SMALL_STATE(1685)] = 42941, + [SMALL_STATE(1686)] = 42994, + [SMALL_STATE(1687)] = 43047, + [SMALL_STATE(1688)] = 43100, + [SMALL_STATE(1689)] = 43153, + [SMALL_STATE(1690)] = 43206, + [SMALL_STATE(1691)] = 43259, + [SMALL_STATE(1692)] = 43312, + [SMALL_STATE(1693)] = 43365, + [SMALL_STATE(1694)] = 43418, + [SMALL_STATE(1695)] = 43505, + [SMALL_STATE(1696)] = 43558, + [SMALL_STATE(1697)] = 43611, + [SMALL_STATE(1698)] = 43664, + [SMALL_STATE(1699)] = 43751, + [SMALL_STATE(1700)] = 43804, + [SMALL_STATE(1701)] = 43857, + [SMALL_STATE(1702)] = 43944, + [SMALL_STATE(1703)] = 43997, + [SMALL_STATE(1704)] = 44050, + [SMALL_STATE(1705)] = 44103, + [SMALL_STATE(1706)] = 44192, + [SMALL_STATE(1707)] = 44279, + [SMALL_STATE(1708)] = 44332, + [SMALL_STATE(1709)] = 44417, + [SMALL_STATE(1710)] = 44470, + [SMALL_STATE(1711)] = 44523, + [SMALL_STATE(1712)] = 44610, + [SMALL_STATE(1713)] = 44663, + [SMALL_STATE(1714)] = 44750, + [SMALL_STATE(1715)] = 44837, + [SMALL_STATE(1716)] = 44926, + [SMALL_STATE(1717)] = 45015, + [SMALL_STATE(1718)] = 45104, + [SMALL_STATE(1719)] = 45157, + [SMALL_STATE(1720)] = 45210, + [SMALL_STATE(1721)] = 45263, + [SMALL_STATE(1722)] = 45316, + [SMALL_STATE(1723)] = 45369, + [SMALL_STATE(1724)] = 45458, + [SMALL_STATE(1725)] = 45511, + [SMALL_STATE(1726)] = 45564, + [SMALL_STATE(1727)] = 45653, + [SMALL_STATE(1728)] = 45742, + [SMALL_STATE(1729)] = 45795, + [SMALL_STATE(1730)] = 45848, + [SMALL_STATE(1731)] = 45901, + [SMALL_STATE(1732)] = 45990, + [SMALL_STATE(1733)] = 46043, + [SMALL_STATE(1734)] = 46096, + [SMALL_STATE(1735)] = 46149, + [SMALL_STATE(1736)] = 46238, + [SMALL_STATE(1737)] = 46291, + [SMALL_STATE(1738)] = 46344, + [SMALL_STATE(1739)] = 46429, + [SMALL_STATE(1740)] = 46518, + [SMALL_STATE(1741)] = 46571, + [SMALL_STATE(1742)] = 46660, + [SMALL_STATE(1743)] = 46749, + [SMALL_STATE(1744)] = 46838, + [SMALL_STATE(1745)] = 46925, + [SMALL_STATE(1746)] = 47014, + [SMALL_STATE(1747)] = 47103, + [SMALL_STATE(1748)] = 47192, + [SMALL_STATE(1749)] = 47281, + [SMALL_STATE(1750)] = 47370, + [SMALL_STATE(1751)] = 47457, + [SMALL_STATE(1752)] = 47544, + [SMALL_STATE(1753)] = 47633, + [SMALL_STATE(1754)] = 47686, + [SMALL_STATE(1755)] = 47739, + [SMALL_STATE(1756)] = 47828, + [SMALL_STATE(1757)] = 47891, + [SMALL_STATE(1758)] = 47960, + [SMALL_STATE(1759)] = 48027, + [SMALL_STATE(1760)] = 48098, + [SMALL_STATE(1761)] = 48175, + [SMALL_STATE(1762)] = 48254, + [SMALL_STATE(1763)] = 48319, + [SMALL_STATE(1764)] = 48408, + [SMALL_STATE(1765)] = 48495, + [SMALL_STATE(1766)] = 48580, + [SMALL_STATE(1767)] = 48669, + [SMALL_STATE(1768)] = 48742, + [SMALL_STATE(1769)] = 48823, + [SMALL_STATE(1770)] = 48876, + [SMALL_STATE(1771)] = 48957, + [SMALL_STATE(1772)] = 49042, + [SMALL_STATE(1773)] = 49131, + [SMALL_STATE(1774)] = 49216, + [SMALL_STATE(1775)] = 49301, + [SMALL_STATE(1776)] = 49390, + [SMALL_STATE(1777)] = 49475, + [SMALL_STATE(1778)] = 49564, + [SMALL_STATE(1779)] = 49623, + [SMALL_STATE(1780)] = 49676, + [SMALL_STATE(1781)] = 49729, + [SMALL_STATE(1782)] = 49782, + [SMALL_STATE(1783)] = 49871, + [SMALL_STATE(1784)] = 49960, + [SMALL_STATE(1785)] = 50049, + [SMALL_STATE(1786)] = 50102, + [SMALL_STATE(1787)] = 50191, + [SMALL_STATE(1788)] = 50280, + [SMALL_STATE(1789)] = 50333, + [SMALL_STATE(1790)] = 50386, + [SMALL_STATE(1791)] = 50475, + [SMALL_STATE(1792)] = 50564, + [SMALL_STATE(1793)] = 50653, + [SMALL_STATE(1794)] = 50706, + [SMALL_STATE(1795)] = 50759, + [SMALL_STATE(1796)] = 50820, + [SMALL_STATE(1797)] = 50909, + [SMALL_STATE(1798)] = 50998, + [SMALL_STATE(1799)] = 51087, + [SMALL_STATE(1800)] = 51176, + [SMALL_STATE(1801)] = 51265, + [SMALL_STATE(1802)] = 51352, + [SMALL_STATE(1803)] = 51441, + [SMALL_STATE(1804)] = 51530, + [SMALL_STATE(1805)] = 51619, + [SMALL_STATE(1806)] = 51708, + [SMALL_STATE(1807)] = 51761, + [SMALL_STATE(1808)] = 51814, + [SMALL_STATE(1809)] = 51903, + [SMALL_STATE(1810)] = 51992, + [SMALL_STATE(1811)] = 52081, + [SMALL_STATE(1812)] = 52170, + [SMALL_STATE(1813)] = 52223, + [SMALL_STATE(1814)] = 52312, + [SMALL_STATE(1815)] = 52401, + [SMALL_STATE(1816)] = 52454, + [SMALL_STATE(1817)] = 52507, + [SMALL_STATE(1818)] = 52560, + [SMALL_STATE(1819)] = 52613, + [SMALL_STATE(1820)] = 52666, + [SMALL_STATE(1821)] = 52719, + [SMALL_STATE(1822)] = 52772, + [SMALL_STATE(1823)] = 52825, + [SMALL_STATE(1824)] = 52878, + [SMALL_STATE(1825)] = 52931, + [SMALL_STATE(1826)] = 52984, + [SMALL_STATE(1827)] = 53043, + [SMALL_STATE(1828)] = 53102, + [SMALL_STATE(1829)] = 53155, + [SMALL_STATE(1830)] = 53234, + [SMALL_STATE(1831)] = 53287, + [SMALL_STATE(1832)] = 53368, + [SMALL_STATE(1833)] = 53421, + [SMALL_STATE(1834)] = 53506, + [SMALL_STATE(1835)] = 53559, + [SMALL_STATE(1836)] = 53612, + [SMALL_STATE(1837)] = 53699, + [SMALL_STATE(1838)] = 53786, + [SMALL_STATE(1839)] = 53839, + [SMALL_STATE(1840)] = 53924, + [SMALL_STATE(1841)] = 53977, + [SMALL_STATE(1842)] = 54062, + [SMALL_STATE(1843)] = 54115, + [SMALL_STATE(1844)] = 54204, + [SMALL_STATE(1845)] = 54291, + [SMALL_STATE(1846)] = 54344, + [SMALL_STATE(1847)] = 54397, + [SMALL_STATE(1848)] = 54450, + [SMALL_STATE(1849)] = 54503, + [SMALL_STATE(1850)] = 54556, + [SMALL_STATE(1851)] = 54609, + [SMALL_STATE(1852)] = 54662, + [SMALL_STATE(1853)] = 54715, + [SMALL_STATE(1854)] = 54774, + [SMALL_STATE(1855)] = 54827, + [SMALL_STATE(1856)] = 54912, + [SMALL_STATE(1857)] = 54996, + [SMALL_STATE(1858)] = 55082, + [SMALL_STATE(1859)] = 55168, + [SMALL_STATE(1860)] = 55254, + [SMALL_STATE(1861)] = 55340, + [SMALL_STATE(1862)] = 55426, + [SMALL_STATE(1863)] = 55512, + [SMALL_STATE(1864)] = 55598, + [SMALL_STATE(1865)] = 55684, + [SMALL_STATE(1866)] = 55760, + [SMALL_STATE(1867)] = 55846, + [SMALL_STATE(1868)] = 55932, + [SMALL_STATE(1869)] = 56018, + [SMALL_STATE(1870)] = 56104, + [SMALL_STATE(1871)] = 56190, + [SMALL_STATE(1872)] = 56276, + [SMALL_STATE(1873)] = 56362, + [SMALL_STATE(1874)] = 56448, + [SMALL_STATE(1875)] = 56534, + [SMALL_STATE(1876)] = 56610, + [SMALL_STATE(1877)] = 56696, + [SMALL_STATE(1878)] = 56782, + [SMALL_STATE(1879)] = 56868, + [SMALL_STATE(1880)] = 56954, + [SMALL_STATE(1881)] = 57040, + [SMALL_STATE(1882)] = 57126, + [SMALL_STATE(1883)] = 57212, + [SMALL_STATE(1884)] = 57298, + [SMALL_STATE(1885)] = 57382, + [SMALL_STATE(1886)] = 57468, + [SMALL_STATE(1887)] = 57554, + [SMALL_STATE(1888)] = 57640, + [SMALL_STATE(1889)] = 57726, + [SMALL_STATE(1890)] = 57812, + [SMALL_STATE(1891)] = 57885, + [SMALL_STATE(1892)] = 57958, + [SMALL_STATE(1893)] = 58031, + [SMALL_STATE(1894)] = 58104, + [SMALL_STATE(1895)] = 58177, + [SMALL_STATE(1896)] = 58251, + [SMALL_STATE(1897)] = 58325, + [SMALL_STATE(1898)] = 58399, + [SMALL_STATE(1899)] = 58473, + [SMALL_STATE(1900)] = 58547, + [SMALL_STATE(1901)] = 58621, + [SMALL_STATE(1902)] = 58695, + [SMALL_STATE(1903)] = 58769, + [SMALL_STATE(1904)] = 58815, + [SMALL_STATE(1905)] = 58861, + [SMALL_STATE(1906)] = 58907, + [SMALL_STATE(1907)] = 58968, + [SMALL_STATE(1908)] = 59029, + [SMALL_STATE(1909)] = 59090, + [SMALL_STATE(1910)] = 59151, + [SMALL_STATE(1911)] = 59212, + [SMALL_STATE(1912)] = 59273, + [SMALL_STATE(1913)] = 59334, + [SMALL_STATE(1914)] = 59395, + [SMALL_STATE(1915)] = 59453, + [SMALL_STATE(1916)] = 59511, + [SMALL_STATE(1917)] = 59559, + [SMALL_STATE(1918)] = 59595, + [SMALL_STATE(1919)] = 59631, + [SMALL_STATE(1920)] = 59668, + [SMALL_STATE(1921)] = 59713, + [SMALL_STATE(1922)] = 59750, + [SMALL_STATE(1923)] = 59795, + [SMALL_STATE(1924)] = 59848, + [SMALL_STATE(1925)] = 59893, + [SMALL_STATE(1926)] = 59930, + [SMALL_STATE(1927)] = 59967, + [SMALL_STATE(1928)] = 60007, + [SMALL_STATE(1929)] = 60047, + [SMALL_STATE(1930)] = 60083, + [SMALL_STATE(1931)] = 60123, + [SMALL_STATE(1932)] = 60159, + [SMALL_STATE(1933)] = 60199, + [SMALL_STATE(1934)] = 60235, + [SMALL_STATE(1935)] = 60271, + [SMALL_STATE(1936)] = 60304, + [SMALL_STATE(1937)] = 60337, + [SMALL_STATE(1938)] = 60370, + [SMALL_STATE(1939)] = 60403, + [SMALL_STATE(1940)] = 60436, + [SMALL_STATE(1941)] = 60469, + [SMALL_STATE(1942)] = 60500, + [SMALL_STATE(1943)] = 60533, + [SMALL_STATE(1944)] = 60566, + [SMALL_STATE(1945)] = 60598, + [SMALL_STATE(1946)] = 60630, + [SMALL_STATE(1947)] = 60662, + [SMALL_STATE(1948)] = 60708, + [SMALL_STATE(1949)] = 60768, + [SMALL_STATE(1950)] = 60812, + [SMALL_STATE(1951)] = 60872, + [SMALL_STATE(1952)] = 60901, + [SMALL_STATE(1953)] = 60954, + [SMALL_STATE(1954)] = 60985, + [SMALL_STATE(1955)] = 61014, + [SMALL_STATE(1956)] = 61047, + [SMALL_STATE(1957)] = 61076, + [SMALL_STATE(1958)] = 61109, + [SMALL_STATE(1959)] = 61138, + [SMALL_STATE(1960)] = 61169, + [SMALL_STATE(1961)] = 61202, + [SMALL_STATE(1962)] = 61243, + [SMALL_STATE(1963)] = 61274, + [SMALL_STATE(1964)] = 61305, + [SMALL_STATE(1965)] = 61336, + [SMALL_STATE(1966)] = 61365, + [SMALL_STATE(1967)] = 61398, + [SMALL_STATE(1968)] = 61427, + [SMALL_STATE(1969)] = 61458, + [SMALL_STATE(1970)] = 61513, + [SMALL_STATE(1971)] = 61544, + [SMALL_STATE(1972)] = 61573, + [SMALL_STATE(1973)] = 61606, + [SMALL_STATE(1974)] = 61635, + [SMALL_STATE(1975)] = 61678, + [SMALL_STATE(1976)] = 61709, + [SMALL_STATE(1977)] = 61762, + [SMALL_STATE(1978)] = 61791, + [SMALL_STATE(1979)] = 61824, + [SMALL_STATE(1980)] = 61852, + [SMALL_STATE(1981)] = 61880, + [SMALL_STATE(1982)] = 61908, + [SMALL_STATE(1983)] = 61936, + [SMALL_STATE(1984)] = 61964, + [SMALL_STATE(1985)] = 61992, + [SMALL_STATE(1986)] = 62020, + [SMALL_STATE(1987)] = 62048, + [SMALL_STATE(1988)] = 62076, + [SMALL_STATE(1989)] = 62104, + [SMALL_STATE(1990)] = 62132, + [SMALL_STATE(1991)] = 62162, + [SMALL_STATE(1992)] = 62190, + [SMALL_STATE(1993)] = 62218, + [SMALL_STATE(1994)] = 62246, + [SMALL_STATE(1995)] = 62274, + [SMALL_STATE(1996)] = 62302, + [SMALL_STATE(1997)] = 62330, + [SMALL_STATE(1998)] = 62358, + [SMALL_STATE(1999)] = 62386, + [SMALL_STATE(2000)] = 62414, + [SMALL_STATE(2001)] = 62442, + [SMALL_STATE(2002)] = 62486, + [SMALL_STATE(2003)] = 62514, + [SMALL_STATE(2004)] = 62542, + [SMALL_STATE(2005)] = 62572, + [SMALL_STATE(2006)] = 62600, + [SMALL_STATE(2007)] = 62628, + [SMALL_STATE(2008)] = 62656, + [SMALL_STATE(2009)] = 62684, + [SMALL_STATE(2010)] = 62712, + [SMALL_STATE(2011)] = 62740, + [SMALL_STATE(2012)] = 62771, + [SMALL_STATE(2013)] = 62800, + [SMALL_STATE(2014)] = 62829, + [SMALL_STATE(2015)] = 62880, + [SMALL_STATE(2016)] = 62915, + [SMALL_STATE(2017)] = 62947, + [SMALL_STATE(2018)] = 62979, + [SMALL_STATE(2019)] = 63009, + [SMALL_STATE(2020)] = 63041, + [SMALL_STATE(2021)] = 63073, + [SMALL_STATE(2022)] = 63101, + [SMALL_STATE(2023)] = 63145, + [SMALL_STATE(2024)] = 63177, + [SMALL_STATE(2025)] = 63209, + [SMALL_STATE(2026)] = 63241, + [SMALL_STATE(2027)] = 63273, + [SMALL_STATE(2028)] = 63305, + [SMALL_STATE(2029)] = 63337, + [SMALL_STATE(2030)] = 63369, + [SMALL_STATE(2031)] = 63401, + [SMALL_STATE(2032)] = 63429, + [SMALL_STATE(2033)] = 63474, + [SMALL_STATE(2034)] = 63519, + [SMALL_STATE(2035)] = 63564, + [SMALL_STATE(2036)] = 63609, + [SMALL_STATE(2037)] = 63654, + [SMALL_STATE(2038)] = 63699, + [SMALL_STATE(2039)] = 63744, + [SMALL_STATE(2040)] = 63789, + [SMALL_STATE(2041)] = 63834, + [SMALL_STATE(2042)] = 63871, + [SMALL_STATE(2043)] = 63916, + [SMALL_STATE(2044)] = 63961, + [SMALL_STATE(2045)] = 64006, + [SMALL_STATE(2046)] = 64051, + [SMALL_STATE(2047)] = 64096, + [SMALL_STATE(2048)] = 64141, + [SMALL_STATE(2049)] = 64183, + [SMALL_STATE(2050)] = 64211, + [SMALL_STATE(2051)] = 64253, + [SMALL_STATE(2052)] = 64293, + [SMALL_STATE(2053)] = 64317, + [SMALL_STATE(2054)] = 64341, + [SMALL_STATE(2055)] = 64383, + [SMALL_STATE(2056)] = 64413, + [SMALL_STATE(2057)] = 64453, + [SMALL_STATE(2058)] = 64491, + [SMALL_STATE(2059)] = 64525, + [SMALL_STATE(2060)] = 64563, + [SMALL_STATE(2061)] = 64587, + [SMALL_STATE(2062)] = 64611, + [SMALL_STATE(2063)] = 64653, + [SMALL_STATE(2064)] = 64681, + [SMALL_STATE(2065)] = 64709, + [SMALL_STATE(2066)] = 64737, + [SMALL_STATE(2067)] = 64775, + [SMALL_STATE(2068)] = 64817, + [SMALL_STATE(2069)] = 64845, + [SMALL_STATE(2070)] = 64873, + [SMALL_STATE(2071)] = 64901, + [SMALL_STATE(2072)] = 64943, + [SMALL_STATE(2073)] = 64971, + [SMALL_STATE(2074)] = 65001, + [SMALL_STATE(2075)] = 65025, + [SMALL_STATE(2076)] = 65053, + [SMALL_STATE(2077)] = 65095, + [SMALL_STATE(2078)] = 65135, + [SMALL_STATE(2079)] = 65173, + [SMALL_STATE(2080)] = 65203, + [SMALL_STATE(2081)] = 65241, + [SMALL_STATE(2082)] = 65271, + [SMALL_STATE(2083)] = 65309, + [SMALL_STATE(2084)] = 65347, + [SMALL_STATE(2085)] = 65385, + [SMALL_STATE(2086)] = 65413, + [SMALL_STATE(2087)] = 65447, + [SMALL_STATE(2088)] = 65485, + [SMALL_STATE(2089)] = 65513, + [SMALL_STATE(2090)] = 65541, + [SMALL_STATE(2091)] = 65564, + [SMALL_STATE(2092)] = 65587, + [SMALL_STATE(2093)] = 65610, + [SMALL_STATE(2094)] = 65633, + [SMALL_STATE(2095)] = 65656, + [SMALL_STATE(2096)] = 65679, + [SMALL_STATE(2097)] = 65702, + [SMALL_STATE(2098)] = 65739, + [SMALL_STATE(2099)] = 65770, + [SMALL_STATE(2100)] = 65793, + [SMALL_STATE(2101)] = 65828, + [SMALL_STATE(2102)] = 65851, + [SMALL_STATE(2103)] = 65886, + [SMALL_STATE(2104)] = 65909, + [SMALL_STATE(2105)] = 65932, + [SMALL_STATE(2106)] = 65973, + [SMALL_STATE(2107)] = 66004, + [SMALL_STATE(2108)] = 66035, + [SMALL_STATE(2109)] = 66058, + [SMALL_STATE(2110)] = 66081, + [SMALL_STATE(2111)] = 66104, + [SMALL_STATE(2112)] = 66127, + [SMALL_STATE(2113)] = 66150, + [SMALL_STATE(2114)] = 66173, + [SMALL_STATE(2115)] = 66196, + [SMALL_STATE(2116)] = 66219, + [SMALL_STATE(2117)] = 66254, + [SMALL_STATE(2118)] = 66295, + [SMALL_STATE(2119)] = 66318, + [SMALL_STATE(2120)] = 66359, + [SMALL_STATE(2121)] = 66382, + [SMALL_STATE(2122)] = 66405, + [SMALL_STATE(2123)] = 66428, + [SMALL_STATE(2124)] = 66451, + [SMALL_STATE(2125)] = 66474, + [SMALL_STATE(2126)] = 66497, + [SMALL_STATE(2127)] = 66520, + [SMALL_STATE(2128)] = 66551, + [SMALL_STATE(2129)] = 66574, + [SMALL_STATE(2130)] = 66597, + [SMALL_STATE(2131)] = 66630, + [SMALL_STATE(2132)] = 66671, + [SMALL_STATE(2133)] = 66694, + [SMALL_STATE(2134)] = 66717, + [SMALL_STATE(2135)] = 66754, + [SMALL_STATE(2136)] = 66777, + [SMALL_STATE(2137)] = 66800, + [SMALL_STATE(2138)] = 66837, + [SMALL_STATE(2139)] = 66874, + [SMALL_STATE(2140)] = 66897, + [SMALL_STATE(2141)] = 66920, + [SMALL_STATE(2142)] = 66943, + [SMALL_STATE(2143)] = 66975, + [SMALL_STATE(2144)] = 67013, + [SMALL_STATE(2145)] = 67037, + [SMALL_STATE(2146)] = 67071, + [SMALL_STATE(2147)] = 67109, + [SMALL_STATE(2148)] = 67141, + [SMALL_STATE(2149)] = 67167, + [SMALL_STATE(2150)] = 67193, + [SMALL_STATE(2151)] = 67219, + [SMALL_STATE(2152)] = 67257, + [SMALL_STATE(2153)] = 67289, + [SMALL_STATE(2154)] = 67321, + [SMALL_STATE(2155)] = 67349, + [SMALL_STATE(2156)] = 67373, + [SMALL_STATE(2157)] = 67405, + [SMALL_STATE(2158)] = 67437, + [SMALL_STATE(2159)] = 67461, + [SMALL_STATE(2160)] = 67485, + [SMALL_STATE(2161)] = 67509, + [SMALL_STATE(2162)] = 67541, + [SMALL_STATE(2163)] = 67573, + [SMALL_STATE(2164)] = 67611, + [SMALL_STATE(2165)] = 67639, + [SMALL_STATE(2166)] = 67677, + [SMALL_STATE(2167)] = 67705, + [SMALL_STATE(2168)] = 67733, + [SMALL_STATE(2169)] = 67771, + [SMALL_STATE(2170)] = 67809, + [SMALL_STATE(2171)] = 67835, + [SMALL_STATE(2172)] = 67873, + [SMALL_STATE(2173)] = 67911, + [SMALL_STATE(2174)] = 67949, + [SMALL_STATE(2175)] = 67987, + [SMALL_STATE(2176)] = 68025, + [SMALL_STATE(2177)] = 68063, + [SMALL_STATE(2178)] = 68097, + [SMALL_STATE(2179)] = 68125, + [SMALL_STATE(2180)] = 68153, + [SMALL_STATE(2181)] = 68189, + [SMALL_STATE(2182)] = 68221, + [SMALL_STATE(2183)] = 68253, + [SMALL_STATE(2184)] = 68281, + [SMALL_STATE(2185)] = 68319, + [SMALL_STATE(2186)] = 68357, + [SMALL_STATE(2187)] = 68389, + [SMALL_STATE(2188)] = 68421, + [SMALL_STATE(2189)] = 68453, + [SMALL_STATE(2190)] = 68491, + [SMALL_STATE(2191)] = 68526, + [SMALL_STATE(2192)] = 68561, + [SMALL_STATE(2193)] = 68582, + [SMALL_STATE(2194)] = 68607, + [SMALL_STATE(2195)] = 68632, + [SMALL_STATE(2196)] = 68657, + [SMALL_STATE(2197)] = 68684, + [SMALL_STATE(2198)] = 68719, + [SMALL_STATE(2199)] = 68740, + [SMALL_STATE(2200)] = 68775, + [SMALL_STATE(2201)] = 68796, + [SMALL_STATE(2202)] = 68831, + [SMALL_STATE(2203)] = 68866, + [SMALL_STATE(2204)] = 68901, + [SMALL_STATE(2205)] = 68934, + [SMALL_STATE(2206)] = 68967, + [SMALL_STATE(2207)] = 68988, + [SMALL_STATE(2208)] = 69023, + [SMALL_STATE(2209)] = 69058, + [SMALL_STATE(2210)] = 69093, + [SMALL_STATE(2211)] = 69128, + [SMALL_STATE(2212)] = 69163, + [SMALL_STATE(2213)] = 69184, + [SMALL_STATE(2214)] = 69219, + [SMALL_STATE(2215)] = 69240, + [SMALL_STATE(2216)] = 69275, + [SMALL_STATE(2217)] = 69310, + [SMALL_STATE(2218)] = 69345, + [SMALL_STATE(2219)] = 69380, + [SMALL_STATE(2220)] = 69415, + [SMALL_STATE(2221)] = 69450, + [SMALL_STATE(2222)] = 69485, + [SMALL_STATE(2223)] = 69520, + [SMALL_STATE(2224)] = 69555, + [SMALL_STATE(2225)] = 69590, + [SMALL_STATE(2226)] = 69625, + [SMALL_STATE(2227)] = 69660, + [SMALL_STATE(2228)] = 69693, + [SMALL_STATE(2229)] = 69728, + [SMALL_STATE(2230)] = 69763, + [SMALL_STATE(2231)] = 69796, + [SMALL_STATE(2232)] = 69831, + [SMALL_STATE(2233)] = 69864, + [SMALL_STATE(2234)] = 69893, + [SMALL_STATE(2235)] = 69928, + [SMALL_STATE(2236)] = 69963, + [SMALL_STATE(2237)] = 69998, + [SMALL_STATE(2238)] = 70033, + [SMALL_STATE(2239)] = 70068, + [SMALL_STATE(2240)] = 70103, + [SMALL_STATE(2241)] = 70138, + [SMALL_STATE(2242)] = 70173, + [SMALL_STATE(2243)] = 70208, + [SMALL_STATE(2244)] = 70243, + [SMALL_STATE(2245)] = 70278, + [SMALL_STATE(2246)] = 70313, + [SMALL_STATE(2247)] = 70345, + [SMALL_STATE(2248)] = 70371, + [SMALL_STATE(2249)] = 70403, + [SMALL_STATE(2250)] = 70433, + [SMALL_STATE(2251)] = 70463, + [SMALL_STATE(2252)] = 70495, + [SMALL_STATE(2253)] = 70523, + [SMALL_STATE(2254)] = 70553, + [SMALL_STATE(2255)] = 70581, + [SMALL_STATE(2256)] = 70613, + [SMALL_STATE(2257)] = 70635, + [SMALL_STATE(2258)] = 70667, + [SMALL_STATE(2259)] = 70699, + [SMALL_STATE(2260)] = 70731, + [SMALL_STATE(2261)] = 70753, + [SMALL_STATE(2262)] = 70785, + [SMALL_STATE(2263)] = 70817, + [SMALL_STATE(2264)] = 70849, + [SMALL_STATE(2265)] = 70881, + [SMALL_STATE(2266)] = 70913, + [SMALL_STATE(2267)] = 70945, + [SMALL_STATE(2268)] = 70977, + [SMALL_STATE(2269)] = 71009, + [SMALL_STATE(2270)] = 71041, + [SMALL_STATE(2271)] = 71073, + [SMALL_STATE(2272)] = 71105, + [SMALL_STATE(2273)] = 71137, + [SMALL_STATE(2274)] = 71169, + [SMALL_STATE(2275)] = 71191, + [SMALL_STATE(2276)] = 71223, + [SMALL_STATE(2277)] = 71253, + [SMALL_STATE(2278)] = 71283, + [SMALL_STATE(2279)] = 71311, + [SMALL_STATE(2280)] = 71343, + [SMALL_STATE(2281)] = 71375, + [SMALL_STATE(2282)] = 71407, + [SMALL_STATE(2283)] = 71439, + [SMALL_STATE(2284)] = 71465, + [SMALL_STATE(2285)] = 71493, + [SMALL_STATE(2286)] = 71519, + [SMALL_STATE(2287)] = 71547, + [SMALL_STATE(2288)] = 71579, + [SMALL_STATE(2289)] = 71611, + [SMALL_STATE(2290)] = 71643, + [SMALL_STATE(2291)] = 71673, + [SMALL_STATE(2292)] = 71703, + [SMALL_STATE(2293)] = 71735, + [SMALL_STATE(2294)] = 71765, + [SMALL_STATE(2295)] = 71791, + [SMALL_STATE(2296)] = 71813, + [SMALL_STATE(2297)] = 71845, + [SMALL_STATE(2298)] = 71877, + [SMALL_STATE(2299)] = 71899, + [SMALL_STATE(2300)] = 71929, + [SMALL_STATE(2301)] = 71959, + [SMALL_STATE(2302)] = 71981, + [SMALL_STATE(2303)] = 72013, + [SMALL_STATE(2304)] = 72045, + [SMALL_STATE(2305)] = 72074, + [SMALL_STATE(2306)] = 72095, + [SMALL_STATE(2307)] = 72114, + [SMALL_STATE(2308)] = 72137, + [SMALL_STATE(2309)] = 72166, + [SMALL_STATE(2310)] = 72191, + [SMALL_STATE(2311)] = 72212, + [SMALL_STATE(2312)] = 72233, + [SMALL_STATE(2313)] = 72254, + [SMALL_STATE(2314)] = 72283, + [SMALL_STATE(2315)] = 72304, + [SMALL_STATE(2316)] = 72333, + [SMALL_STATE(2317)] = 72362, + [SMALL_STATE(2318)] = 72389, + [SMALL_STATE(2319)] = 72410, + [SMALL_STATE(2320)] = 72431, + [SMALL_STATE(2321)] = 72458, + [SMALL_STATE(2322)] = 72487, + [SMALL_STATE(2323)] = 72516, + [SMALL_STATE(2324)] = 72545, + [SMALL_STATE(2325)] = 72574, + [SMALL_STATE(2326)] = 72603, + [SMALL_STATE(2327)] = 72632, + [SMALL_STATE(2328)] = 72655, + [SMALL_STATE(2329)] = 72684, + [SMALL_STATE(2330)] = 72707, + [SMALL_STATE(2331)] = 72736, + [SMALL_STATE(2332)] = 72765, + [SMALL_STATE(2333)] = 72794, + [SMALL_STATE(2334)] = 72823, + [SMALL_STATE(2335)] = 72852, + [SMALL_STATE(2336)] = 72881, + [SMALL_STATE(2337)] = 72910, + [SMALL_STATE(2338)] = 72939, + [SMALL_STATE(2339)] = 72968, + [SMALL_STATE(2340)] = 72997, + [SMALL_STATE(2341)] = 73026, + [SMALL_STATE(2342)] = 73055, + [SMALL_STATE(2343)] = 73084, + [SMALL_STATE(2344)] = 73113, + [SMALL_STATE(2345)] = 73140, + [SMALL_STATE(2346)] = 73169, + [SMALL_STATE(2347)] = 73198, + [SMALL_STATE(2348)] = 73227, + [SMALL_STATE(2349)] = 73256, + [SMALL_STATE(2350)] = 73285, + [SMALL_STATE(2351)] = 73314, + [SMALL_STATE(2352)] = 73343, + [SMALL_STATE(2353)] = 73372, + [SMALL_STATE(2354)] = 73401, + [SMALL_STATE(2355)] = 73430, + [SMALL_STATE(2356)] = 73453, + [SMALL_STATE(2357)] = 73476, + [SMALL_STATE(2358)] = 73505, + [SMALL_STATE(2359)] = 73534, + [SMALL_STATE(2360)] = 73563, + [SMALL_STATE(2361)] = 73592, + [SMALL_STATE(2362)] = 73619, + [SMALL_STATE(2363)] = 73648, + [SMALL_STATE(2364)] = 73677, + [SMALL_STATE(2365)] = 73706, + [SMALL_STATE(2366)] = 73735, + [SMALL_STATE(2367)] = 73764, + [SMALL_STATE(2368)] = 73793, + [SMALL_STATE(2369)] = 73822, + [SMALL_STATE(2370)] = 73851, + [SMALL_STATE(2371)] = 73880, + [SMALL_STATE(2372)] = 73909, + [SMALL_STATE(2373)] = 73938, + [SMALL_STATE(2374)] = 73965, + [SMALL_STATE(2375)] = 73994, + [SMALL_STATE(2376)] = 74023, + [SMALL_STATE(2377)] = 74050, + [SMALL_STATE(2378)] = 74079, + [SMALL_STATE(2379)] = 74108, + [SMALL_STATE(2380)] = 74137, + [SMALL_STATE(2381)] = 74160, + [SMALL_STATE(2382)] = 74183, + [SMALL_STATE(2383)] = 74212, + [SMALL_STATE(2384)] = 74235, + [SMALL_STATE(2385)] = 74260, + [SMALL_STATE(2386)] = 74289, + [SMALL_STATE(2387)] = 74318, + [SMALL_STATE(2388)] = 74347, + [SMALL_STATE(2389)] = 74368, + [SMALL_STATE(2390)] = 74391, + [SMALL_STATE(2391)] = 74416, + [SMALL_STATE(2392)] = 74441, + [SMALL_STATE(2393)] = 74460, + [SMALL_STATE(2394)] = 74483, + [SMALL_STATE(2395)] = 74512, + [SMALL_STATE(2396)] = 74541, + [SMALL_STATE(2397)] = 74564, + [SMALL_STATE(2398)] = 74593, + [SMALL_STATE(2399)] = 74616, + [SMALL_STATE(2400)] = 74645, + [SMALL_STATE(2401)] = 74668, + [SMALL_STATE(2402)] = 74691, + [SMALL_STATE(2403)] = 74720, + [SMALL_STATE(2404)] = 74746, + [SMALL_STATE(2405)] = 74772, + [SMALL_STATE(2406)] = 74794, + [SMALL_STATE(2407)] = 74820, + [SMALL_STATE(2408)] = 74842, + [SMALL_STATE(2409)] = 74868, + [SMALL_STATE(2410)] = 74894, + [SMALL_STATE(2411)] = 74920, + [SMALL_STATE(2412)] = 74946, + [SMALL_STATE(2413)] = 74964, + [SMALL_STATE(2414)] = 74990, + [SMALL_STATE(2415)] = 75008, + [SMALL_STATE(2416)] = 75034, + [SMALL_STATE(2417)] = 75060, + [SMALL_STATE(2418)] = 75086, + [SMALL_STATE(2419)] = 75108, + [SMALL_STATE(2420)] = 75130, + [SMALL_STATE(2421)] = 75156, + [SMALL_STATE(2422)] = 75180, + [SMALL_STATE(2423)] = 75206, + [SMALL_STATE(2424)] = 75230, + [SMALL_STATE(2425)] = 75256, + [SMALL_STATE(2426)] = 75282, + [SMALL_STATE(2427)] = 75308, + [SMALL_STATE(2428)] = 75334, + [SMALL_STATE(2429)] = 75360, + [SMALL_STATE(2430)] = 75386, + [SMALL_STATE(2431)] = 75412, + [SMALL_STATE(2432)] = 75434, + [SMALL_STATE(2433)] = 75458, + [SMALL_STATE(2434)] = 75484, + [SMALL_STATE(2435)] = 75510, + [SMALL_STATE(2436)] = 75532, + [SMALL_STATE(2437)] = 75556, + [SMALL_STATE(2438)] = 75578, + [SMALL_STATE(2439)] = 75604, + [SMALL_STATE(2440)] = 75628, + [SMALL_STATE(2441)] = 75654, + [SMALL_STATE(2442)] = 75680, + [SMALL_STATE(2443)] = 75706, + [SMALL_STATE(2444)] = 75730, + [SMALL_STATE(2445)] = 75748, + [SMALL_STATE(2446)] = 75766, + [SMALL_STATE(2447)] = 75792, + [SMALL_STATE(2448)] = 75810, + [SMALL_STATE(2449)] = 75836, + [SMALL_STATE(2450)] = 75860, + [SMALL_STATE(2451)] = 75886, + [SMALL_STATE(2452)] = 75912, + [SMALL_STATE(2453)] = 75938, + [SMALL_STATE(2454)] = 75964, + [SMALL_STATE(2455)] = 75984, + [SMALL_STATE(2456)] = 76010, + [SMALL_STATE(2457)] = 76036, + [SMALL_STATE(2458)] = 76058, + [SMALL_STATE(2459)] = 76076, + [SMALL_STATE(2460)] = 76098, + [SMALL_STATE(2461)] = 76124, + [SMALL_STATE(2462)] = 76142, + [SMALL_STATE(2463)] = 76160, + [SMALL_STATE(2464)] = 76184, + [SMALL_STATE(2465)] = 76208, + [SMALL_STATE(2466)] = 76234, + [SMALL_STATE(2467)] = 76252, + [SMALL_STATE(2468)] = 76270, + [SMALL_STATE(2469)] = 76288, + [SMALL_STATE(2470)] = 76310, + [SMALL_STATE(2471)] = 76336, + [SMALL_STATE(2472)] = 76362, + [SMALL_STATE(2473)] = 76388, + [SMALL_STATE(2474)] = 76412, + [SMALL_STATE(2475)] = 76430, + [SMALL_STATE(2476)] = 76456, + [SMALL_STATE(2477)] = 76482, + [SMALL_STATE(2478)] = 76500, + [SMALL_STATE(2479)] = 76518, + [SMALL_STATE(2480)] = 76544, + [SMALL_STATE(2481)] = 76562, + [SMALL_STATE(2482)] = 76580, + [SMALL_STATE(2483)] = 76606, + [SMALL_STATE(2484)] = 76632, + [SMALL_STATE(2485)] = 76650, + [SMALL_STATE(2486)] = 76670, + [SMALL_STATE(2487)] = 76696, + [SMALL_STATE(2488)] = 76722, + [SMALL_STATE(2489)] = 76742, + [SMALL_STATE(2490)] = 76768, + [SMALL_STATE(2491)] = 76792, + [SMALL_STATE(2492)] = 76818, + [SMALL_STATE(2493)] = 76836, + [SMALL_STATE(2494)] = 76860, + [SMALL_STATE(2495)] = 76884, + [SMALL_STATE(2496)] = 76902, + [SMALL_STATE(2497)] = 76920, + [SMALL_STATE(2498)] = 76938, + [SMALL_STATE(2499)] = 76964, + [SMALL_STATE(2500)] = 76990, + [SMALL_STATE(2501)] = 77016, + [SMALL_STATE(2502)] = 77034, + [SMALL_STATE(2503)] = 77060, + [SMALL_STATE(2504)] = 77086, + [SMALL_STATE(2505)] = 77110, + [SMALL_STATE(2506)] = 77136, + [SMALL_STATE(2507)] = 77154, + [SMALL_STATE(2508)] = 77180, + [SMALL_STATE(2509)] = 77206, + [SMALL_STATE(2510)] = 77230, + [SMALL_STATE(2511)] = 77248, + [SMALL_STATE(2512)] = 77266, + [SMALL_STATE(2513)] = 77289, + [SMALL_STATE(2514)] = 77308, + [SMALL_STATE(2515)] = 77327, + [SMALL_STATE(2516)] = 77348, + [SMALL_STATE(2517)] = 77367, + [SMALL_STATE(2518)] = 77390, + [SMALL_STATE(2519)] = 77411, + [SMALL_STATE(2520)] = 77434, + [SMALL_STATE(2521)] = 77457, + [SMALL_STATE(2522)] = 77474, + [SMALL_STATE(2523)] = 77497, + [SMALL_STATE(2524)] = 77520, + [SMALL_STATE(2525)] = 77543, + [SMALL_STATE(2526)] = 77566, + [SMALL_STATE(2527)] = 77589, + [SMALL_STATE(2528)] = 77612, + [SMALL_STATE(2529)] = 77635, + [SMALL_STATE(2530)] = 77658, + [SMALL_STATE(2531)] = 77681, + [SMALL_STATE(2532)] = 77700, + [SMALL_STATE(2533)] = 77721, + [SMALL_STATE(2534)] = 77744, + [SMALL_STATE(2535)] = 77765, + [SMALL_STATE(2536)] = 77788, + [SMALL_STATE(2537)] = 77811, + [SMALL_STATE(2538)] = 77828, + [SMALL_STATE(2539)] = 77851, + [SMALL_STATE(2540)] = 77868, + [SMALL_STATE(2541)] = 77891, + [SMALL_STATE(2542)] = 77914, + [SMALL_STATE(2543)] = 77937, + [SMALL_STATE(2544)] = 77960, + [SMALL_STATE(2545)] = 77983, + [SMALL_STATE(2546)] = 78006, + [SMALL_STATE(2547)] = 78029, + [SMALL_STATE(2548)] = 78052, + [SMALL_STATE(2549)] = 78073, + [SMALL_STATE(2550)] = 78096, + [SMALL_STATE(2551)] = 78119, + [SMALL_STATE(2552)] = 78142, + [SMALL_STATE(2553)] = 78165, + [SMALL_STATE(2554)] = 78188, + [SMALL_STATE(2555)] = 78211, + [SMALL_STATE(2556)] = 78234, + [SMALL_STATE(2557)] = 78257, + [SMALL_STATE(2558)] = 78280, + [SMALL_STATE(2559)] = 78303, + [SMALL_STATE(2560)] = 78326, + [SMALL_STATE(2561)] = 78347, + [SMALL_STATE(2562)] = 78370, + [SMALL_STATE(2563)] = 78391, + [SMALL_STATE(2564)] = 78414, + [SMALL_STATE(2565)] = 78437, + [SMALL_STATE(2566)] = 78460, + [SMALL_STATE(2567)] = 78481, + [SMALL_STATE(2568)] = 78504, + [SMALL_STATE(2569)] = 78527, + [SMALL_STATE(2570)] = 78550, + [SMALL_STATE(2571)] = 78573, + [SMALL_STATE(2572)] = 78594, + [SMALL_STATE(2573)] = 78615, + [SMALL_STATE(2574)] = 78638, + [SMALL_STATE(2575)] = 78661, + [SMALL_STATE(2576)] = 78682, + [SMALL_STATE(2577)] = 78705, + [SMALL_STATE(2578)] = 78728, + [SMALL_STATE(2579)] = 78747, + [SMALL_STATE(2580)] = 78770, + [SMALL_STATE(2581)] = 78793, + [SMALL_STATE(2582)] = 78816, + [SMALL_STATE(2583)] = 78839, + [SMALL_STATE(2584)] = 78858, + [SMALL_STATE(2585)] = 78881, + [SMALL_STATE(2586)] = 78900, + [SMALL_STATE(2587)] = 78923, + [SMALL_STATE(2588)] = 78946, + [SMALL_STATE(2589)] = 78969, + [SMALL_STATE(2590)] = 78992, + [SMALL_STATE(2591)] = 79015, + [SMALL_STATE(2592)] = 79034, + [SMALL_STATE(2593)] = 79057, + [SMALL_STATE(2594)] = 79080, + [SMALL_STATE(2595)] = 79103, + [SMALL_STATE(2596)] = 79126, + [SMALL_STATE(2597)] = 79147, + [SMALL_STATE(2598)] = 79170, + [SMALL_STATE(2599)] = 79193, + [SMALL_STATE(2600)] = 79216, + [SMALL_STATE(2601)] = 79237, + [SMALL_STATE(2602)] = 79260, + [SMALL_STATE(2603)] = 79283, + [SMALL_STATE(2604)] = 79306, + [SMALL_STATE(2605)] = 79329, + [SMALL_STATE(2606)] = 79352, + [SMALL_STATE(2607)] = 79375, + [SMALL_STATE(2608)] = 79398, + [SMALL_STATE(2609)] = 79419, + [SMALL_STATE(2610)] = 79442, + [SMALL_STATE(2611)] = 79465, + [SMALL_STATE(2612)] = 79488, + [SMALL_STATE(2613)] = 79511, + [SMALL_STATE(2614)] = 79534, + [SMALL_STATE(2615)] = 79557, + [SMALL_STATE(2616)] = 79580, + [SMALL_STATE(2617)] = 79603, + [SMALL_STATE(2618)] = 79626, + [SMALL_STATE(2619)] = 79647, + [SMALL_STATE(2620)] = 79670, + [SMALL_STATE(2621)] = 79693, + [SMALL_STATE(2622)] = 79716, + [SMALL_STATE(2623)] = 79739, + [SMALL_STATE(2624)] = 79760, + [SMALL_STATE(2625)] = 79783, + [SMALL_STATE(2626)] = 79806, + [SMALL_STATE(2627)] = 79829, + [SMALL_STATE(2628)] = 79852, + [SMALL_STATE(2629)] = 79871, + [SMALL_STATE(2630)] = 79892, + [SMALL_STATE(2631)] = 79913, + [SMALL_STATE(2632)] = 79936, + [SMALL_STATE(2633)] = 79959, + [SMALL_STATE(2634)] = 79982, + [SMALL_STATE(2635)] = 80005, + [SMALL_STATE(2636)] = 80028, + [SMALL_STATE(2637)] = 80045, + [SMALL_STATE(2638)] = 80068, + [SMALL_STATE(2639)] = 80091, + [SMALL_STATE(2640)] = 80114, + [SMALL_STATE(2641)] = 80137, + [SMALL_STATE(2642)] = 80160, + [SMALL_STATE(2643)] = 80183, + [SMALL_STATE(2644)] = 80206, + [SMALL_STATE(2645)] = 80227, + [SMALL_STATE(2646)] = 80250, + [SMALL_STATE(2647)] = 80273, + [SMALL_STATE(2648)] = 80296, + [SMALL_STATE(2649)] = 80319, + [SMALL_STATE(2650)] = 80342, + [SMALL_STATE(2651)] = 80359, + [SMALL_STATE(2652)] = 80382, + [SMALL_STATE(2653)] = 80405, + [SMALL_STATE(2654)] = 80424, + [SMALL_STATE(2655)] = 80447, + [SMALL_STATE(2656)] = 80470, + [SMALL_STATE(2657)] = 80491, + [SMALL_STATE(2658)] = 80514, + [SMALL_STATE(2659)] = 80531, + [SMALL_STATE(2660)] = 80554, + [SMALL_STATE(2661)] = 80575, + [SMALL_STATE(2662)] = 80598, + [SMALL_STATE(2663)] = 80621, + [SMALL_STATE(2664)] = 80644, + [SMALL_STATE(2665)] = 80663, + [SMALL_STATE(2666)] = 80686, + [SMALL_STATE(2667)] = 80707, + [SMALL_STATE(2668)] = 80730, + [SMALL_STATE(2669)] = 80753, + [SMALL_STATE(2670)] = 80776, + [SMALL_STATE(2671)] = 80799, + [SMALL_STATE(2672)] = 80822, + [SMALL_STATE(2673)] = 80845, + [SMALL_STATE(2674)] = 80864, + [SMALL_STATE(2675)] = 80887, + [SMALL_STATE(2676)] = 80910, + [SMALL_STATE(2677)] = 80933, + [SMALL_STATE(2678)] = 80956, + [SMALL_STATE(2679)] = 80979, + [SMALL_STATE(2680)] = 81002, + [SMALL_STATE(2681)] = 81025, + [SMALL_STATE(2682)] = 81044, + [SMALL_STATE(2683)] = 81067, + [SMALL_STATE(2684)] = 81090, + [SMALL_STATE(2685)] = 81113, + [SMALL_STATE(2686)] = 81136, + [SMALL_STATE(2687)] = 81155, + [SMALL_STATE(2688)] = 81178, + [SMALL_STATE(2689)] = 81201, + [SMALL_STATE(2690)] = 81224, + [SMALL_STATE(2691)] = 81243, + [SMALL_STATE(2692)] = 81266, + [SMALL_STATE(2693)] = 81289, + [SMALL_STATE(2694)] = 81312, + [SMALL_STATE(2695)] = 81335, + [SMALL_STATE(2696)] = 81358, + [SMALL_STATE(2697)] = 81381, + [SMALL_STATE(2698)] = 81404, + [SMALL_STATE(2699)] = 81427, + [SMALL_STATE(2700)] = 81448, + [SMALL_STATE(2701)] = 81471, + [SMALL_STATE(2702)] = 81494, + [SMALL_STATE(2703)] = 81513, + [SMALL_STATE(2704)] = 81536, + [SMALL_STATE(2705)] = 81559, + [SMALL_STATE(2706)] = 81578, + [SMALL_STATE(2707)] = 81601, + [SMALL_STATE(2708)] = 81624, + [SMALL_STATE(2709)] = 81647, + [SMALL_STATE(2710)] = 81664, + [SMALL_STATE(2711)] = 81687, + [SMALL_STATE(2712)] = 81710, + [SMALL_STATE(2713)] = 81727, + [SMALL_STATE(2714)] = 81750, + [SMALL_STATE(2715)] = 81771, + [SMALL_STATE(2716)] = 81794, + [SMALL_STATE(2717)] = 81817, + [SMALL_STATE(2718)] = 81840, + [SMALL_STATE(2719)] = 81863, + [SMALL_STATE(2720)] = 81882, + [SMALL_STATE(2721)] = 81905, + [SMALL_STATE(2722)] = 81928, + [SMALL_STATE(2723)] = 81951, + [SMALL_STATE(2724)] = 81974, + [SMALL_STATE(2725)] = 81995, + [SMALL_STATE(2726)] = 82016, + [SMALL_STATE(2727)] = 82039, + [SMALL_STATE(2728)] = 82062, + [SMALL_STATE(2729)] = 82083, + [SMALL_STATE(2730)] = 82106, + [SMALL_STATE(2731)] = 82127, + [SMALL_STATE(2732)] = 82146, + [SMALL_STATE(2733)] = 82165, + [SMALL_STATE(2734)] = 82184, + [SMALL_STATE(2735)] = 82203, + [SMALL_STATE(2736)] = 82222, + [SMALL_STATE(2737)] = 82245, + [SMALL_STATE(2738)] = 82268, + [SMALL_STATE(2739)] = 82291, + [SMALL_STATE(2740)] = 82310, + [SMALL_STATE(2741)] = 82333, + [SMALL_STATE(2742)] = 82356, + [SMALL_STATE(2743)] = 82379, + [SMALL_STATE(2744)] = 82402, + [SMALL_STATE(2745)] = 82425, + [SMALL_STATE(2746)] = 82448, + [SMALL_STATE(2747)] = 82471, + [SMALL_STATE(2748)] = 82490, + [SMALL_STATE(2749)] = 82513, + [SMALL_STATE(2750)] = 82532, + [SMALL_STATE(2751)] = 82555, + [SMALL_STATE(2752)] = 82578, + [SMALL_STATE(2753)] = 82601, + [SMALL_STATE(2754)] = 82621, + [SMALL_STATE(2755)] = 82641, + [SMALL_STATE(2756)] = 82661, + [SMALL_STATE(2757)] = 82681, + [SMALL_STATE(2758)] = 82701, + [SMALL_STATE(2759)] = 82721, + [SMALL_STATE(2760)] = 82741, + [SMALL_STATE(2761)] = 82761, + [SMALL_STATE(2762)] = 82781, + [SMALL_STATE(2763)] = 82801, + [SMALL_STATE(2764)] = 82821, + [SMALL_STATE(2765)] = 82839, + [SMALL_STATE(2766)] = 82859, + [SMALL_STATE(2767)] = 82879, + [SMALL_STATE(2768)] = 82899, + [SMALL_STATE(2769)] = 82917, + [SMALL_STATE(2770)] = 82937, + [SMALL_STATE(2771)] = 82957, + [SMALL_STATE(2772)] = 82973, + [SMALL_STATE(2773)] = 82993, + [SMALL_STATE(2774)] = 83013, + [SMALL_STATE(2775)] = 83033, + [SMALL_STATE(2776)] = 83053, + [SMALL_STATE(2777)] = 83071, + [SMALL_STATE(2778)] = 83091, + [SMALL_STATE(2779)] = 83111, + [SMALL_STATE(2780)] = 83131, + [SMALL_STATE(2781)] = 83151, + [SMALL_STATE(2782)] = 83169, + [SMALL_STATE(2783)] = 83189, + [SMALL_STATE(2784)] = 83209, + [SMALL_STATE(2785)] = 83229, + [SMALL_STATE(2786)] = 83249, + [SMALL_STATE(2787)] = 83269, + [SMALL_STATE(2788)] = 83289, + [SMALL_STATE(2789)] = 83309, + [SMALL_STATE(2790)] = 83329, + [SMALL_STATE(2791)] = 83349, + [SMALL_STATE(2792)] = 83369, + [SMALL_STATE(2793)] = 83389, + [SMALL_STATE(2794)] = 83409, + [SMALL_STATE(2795)] = 83427, + [SMALL_STATE(2796)] = 83447, + [SMALL_STATE(2797)] = 83467, + [SMALL_STATE(2798)] = 83483, + [SMALL_STATE(2799)] = 83503, + [SMALL_STATE(2800)] = 83523, + [SMALL_STATE(2801)] = 83543, + [SMALL_STATE(2802)] = 83563, + [SMALL_STATE(2803)] = 83583, + [SMALL_STATE(2804)] = 83603, + [SMALL_STATE(2805)] = 83623, + [SMALL_STATE(2806)] = 83643, + [SMALL_STATE(2807)] = 83663, + [SMALL_STATE(2808)] = 83683, + [SMALL_STATE(2809)] = 83703, + [SMALL_STATE(2810)] = 83723, + [SMALL_STATE(2811)] = 83743, + [SMALL_STATE(2812)] = 83763, + [SMALL_STATE(2813)] = 83779, + [SMALL_STATE(2814)] = 83799, + [SMALL_STATE(2815)] = 83819, + [SMALL_STATE(2816)] = 83839, + [SMALL_STATE(2817)] = 83859, + [SMALL_STATE(2818)] = 83879, + [SMALL_STATE(2819)] = 83895, + [SMALL_STATE(2820)] = 83915, + [SMALL_STATE(2821)] = 83935, + [SMALL_STATE(2822)] = 83955, + [SMALL_STATE(2823)] = 83975, + [SMALL_STATE(2824)] = 83995, + [SMALL_STATE(2825)] = 84015, + [SMALL_STATE(2826)] = 84031, + [SMALL_STATE(2827)] = 84051, + [SMALL_STATE(2828)] = 84071, + [SMALL_STATE(2829)] = 84091, + [SMALL_STATE(2830)] = 84111, + [SMALL_STATE(2831)] = 84127, + [SMALL_STATE(2832)] = 84147, + [SMALL_STATE(2833)] = 84167, + [SMALL_STATE(2834)] = 84187, + [SMALL_STATE(2835)] = 84203, + [SMALL_STATE(2836)] = 84219, + [SMALL_STATE(2837)] = 84239, + [SMALL_STATE(2838)] = 84255, + [SMALL_STATE(2839)] = 84271, + [SMALL_STATE(2840)] = 84287, + [SMALL_STATE(2841)] = 84303, + [SMALL_STATE(2842)] = 84323, + [SMALL_STATE(2843)] = 84339, + [SMALL_STATE(2844)] = 84359, + [SMALL_STATE(2845)] = 84375, + [SMALL_STATE(2846)] = 84391, + [SMALL_STATE(2847)] = 84407, + [SMALL_STATE(2848)] = 84427, + [SMALL_STATE(2849)] = 84447, + [SMALL_STATE(2850)] = 84467, + [SMALL_STATE(2851)] = 84487, + [SMALL_STATE(2852)] = 84507, + [SMALL_STATE(2853)] = 84525, + [SMALL_STATE(2854)] = 84543, + [SMALL_STATE(2855)] = 84563, + [SMALL_STATE(2856)] = 84583, + [SMALL_STATE(2857)] = 84603, + [SMALL_STATE(2858)] = 84623, + [SMALL_STATE(2859)] = 84639, + [SMALL_STATE(2860)] = 84659, + [SMALL_STATE(2861)] = 84675, + [SMALL_STATE(2862)] = 84695, + [SMALL_STATE(2863)] = 84715, + [SMALL_STATE(2864)] = 84735, + [SMALL_STATE(2865)] = 84755, + [SMALL_STATE(2866)] = 84771, + [SMALL_STATE(2867)] = 84789, + [SMALL_STATE(2868)] = 84805, + [SMALL_STATE(2869)] = 84821, + [SMALL_STATE(2870)] = 84841, + [SMALL_STATE(2871)] = 84861, + [SMALL_STATE(2872)] = 84881, + [SMALL_STATE(2873)] = 84901, + [SMALL_STATE(2874)] = 84919, + [SMALL_STATE(2875)] = 84937, + [SMALL_STATE(2876)] = 84957, + [SMALL_STATE(2877)] = 84977, + [SMALL_STATE(2878)] = 84997, + [SMALL_STATE(2879)] = 85017, + [SMALL_STATE(2880)] = 85037, + [SMALL_STATE(2881)] = 85057, + [SMALL_STATE(2882)] = 85077, + [SMALL_STATE(2883)] = 85093, + [SMALL_STATE(2884)] = 85109, + [SMALL_STATE(2885)] = 85129, + [SMALL_STATE(2886)] = 85149, + [SMALL_STATE(2887)] = 85169, + [SMALL_STATE(2888)] = 85189, + [SMALL_STATE(2889)] = 85207, + [SMALL_STATE(2890)] = 85227, + [SMALL_STATE(2891)] = 85247, + [SMALL_STATE(2892)] = 85265, + [SMALL_STATE(2893)] = 85283, + [SMALL_STATE(2894)] = 85303, + [SMALL_STATE(2895)] = 85323, + [SMALL_STATE(2896)] = 85343, + [SMALL_STATE(2897)] = 85363, + [SMALL_STATE(2898)] = 85383, + [SMALL_STATE(2899)] = 85403, + [SMALL_STATE(2900)] = 85423, + [SMALL_STATE(2901)] = 85443, + [SMALL_STATE(2902)] = 85463, + [SMALL_STATE(2903)] = 85483, + [SMALL_STATE(2904)] = 85503, + [SMALL_STATE(2905)] = 85523, + [SMALL_STATE(2906)] = 85543, + [SMALL_STATE(2907)] = 85559, + [SMALL_STATE(2908)] = 85575, + [SMALL_STATE(2909)] = 85595, + [SMALL_STATE(2910)] = 85615, + [SMALL_STATE(2911)] = 85631, + [SMALL_STATE(2912)] = 85651, + [SMALL_STATE(2913)] = 85671, + [SMALL_STATE(2914)] = 85691, + [SMALL_STATE(2915)] = 85709, + [SMALL_STATE(2916)] = 85729, + [SMALL_STATE(2917)] = 85749, + [SMALL_STATE(2918)] = 85769, + [SMALL_STATE(2919)] = 85787, + [SMALL_STATE(2920)] = 85807, + [SMALL_STATE(2921)] = 85827, + [SMALL_STATE(2922)] = 85845, + [SMALL_STATE(2923)] = 85865, + [SMALL_STATE(2924)] = 85885, + [SMALL_STATE(2925)] = 85905, + [SMALL_STATE(2926)] = 85923, + [SMALL_STATE(2927)] = 85943, + [SMALL_STATE(2928)] = 85963, + [SMALL_STATE(2929)] = 85979, + [SMALL_STATE(2930)] = 85999, + [SMALL_STATE(2931)] = 86019, + [SMALL_STATE(2932)] = 86039, + [SMALL_STATE(2933)] = 86055, + [SMALL_STATE(2934)] = 86071, + [SMALL_STATE(2935)] = 86091, + [SMALL_STATE(2936)] = 86109, + [SMALL_STATE(2937)] = 86129, + [SMALL_STATE(2938)] = 86149, + [SMALL_STATE(2939)] = 86169, + [SMALL_STATE(2940)] = 86187, + [SMALL_STATE(2941)] = 86207, + [SMALL_STATE(2942)] = 86227, + [SMALL_STATE(2943)] = 86243, + [SMALL_STATE(2944)] = 86263, + [SMALL_STATE(2945)] = 86283, + [SMALL_STATE(2946)] = 86301, + [SMALL_STATE(2947)] = 86319, + [SMALL_STATE(2948)] = 86339, + [SMALL_STATE(2949)] = 86359, + [SMALL_STATE(2950)] = 86377, + [SMALL_STATE(2951)] = 86393, + [SMALL_STATE(2952)] = 86409, + [SMALL_STATE(2953)] = 86425, + [SMALL_STATE(2954)] = 86441, + [SMALL_STATE(2955)] = 86457, + [SMALL_STATE(2956)] = 86473, + [SMALL_STATE(2957)] = 86489, + [SMALL_STATE(2958)] = 86505, + [SMALL_STATE(2959)] = 86523, + [SMALL_STATE(2960)] = 86539, + [SMALL_STATE(2961)] = 86559, + [SMALL_STATE(2962)] = 86579, + [SMALL_STATE(2963)] = 86595, + [SMALL_STATE(2964)] = 86615, + [SMALL_STATE(2965)] = 86635, + [SMALL_STATE(2966)] = 86655, + [SMALL_STATE(2967)] = 86675, + [SMALL_STATE(2968)] = 86695, + [SMALL_STATE(2969)] = 86715, + [SMALL_STATE(2970)] = 86735, + [SMALL_STATE(2971)] = 86755, + [SMALL_STATE(2972)] = 86775, + [SMALL_STATE(2973)] = 86795, + [SMALL_STATE(2974)] = 86813, + [SMALL_STATE(2975)] = 86833, + [SMALL_STATE(2976)] = 86853, + [SMALL_STATE(2977)] = 86873, + [SMALL_STATE(2978)] = 86893, + [SMALL_STATE(2979)] = 86911, + [SMALL_STATE(2980)] = 86931, + [SMALL_STATE(2981)] = 86947, + [SMALL_STATE(2982)] = 86965, + [SMALL_STATE(2983)] = 86983, + [SMALL_STATE(2984)] = 87003, + [SMALL_STATE(2985)] = 87021, + [SMALL_STATE(2986)] = 87039, + [SMALL_STATE(2987)] = 87055, + [SMALL_STATE(2988)] = 87075, + [SMALL_STATE(2989)] = 87091, + [SMALL_STATE(2990)] = 87109, + [SMALL_STATE(2991)] = 87125, + [SMALL_STATE(2992)] = 87145, + [SMALL_STATE(2993)] = 87161, + [SMALL_STATE(2994)] = 87179, + [SMALL_STATE(2995)] = 87197, + [SMALL_STATE(2996)] = 87213, + [SMALL_STATE(2997)] = 87231, + [SMALL_STATE(2998)] = 87251, + [SMALL_STATE(2999)] = 87271, + [SMALL_STATE(3000)] = 87291, + [SMALL_STATE(3001)] = 87311, + [SMALL_STATE(3002)] = 87329, + [SMALL_STATE(3003)] = 87349, + [SMALL_STATE(3004)] = 87367, + [SMALL_STATE(3005)] = 87387, + [SMALL_STATE(3006)] = 87407, + [SMALL_STATE(3007)] = 87427, + [SMALL_STATE(3008)] = 87447, + [SMALL_STATE(3009)] = 87467, + [SMALL_STATE(3010)] = 87483, + [SMALL_STATE(3011)] = 87501, + [SMALL_STATE(3012)] = 87519, + [SMALL_STATE(3013)] = 87535, + [SMALL_STATE(3014)] = 87551, + [SMALL_STATE(3015)] = 87571, + [SMALL_STATE(3016)] = 87587, + [SMALL_STATE(3017)] = 87603, + [SMALL_STATE(3018)] = 87619, + [SMALL_STATE(3019)] = 87635, + [SMALL_STATE(3020)] = 87651, + [SMALL_STATE(3021)] = 87671, + [SMALL_STATE(3022)] = 87689, + [SMALL_STATE(3023)] = 87709, + [SMALL_STATE(3024)] = 87729, + [SMALL_STATE(3025)] = 87749, + [SMALL_STATE(3026)] = 87769, + [SMALL_STATE(3027)] = 87787, + [SMALL_STATE(3028)] = 87803, + [SMALL_STATE(3029)] = 87823, + [SMALL_STATE(3030)] = 87841, + [SMALL_STATE(3031)] = 87861, + [SMALL_STATE(3032)] = 87879, + [SMALL_STATE(3033)] = 87899, + [SMALL_STATE(3034)] = 87915, + [SMALL_STATE(3035)] = 87933, + [SMALL_STATE(3036)] = 87953, + [SMALL_STATE(3037)] = 87973, + [SMALL_STATE(3038)] = 87993, + [SMALL_STATE(3039)] = 88009, + [SMALL_STATE(3040)] = 88029, + [SMALL_STATE(3041)] = 88049, + [SMALL_STATE(3042)] = 88069, + [SMALL_STATE(3043)] = 88089, + [SMALL_STATE(3044)] = 88107, + [SMALL_STATE(3045)] = 88127, + [SMALL_STATE(3046)] = 88147, + [SMALL_STATE(3047)] = 88167, + [SMALL_STATE(3048)] = 88187, + [SMALL_STATE(3049)] = 88207, + [SMALL_STATE(3050)] = 88227, + [SMALL_STATE(3051)] = 88247, + [SMALL_STATE(3052)] = 88267, + [SMALL_STATE(3053)] = 88287, + [SMALL_STATE(3054)] = 88305, + [SMALL_STATE(3055)] = 88325, + [SMALL_STATE(3056)] = 88342, + [SMALL_STATE(3057)] = 88359, + [SMALL_STATE(3058)] = 88376, + [SMALL_STATE(3059)] = 88393, + [SMALL_STATE(3060)] = 88410, + [SMALL_STATE(3061)] = 88427, + [SMALL_STATE(3062)] = 88444, + [SMALL_STATE(3063)] = 88461, + [SMALL_STATE(3064)] = 88478, + [SMALL_STATE(3065)] = 88493, + [SMALL_STATE(3066)] = 88510, + [SMALL_STATE(3067)] = 88527, + [SMALL_STATE(3068)] = 88544, + [SMALL_STATE(3069)] = 88561, + [SMALL_STATE(3070)] = 88576, + [SMALL_STATE(3071)] = 88593, + [SMALL_STATE(3072)] = 88610, + [SMALL_STATE(3073)] = 88625, + [SMALL_STATE(3074)] = 88642, + [SMALL_STATE(3075)] = 88659, + [SMALL_STATE(3076)] = 88676, + [SMALL_STATE(3077)] = 88693, + [SMALL_STATE(3078)] = 88708, + [SMALL_STATE(3079)] = 88725, + [SMALL_STATE(3080)] = 88742, + [SMALL_STATE(3081)] = 88757, + [SMALL_STATE(3082)] = 88774, + [SMALL_STATE(3083)] = 88791, + [SMALL_STATE(3084)] = 88806, + [SMALL_STATE(3085)] = 88823, + [SMALL_STATE(3086)] = 88840, + [SMALL_STATE(3087)] = 88857, + [SMALL_STATE(3088)] = 88874, + [SMALL_STATE(3089)] = 88891, + [SMALL_STATE(3090)] = 88908, + [SMALL_STATE(3091)] = 88923, + [SMALL_STATE(3092)] = 88940, + [SMALL_STATE(3093)] = 88957, + [SMALL_STATE(3094)] = 88974, + [SMALL_STATE(3095)] = 88991, + [SMALL_STATE(3096)] = 89008, + [SMALL_STATE(3097)] = 89025, + [SMALL_STATE(3098)] = 89042, + [SMALL_STATE(3099)] = 89057, + [SMALL_STATE(3100)] = 89072, + [SMALL_STATE(3101)] = 89089, + [SMALL_STATE(3102)] = 89104, + [SMALL_STATE(3103)] = 89121, + [SMALL_STATE(3104)] = 89138, + [SMALL_STATE(3105)] = 89153, + [SMALL_STATE(3106)] = 89170, + [SMALL_STATE(3107)] = 89187, + [SMALL_STATE(3108)] = 89204, + [SMALL_STATE(3109)] = 89221, + [SMALL_STATE(3110)] = 89238, + [SMALL_STATE(3111)] = 89255, + [SMALL_STATE(3112)] = 89270, + [SMALL_STATE(3113)] = 89287, + [SMALL_STATE(3114)] = 89302, + [SMALL_STATE(3115)] = 89319, + [SMALL_STATE(3116)] = 89336, + [SMALL_STATE(3117)] = 89353, + [SMALL_STATE(3118)] = 89370, + [SMALL_STATE(3119)] = 89387, + [SMALL_STATE(3120)] = 89404, + [SMALL_STATE(3121)] = 89421, + [SMALL_STATE(3122)] = 89438, + [SMALL_STATE(3123)] = 89455, + [SMALL_STATE(3124)] = 89470, + [SMALL_STATE(3125)] = 89487, + [SMALL_STATE(3126)] = 89502, + [SMALL_STATE(3127)] = 89519, + [SMALL_STATE(3128)] = 89536, + [SMALL_STATE(3129)] = 89553, + [SMALL_STATE(3130)] = 89568, + [SMALL_STATE(3131)] = 89585, + [SMALL_STATE(3132)] = 89602, + [SMALL_STATE(3133)] = 89617, + [SMALL_STATE(3134)] = 89634, + [SMALL_STATE(3135)] = 89651, + [SMALL_STATE(3136)] = 89668, + [SMALL_STATE(3137)] = 89683, + [SMALL_STATE(3138)] = 89700, + [SMALL_STATE(3139)] = 89717, + [SMALL_STATE(3140)] = 89734, + [SMALL_STATE(3141)] = 89751, + [SMALL_STATE(3142)] = 89768, + [SMALL_STATE(3143)] = 89785, + [SMALL_STATE(3144)] = 89802, + [SMALL_STATE(3145)] = 89819, + [SMALL_STATE(3146)] = 89836, + [SMALL_STATE(3147)] = 89853, + [SMALL_STATE(3148)] = 89870, + [SMALL_STATE(3149)] = 89887, + [SMALL_STATE(3150)] = 89904, + [SMALL_STATE(3151)] = 89921, + [SMALL_STATE(3152)] = 89938, + [SMALL_STATE(3153)] = 89955, + [SMALL_STATE(3154)] = 89972, + [SMALL_STATE(3155)] = 89989, + [SMALL_STATE(3156)] = 90006, + [SMALL_STATE(3157)] = 90023, + [SMALL_STATE(3158)] = 90040, + [SMALL_STATE(3159)] = 90057, + [SMALL_STATE(3160)] = 90074, + [SMALL_STATE(3161)] = 90091, + [SMALL_STATE(3162)] = 90108, + [SMALL_STATE(3163)] = 90123, + [SMALL_STATE(3164)] = 90140, + [SMALL_STATE(3165)] = 90155, + [SMALL_STATE(3166)] = 90172, + [SMALL_STATE(3167)] = 90189, + [SMALL_STATE(3168)] = 90206, + [SMALL_STATE(3169)] = 90223, + [SMALL_STATE(3170)] = 90240, + [SMALL_STATE(3171)] = 90257, + [SMALL_STATE(3172)] = 90274, + [SMALL_STATE(3173)] = 90291, + [SMALL_STATE(3174)] = 90308, + [SMALL_STATE(3175)] = 90325, + [SMALL_STATE(3176)] = 90342, + [SMALL_STATE(3177)] = 90357, + [SMALL_STATE(3178)] = 90374, + [SMALL_STATE(3179)] = 90391, + [SMALL_STATE(3180)] = 90408, + [SMALL_STATE(3181)] = 90425, + [SMALL_STATE(3182)] = 90440, + [SMALL_STATE(3183)] = 90457, + [SMALL_STATE(3184)] = 90474, + [SMALL_STATE(3185)] = 90489, + [SMALL_STATE(3186)] = 90506, + [SMALL_STATE(3187)] = 90523, + [SMALL_STATE(3188)] = 90540, + [SMALL_STATE(3189)] = 90557, + [SMALL_STATE(3190)] = 90574, + [SMALL_STATE(3191)] = 90591, + [SMALL_STATE(3192)] = 90606, + [SMALL_STATE(3193)] = 90623, + [SMALL_STATE(3194)] = 90640, + [SMALL_STATE(3195)] = 90657, + [SMALL_STATE(3196)] = 90674, + [SMALL_STATE(3197)] = 90691, + [SMALL_STATE(3198)] = 90708, + [SMALL_STATE(3199)] = 90725, + [SMALL_STATE(3200)] = 90742, + [SMALL_STATE(3201)] = 90759, + [SMALL_STATE(3202)] = 90776, + [SMALL_STATE(3203)] = 90793, + [SMALL_STATE(3204)] = 90810, + [SMALL_STATE(3205)] = 90827, + [SMALL_STATE(3206)] = 90844, + [SMALL_STATE(3207)] = 90861, + [SMALL_STATE(3208)] = 90878, + [SMALL_STATE(3209)] = 90895, + [SMALL_STATE(3210)] = 90910, + [SMALL_STATE(3211)] = 90927, + [SMALL_STATE(3212)] = 90944, + [SMALL_STATE(3213)] = 90961, + [SMALL_STATE(3214)] = 90976, + [SMALL_STATE(3215)] = 90993, + [SMALL_STATE(3216)] = 91010, + [SMALL_STATE(3217)] = 91027, + [SMALL_STATE(3218)] = 91042, + [SMALL_STATE(3219)] = 91059, + [SMALL_STATE(3220)] = 91076, + [SMALL_STATE(3221)] = 91091, + [SMALL_STATE(3222)] = 91108, + [SMALL_STATE(3223)] = 91123, + [SMALL_STATE(3224)] = 91140, + [SMALL_STATE(3225)] = 91157, + [SMALL_STATE(3226)] = 91174, + [SMALL_STATE(3227)] = 91189, + [SMALL_STATE(3228)] = 91206, + [SMALL_STATE(3229)] = 91223, + [SMALL_STATE(3230)] = 91240, + [SMALL_STATE(3231)] = 91255, + [SMALL_STATE(3232)] = 91272, + [SMALL_STATE(3233)] = 91289, + [SMALL_STATE(3234)] = 91304, + [SMALL_STATE(3235)] = 91321, + [SMALL_STATE(3236)] = 91336, + [SMALL_STATE(3237)] = 91353, + [SMALL_STATE(3238)] = 91370, + [SMALL_STATE(3239)] = 91387, + [SMALL_STATE(3240)] = 91402, + [SMALL_STATE(3241)] = 91419, + [SMALL_STATE(3242)] = 91436, + [SMALL_STATE(3243)] = 91453, + [SMALL_STATE(3244)] = 91470, + [SMALL_STATE(3245)] = 91487, + [SMALL_STATE(3246)] = 91502, + [SMALL_STATE(3247)] = 91519, + [SMALL_STATE(3248)] = 91534, + [SMALL_STATE(3249)] = 91551, + [SMALL_STATE(3250)] = 91568, + [SMALL_STATE(3251)] = 91585, + [SMALL_STATE(3252)] = 91600, + [SMALL_STATE(3253)] = 91617, + [SMALL_STATE(3254)] = 91634, + [SMALL_STATE(3255)] = 91649, + [SMALL_STATE(3256)] = 91664, + [SMALL_STATE(3257)] = 91681, + [SMALL_STATE(3258)] = 91696, + [SMALL_STATE(3259)] = 91713, + [SMALL_STATE(3260)] = 91730, + [SMALL_STATE(3261)] = 91747, + [SMALL_STATE(3262)] = 91764, + [SMALL_STATE(3263)] = 91781, + [SMALL_STATE(3264)] = 91798, + [SMALL_STATE(3265)] = 91815, + [SMALL_STATE(3266)] = 91832, + [SMALL_STATE(3267)] = 91849, + [SMALL_STATE(3268)] = 91866, + [SMALL_STATE(3269)] = 91883, + [SMALL_STATE(3270)] = 91898, + [SMALL_STATE(3271)] = 91915, + [SMALL_STATE(3272)] = 91932, + [SMALL_STATE(3273)] = 91949, + [SMALL_STATE(3274)] = 91966, + [SMALL_STATE(3275)] = 91983, + [SMALL_STATE(3276)] = 92000, + [SMALL_STATE(3277)] = 92017, + [SMALL_STATE(3278)] = 92034, + [SMALL_STATE(3279)] = 92051, + [SMALL_STATE(3280)] = 92068, + [SMALL_STATE(3281)] = 92085, + [SMALL_STATE(3282)] = 92102, + [SMALL_STATE(3283)] = 92119, + [SMALL_STATE(3284)] = 92136, + [SMALL_STATE(3285)] = 92153, + [SMALL_STATE(3286)] = 92170, + [SMALL_STATE(3287)] = 92185, + [SMALL_STATE(3288)] = 92200, + [SMALL_STATE(3289)] = 92217, + [SMALL_STATE(3290)] = 92234, + [SMALL_STATE(3291)] = 92249, + [SMALL_STATE(3292)] = 92266, + [SMALL_STATE(3293)] = 92281, + [SMALL_STATE(3294)] = 92298, + [SMALL_STATE(3295)] = 92315, + [SMALL_STATE(3296)] = 92330, + [SMALL_STATE(3297)] = 92347, + [SMALL_STATE(3298)] = 92362, + [SMALL_STATE(3299)] = 92379, + [SMALL_STATE(3300)] = 92396, + [SMALL_STATE(3301)] = 92413, + [SMALL_STATE(3302)] = 92430, + [SMALL_STATE(3303)] = 92447, + [SMALL_STATE(3304)] = 92462, + [SMALL_STATE(3305)] = 92479, + [SMALL_STATE(3306)] = 92496, + [SMALL_STATE(3307)] = 92513, + [SMALL_STATE(3308)] = 92530, + [SMALL_STATE(3309)] = 92545, + [SMALL_STATE(3310)] = 92562, + [SMALL_STATE(3311)] = 92579, + [SMALL_STATE(3312)] = 92596, + [SMALL_STATE(3313)] = 92613, + [SMALL_STATE(3314)] = 92628, + [SMALL_STATE(3315)] = 92645, + [SMALL_STATE(3316)] = 92662, + [SMALL_STATE(3317)] = 92679, + [SMALL_STATE(3318)] = 92696, + [SMALL_STATE(3319)] = 92713, + [SMALL_STATE(3320)] = 92728, + [SMALL_STATE(3321)] = 92745, + [SMALL_STATE(3322)] = 92762, + [SMALL_STATE(3323)] = 92779, + [SMALL_STATE(3324)] = 92796, + [SMALL_STATE(3325)] = 92813, + [SMALL_STATE(3326)] = 92830, + [SMALL_STATE(3327)] = 92847, + [SMALL_STATE(3328)] = 92864, + [SMALL_STATE(3329)] = 92879, + [SMALL_STATE(3330)] = 92896, + [SMALL_STATE(3331)] = 92913, + [SMALL_STATE(3332)] = 92930, + [SMALL_STATE(3333)] = 92947, + [SMALL_STATE(3334)] = 92964, + [SMALL_STATE(3335)] = 92979, + [SMALL_STATE(3336)] = 92996, + [SMALL_STATE(3337)] = 93011, + [SMALL_STATE(3338)] = 93028, + [SMALL_STATE(3339)] = 93042, + [SMALL_STATE(3340)] = 93056, + [SMALL_STATE(3341)] = 93070, + [SMALL_STATE(3342)] = 93084, + [SMALL_STATE(3343)] = 93098, + [SMALL_STATE(3344)] = 93112, + [SMALL_STATE(3345)] = 93126, + [SMALL_STATE(3346)] = 93140, + [SMALL_STATE(3347)] = 93154, + [SMALL_STATE(3348)] = 93168, + [SMALL_STATE(3349)] = 93182, + [SMALL_STATE(3350)] = 93196, + [SMALL_STATE(3351)] = 93210, + [SMALL_STATE(3352)] = 93224, + [SMALL_STATE(3353)] = 93238, + [SMALL_STATE(3354)] = 93252, + [SMALL_STATE(3355)] = 93266, + [SMALL_STATE(3356)] = 93280, + [SMALL_STATE(3357)] = 93294, + [SMALL_STATE(3358)] = 93308, + [SMALL_STATE(3359)] = 93322, + [SMALL_STATE(3360)] = 93336, + [SMALL_STATE(3361)] = 93350, + [SMALL_STATE(3362)] = 93364, + [SMALL_STATE(3363)] = 93378, + [SMALL_STATE(3364)] = 93392, + [SMALL_STATE(3365)] = 93406, + [SMALL_STATE(3366)] = 93420, + [SMALL_STATE(3367)] = 93434, + [SMALL_STATE(3368)] = 93448, + [SMALL_STATE(3369)] = 93462, + [SMALL_STATE(3370)] = 93476, + [SMALL_STATE(3371)] = 93490, + [SMALL_STATE(3372)] = 93504, + [SMALL_STATE(3373)] = 93518, + [SMALL_STATE(3374)] = 93532, + [SMALL_STATE(3375)] = 93546, + [SMALL_STATE(3376)] = 93560, + [SMALL_STATE(3377)] = 93574, + [SMALL_STATE(3378)] = 93588, + [SMALL_STATE(3379)] = 93602, + [SMALL_STATE(3380)] = 93616, + [SMALL_STATE(3381)] = 93630, + [SMALL_STATE(3382)] = 93644, + [SMALL_STATE(3383)] = 93658, + [SMALL_STATE(3384)] = 93672, + [SMALL_STATE(3385)] = 93686, + [SMALL_STATE(3386)] = 93700, + [SMALL_STATE(3387)] = 93714, + [SMALL_STATE(3388)] = 93728, + [SMALL_STATE(3389)] = 93742, + [SMALL_STATE(3390)] = 93756, + [SMALL_STATE(3391)] = 93770, + [SMALL_STATE(3392)] = 93784, + [SMALL_STATE(3393)] = 93798, + [SMALL_STATE(3394)] = 93812, + [SMALL_STATE(3395)] = 93826, + [SMALL_STATE(3396)] = 93840, + [SMALL_STATE(3397)] = 93854, + [SMALL_STATE(3398)] = 93868, + [SMALL_STATE(3399)] = 93882, + [SMALL_STATE(3400)] = 93896, + [SMALL_STATE(3401)] = 93910, + [SMALL_STATE(3402)] = 93924, + [SMALL_STATE(3403)] = 93938, + [SMALL_STATE(3404)] = 93952, + [SMALL_STATE(3405)] = 93966, + [SMALL_STATE(3406)] = 93980, + [SMALL_STATE(3407)] = 93994, + [SMALL_STATE(3408)] = 94008, + [SMALL_STATE(3409)] = 94022, + [SMALL_STATE(3410)] = 94036, + [SMALL_STATE(3411)] = 94050, + [SMALL_STATE(3412)] = 94064, + [SMALL_STATE(3413)] = 94078, + [SMALL_STATE(3414)] = 94092, + [SMALL_STATE(3415)] = 94106, + [SMALL_STATE(3416)] = 94120, + [SMALL_STATE(3417)] = 94134, + [SMALL_STATE(3418)] = 94148, + [SMALL_STATE(3419)] = 94162, + [SMALL_STATE(3420)] = 94176, + [SMALL_STATE(3421)] = 94190, + [SMALL_STATE(3422)] = 94204, + [SMALL_STATE(3423)] = 94218, + [SMALL_STATE(3424)] = 94232, + [SMALL_STATE(3425)] = 94246, + [SMALL_STATE(3426)] = 94260, + [SMALL_STATE(3427)] = 94274, + [SMALL_STATE(3428)] = 94288, + [SMALL_STATE(3429)] = 94302, + [SMALL_STATE(3430)] = 94316, + [SMALL_STATE(3431)] = 94330, + [SMALL_STATE(3432)] = 94344, + [SMALL_STATE(3433)] = 94358, + [SMALL_STATE(3434)] = 94372, + [SMALL_STATE(3435)] = 94386, + [SMALL_STATE(3436)] = 94400, + [SMALL_STATE(3437)] = 94414, + [SMALL_STATE(3438)] = 94428, + [SMALL_STATE(3439)] = 94442, + [SMALL_STATE(3440)] = 94456, + [SMALL_STATE(3441)] = 94470, + [SMALL_STATE(3442)] = 94484, + [SMALL_STATE(3443)] = 94498, + [SMALL_STATE(3444)] = 94512, + [SMALL_STATE(3445)] = 94526, + [SMALL_STATE(3446)] = 94540, + [SMALL_STATE(3447)] = 94554, + [SMALL_STATE(3448)] = 94568, + [SMALL_STATE(3449)] = 94582, + [SMALL_STATE(3450)] = 94596, + [SMALL_STATE(3451)] = 94610, + [SMALL_STATE(3452)] = 94624, + [SMALL_STATE(3453)] = 94638, + [SMALL_STATE(3454)] = 94652, + [SMALL_STATE(3455)] = 94666, + [SMALL_STATE(3456)] = 94680, + [SMALL_STATE(3457)] = 94694, + [SMALL_STATE(3458)] = 94708, + [SMALL_STATE(3459)] = 94722, + [SMALL_STATE(3460)] = 94736, + [SMALL_STATE(3461)] = 94750, + [SMALL_STATE(3462)] = 94764, + [SMALL_STATE(3463)] = 94778, + [SMALL_STATE(3464)] = 94792, + [SMALL_STATE(3465)] = 94806, + [SMALL_STATE(3466)] = 94820, + [SMALL_STATE(3467)] = 94834, + [SMALL_STATE(3468)] = 94848, + [SMALL_STATE(3469)] = 94862, + [SMALL_STATE(3470)] = 94876, + [SMALL_STATE(3471)] = 94890, + [SMALL_STATE(3472)] = 94904, + [SMALL_STATE(3473)] = 94918, + [SMALL_STATE(3474)] = 94932, + [SMALL_STATE(3475)] = 94946, + [SMALL_STATE(3476)] = 94960, + [SMALL_STATE(3477)] = 94974, + [SMALL_STATE(3478)] = 94988, + [SMALL_STATE(3479)] = 95002, + [SMALL_STATE(3480)] = 95016, + [SMALL_STATE(3481)] = 95030, + [SMALL_STATE(3482)] = 95044, + [SMALL_STATE(3483)] = 95058, + [SMALL_STATE(3484)] = 95072, + [SMALL_STATE(3485)] = 95086, + [SMALL_STATE(3486)] = 95100, + [SMALL_STATE(3487)] = 95114, + [SMALL_STATE(3488)] = 95128, + [SMALL_STATE(3489)] = 95142, + [SMALL_STATE(3490)] = 95156, + [SMALL_STATE(3491)] = 95170, + [SMALL_STATE(3492)] = 95184, + [SMALL_STATE(3493)] = 95198, + [SMALL_STATE(3494)] = 95212, + [SMALL_STATE(3495)] = 95226, + [SMALL_STATE(3496)] = 95240, + [SMALL_STATE(3497)] = 95254, + [SMALL_STATE(3498)] = 95268, + [SMALL_STATE(3499)] = 95282, + [SMALL_STATE(3500)] = 95296, + [SMALL_STATE(3501)] = 95310, + [SMALL_STATE(3502)] = 95324, + [SMALL_STATE(3503)] = 95338, + [SMALL_STATE(3504)] = 95352, + [SMALL_STATE(3505)] = 95366, + [SMALL_STATE(3506)] = 95380, + [SMALL_STATE(3507)] = 95394, + [SMALL_STATE(3508)] = 95408, + [SMALL_STATE(3509)] = 95422, + [SMALL_STATE(3510)] = 95436, + [SMALL_STATE(3511)] = 95450, + [SMALL_STATE(3512)] = 95464, + [SMALL_STATE(3513)] = 95478, + [SMALL_STATE(3514)] = 95492, + [SMALL_STATE(3515)] = 95506, + [SMALL_STATE(3516)] = 95520, + [SMALL_STATE(3517)] = 95534, + [SMALL_STATE(3518)] = 95548, + [SMALL_STATE(3519)] = 95562, + [SMALL_STATE(3520)] = 95576, + [SMALL_STATE(3521)] = 95590, + [SMALL_STATE(3522)] = 95604, + [SMALL_STATE(3523)] = 95618, + [SMALL_STATE(3524)] = 95632, + [SMALL_STATE(3525)] = 95646, + [SMALL_STATE(3526)] = 95660, + [SMALL_STATE(3527)] = 95674, + [SMALL_STATE(3528)] = 95688, + [SMALL_STATE(3529)] = 95702, + [SMALL_STATE(3530)] = 95716, + [SMALL_STATE(3531)] = 95730, + [SMALL_STATE(3532)] = 95744, + [SMALL_STATE(3533)] = 95758, + [SMALL_STATE(3534)] = 95772, + [SMALL_STATE(3535)] = 95786, + [SMALL_STATE(3536)] = 95800, + [SMALL_STATE(3537)] = 95814, + [SMALL_STATE(3538)] = 95828, + [SMALL_STATE(3539)] = 95842, + [SMALL_STATE(3540)] = 95856, + [SMALL_STATE(3541)] = 95870, + [SMALL_STATE(3542)] = 95884, + [SMALL_STATE(3543)] = 95898, + [SMALL_STATE(3544)] = 95912, + [SMALL_STATE(3545)] = 95926, + [SMALL_STATE(3546)] = 95940, + [SMALL_STATE(3547)] = 95954, + [SMALL_STATE(3548)] = 95968, + [SMALL_STATE(3549)] = 95982, + [SMALL_STATE(3550)] = 95996, + [SMALL_STATE(3551)] = 96010, + [SMALL_STATE(3552)] = 96024, + [SMALL_STATE(3553)] = 96038, + [SMALL_STATE(3554)] = 96052, + [SMALL_STATE(3555)] = 96066, + [SMALL_STATE(3556)] = 96080, + [SMALL_STATE(3557)] = 96094, + [SMALL_STATE(3558)] = 96108, + [SMALL_STATE(3559)] = 96122, + [SMALL_STATE(3560)] = 96136, + [SMALL_STATE(3561)] = 96150, + [SMALL_STATE(3562)] = 96164, + [SMALL_STATE(3563)] = 96178, + [SMALL_STATE(3564)] = 96192, + [SMALL_STATE(3565)] = 96206, + [SMALL_STATE(3566)] = 96220, + [SMALL_STATE(3567)] = 96234, + [SMALL_STATE(3568)] = 96248, + [SMALL_STATE(3569)] = 96262, + [SMALL_STATE(3570)] = 96276, + [SMALL_STATE(3571)] = 96290, + [SMALL_STATE(3572)] = 96304, + [SMALL_STATE(3573)] = 96318, + [SMALL_STATE(3574)] = 96332, + [SMALL_STATE(3575)] = 96346, + [SMALL_STATE(3576)] = 96360, + [SMALL_STATE(3577)] = 96374, + [SMALL_STATE(3578)] = 96388, + [SMALL_STATE(3579)] = 96402, + [SMALL_STATE(3580)] = 96416, + [SMALL_STATE(3581)] = 96430, + [SMALL_STATE(3582)] = 96444, + [SMALL_STATE(3583)] = 96458, + [SMALL_STATE(3584)] = 96472, + [SMALL_STATE(3585)] = 96486, + [SMALL_STATE(3586)] = 96500, + [SMALL_STATE(3587)] = 96514, + [SMALL_STATE(3588)] = 96528, + [SMALL_STATE(3589)] = 96542, + [SMALL_STATE(3590)] = 96556, + [SMALL_STATE(3591)] = 96570, + [SMALL_STATE(3592)] = 96584, + [SMALL_STATE(3593)] = 96598, + [SMALL_STATE(3594)] = 96612, + [SMALL_STATE(3595)] = 96626, + [SMALL_STATE(3596)] = 96640, + [SMALL_STATE(3597)] = 96654, + [SMALL_STATE(3598)] = 96668, + [SMALL_STATE(3599)] = 96682, + [SMALL_STATE(3600)] = 96696, + [SMALL_STATE(3601)] = 96710, + [SMALL_STATE(3602)] = 96724, + [SMALL_STATE(3603)] = 96738, + [SMALL_STATE(3604)] = 96752, + [SMALL_STATE(3605)] = 96766, + [SMALL_STATE(3606)] = 96780, + [SMALL_STATE(3607)] = 96794, + [SMALL_STATE(3608)] = 96808, + [SMALL_STATE(3609)] = 96822, + [SMALL_STATE(3610)] = 96836, + [SMALL_STATE(3611)] = 96850, + [SMALL_STATE(3612)] = 96864, + [SMALL_STATE(3613)] = 96878, + [SMALL_STATE(3614)] = 96892, + [SMALL_STATE(3615)] = 96906, + [SMALL_STATE(3616)] = 96920, + [SMALL_STATE(3617)] = 96934, + [SMALL_STATE(3618)] = 96948, + [SMALL_STATE(3619)] = 96962, + [SMALL_STATE(3620)] = 96976, + [SMALL_STATE(3621)] = 96990, + [SMALL_STATE(3622)] = 97004, + [SMALL_STATE(3623)] = 97018, + [SMALL_STATE(3624)] = 97032, + [SMALL_STATE(3625)] = 97046, + [SMALL_STATE(3626)] = 97060, + [SMALL_STATE(3627)] = 97074, + [SMALL_STATE(3628)] = 97088, + [SMALL_STATE(3629)] = 97102, + [SMALL_STATE(3630)] = 97116, + [SMALL_STATE(3631)] = 97130, + [SMALL_STATE(3632)] = 97144, + [SMALL_STATE(3633)] = 97158, + [SMALL_STATE(3634)] = 97172, + [SMALL_STATE(3635)] = 97186, + [SMALL_STATE(3636)] = 97200, + [SMALL_STATE(3637)] = 97214, + [SMALL_STATE(3638)] = 97228, + [SMALL_STATE(3639)] = 97242, + [SMALL_STATE(3640)] = 97246, + [SMALL_STATE(3641)] = 97250, + [SMALL_STATE(3642)] = 97254, + [SMALL_STATE(3643)] = 97258, + [SMALL_STATE(3644)] = 97262, + [SMALL_STATE(3645)] = 97266, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), - [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), - [134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(652), - [137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2986), - [140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(138), - [146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4), - [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(273), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), - [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(795), - [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3213), - [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3110), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3453), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2057), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2056), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1048), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1047), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3417), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3275), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(824), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2398), - [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(182), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(851), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2546), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(285), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3558), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1952), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2373), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3509), - [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3512), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3624), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1520), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2037), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1886), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(161), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2051), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3221), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2695), - [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1439), - [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2744), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1301), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1482), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1988), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1482), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3468), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), + [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1516), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(664), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2888), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(139), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(11), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(279), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(789), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(844), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3143), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3221), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3514), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2058), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2086), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1069), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3597), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3213), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2489), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(866), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(828), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2530), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(276), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3394), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1959), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2377), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3409), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3506), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1526), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2041), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1893), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(158), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2055), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3100), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2579), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1415), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2532), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1397), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1482), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3399), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1990), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1482), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3373), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), - [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), - [385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), - [387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), - [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), + [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), + [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), + [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), + [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(74), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(82), [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), - [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(78), + [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(83), [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3445), - [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(162), - [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2645), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(163), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3594), + [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(163), + [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2618), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(145), [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3530), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3541), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(197), - [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(92), - [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), - [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(93), - [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(94), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3425), - [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(162), - [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2645), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(163), - [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(197), - [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3530), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(203), - [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(201), - [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(133), - [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), - [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(108), - [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(109), - [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(201), - [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(203), - [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2587), - [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(207), - [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3478), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(103), + [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(104), + [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2548), + [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3489), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(108), + [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(85), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3462), + [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(163), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2618), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(145), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3541), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1040), - [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(195), - [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(138), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1041), + [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(189), + [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(139), [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(10), - [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(273), - [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1478), - [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(246), - [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(795), - [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(841), - [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(39), - [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3213), - [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3421), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3453), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2495), - [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2706), - [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1048), - [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1470), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(828), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2421), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(188), - [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2569), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(331), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(42), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2991), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2723), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(189), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(40), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3221), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2572), - [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1439), - [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2744), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1301), + [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(12), + [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(279), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1491), + [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(225), + [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(789), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(844), + [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(40), + [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3143), + [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3448), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3514), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2424), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(41), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2659), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1069), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1223), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(832), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2413), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(187), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2689), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(334), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(39), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2808), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2526), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(188), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3100), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2692), + [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1415), + [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2532), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1397), [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1482), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3456), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3399), [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1482), - [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3468), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), - [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 197), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 197), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), - [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), - [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), - [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), - [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), - [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), - [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), - [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(201), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(201), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(138), - [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10), - [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(273), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(795), - [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [1108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3213), - [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3453), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2495), - [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2706), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1048), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1470), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(828), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2421), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2569), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(331), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2991), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2723), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(189), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3221), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2572), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1439), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2744), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1301), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1482), - [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), - [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1482), - [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3468), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 30), - [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 30), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), - [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), - [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3373), + [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), + [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), + [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), + [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 198), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 198), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1041), + [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(139), + [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(279), + [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), + [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(225), + [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(789), + [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(844), + [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3143), + [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3514), + [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2424), + [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2659), + [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1069), + [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1223), + [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(832), + [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2413), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2689), + [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(334), + [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2808), + [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2526), + [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3100), + [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2692), + [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1415), + [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2532), + [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1397), + [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1482), + [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3399), + [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1482), + [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3373), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 30), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 30), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), - [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), - [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 115), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 115), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 38), - [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 38), - [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 75), - [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 75), - [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), - [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 33), - [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 33), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 39), - [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 39), - [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), - [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 145), - [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 145), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 241), - [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 241), - [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 98), - [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 98), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 76), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 76), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 33), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 33), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 242), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 242), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 38), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 38), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 99), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 99), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), + [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 116), + [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 116), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 146), + [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 146), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 39), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 39), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 172), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 172), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 116), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 116), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 132), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 132), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 157), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 157), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 158), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 158), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 159), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 159), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 160), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 160), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 201), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 201), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 204), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 204), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 205), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 205), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 157), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 157), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 206), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 206), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 159), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 159), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 207), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 207), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 161), - [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 161), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 208), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 208), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 209), - [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 209), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 210), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 210), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 211), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 211), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 212), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 212), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 164), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 164), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 213), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 213), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 166), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 166), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 214), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 214), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 215), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 215), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 216), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 216), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 217), - [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 217), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 161), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 161), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 218), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 218), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 201), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 201), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 180), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 180), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 227), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 227), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 228), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 228), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 229), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 229), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 188), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 188), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 230), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 230), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 231), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 231), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 232), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 232), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 137), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 137), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 233), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 233), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 234), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 234), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 235), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 235), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 236), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 236), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 237), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 237), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 238), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 238), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 239), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 239), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 195), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 195), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 240), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 240), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 54), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 54), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 204), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 204), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 244), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 244), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 209), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 209), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 245), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 245), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 211), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 211), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 246), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 246), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 247), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 247), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 248), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 248), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 249), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 249), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 250), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 250), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 221), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 221), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 252), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 252), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 253), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 253), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 254), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 254), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 255), - [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 255), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 256), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 256), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 257), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 257), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 225), - [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 225), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 227), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 227), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 260), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 260), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 261), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 261), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 231), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 231), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 262), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 262), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 250), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 250), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 263), - [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 263), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 233), - [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 233), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 264), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 264), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 238), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 238), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 265), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 265), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 266), - [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 266), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 267), - [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 267), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 268), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 268), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 269), - [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 269), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 254), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 254), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 270), - [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 270), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 256), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 256), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 271), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 271), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 260), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 260), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 272), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 272), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 274), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 274), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 266), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 266), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 275), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 275), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 276), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 276), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 277), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 277), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 273), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 273), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 278), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 278), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 162), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 162), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 120), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 120), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 163), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 163), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 164), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 164), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 165), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 165), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 166), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 166), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 167), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 167), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 71), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 71), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 72), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 72), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 123), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 123), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 73), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 73), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 169), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 169), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 74), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 74), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 79), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 79), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 80), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 80), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 170), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 170), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 171), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 171), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 156), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 156), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 22), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 22), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 81), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 81), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 82), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 82), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 29), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 29), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 71), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 71), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 84), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 84), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 29), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 29), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 174), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 174), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 72), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 72), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 71), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 71), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 72), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 72), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 179), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 179), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 130), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 130), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 180), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 180), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 131), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 131), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 85), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 85), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 72), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 72), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 86), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 86), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 84), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 84), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 71), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 71), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 72), - [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 72), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 63), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 63), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 88), - [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 88), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 93), - [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 93), - [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 88), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 88), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 93), - [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 93), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 88), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 88), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 88), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 88), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 96), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 96), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 54), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 54), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 181), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 181), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 182), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 182), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 183), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 183), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 184), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 184), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 185), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 185), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 188), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 188), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 189), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 189), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 140), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 140), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 110), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 110), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 29), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 29), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 190), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 190), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 111), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 111), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 112), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 112), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 113), - [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 113), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 73), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 73), - [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 114), - [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 114), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 174), - [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 174), - [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 37), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 37), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 183), - [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 183), - [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 120), - [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 120), - [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 121), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 121), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 79), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 79), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 122), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 122), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 88), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 88), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 137), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 137), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 123), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 123), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 124), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 124), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 100), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 100), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 183), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 183), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 116), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 116), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 125), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 125), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 22), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 22), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 31), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 31), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 183), - [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 183), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 110), - [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 110), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 192), - [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 192), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 32), - [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 32), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 193), - [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 193), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), - [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 195), - [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 195), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 196), - [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 196), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 29), - [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 29), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 72), - [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 72), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 111), - [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 111), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 128), - [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 128), - [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 111), - [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 111), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 129), - [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 129), - [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 130), - [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 130), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 86), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 86), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 84), - [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 84), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 131), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 131), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 111), - [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 111), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), - [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), - [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 63), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 63), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 134), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 134), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 135), - [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 135), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), - [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), - [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 140), - [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 140), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 141), - [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 141), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 135), - [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 135), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 137), - [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 137), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 88), - [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 88), - [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 135), - [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 135), - [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 142), - [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 142), - [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 137), - [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 137), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 135), - [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 135), - [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 137), - [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 137), - [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 143), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 143), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 144), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 144), - [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), - [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), - [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 34), - [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 34), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 54), - [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 54), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), - [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 29), - [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 29), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 112), - [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 112), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), - [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 54), - [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 54), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 29), - [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 29), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 94), - [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 94), - [2739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3164), - [2742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1435), - [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3028), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3442), - [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [2756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3166), - [2759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3290), - [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2318), - [2765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2267), - [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2188), - [2771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3620), - [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3291), - [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(859), - [2780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(807), - [2783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3330), - [2786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1952), - [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3006), - [2792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3331), - [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3332), - [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3333), - [2801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3046), - [2804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2191), - [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1885), - [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2076), - [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3340), - [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1995), - [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3340), - [2822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), - [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [2828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(776), - [2831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2290), - [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3070), - [2837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(805), - [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3031), - [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3032), - [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3172), - [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3315), - [2858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2589), - [2861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2102), - [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(826), - [2867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2311), - [2873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2629), - [2876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2391), - [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2584), - [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2584), - [2885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3511), - [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), - [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), - [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 0), - [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 0), - [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 1), - [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 1), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 24), - [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 24), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 24), - [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 24), - [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 104), - [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 104), - [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 40), - [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), - [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 25), - [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 25), - [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 45), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), - [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 105), - [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 105), - [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 25), - [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 25), - [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3315), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [3373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3553), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 19), - [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 19), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 20), - [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 20), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 21), - [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 21), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 23), - [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 23), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 26), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 26), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), - [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 64), - [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 64), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 66), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 66), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 107), - [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 107), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), - [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 41), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 46), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 49), - [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 49), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 50), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 50), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 67), - [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 67), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 62), - [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 62), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 63), - [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 63), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 63), - [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 63), - [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 76), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 76), - [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 35), - [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 35), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 119), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 119), - [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 102), - [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 102), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 103), - [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 103), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 106), - [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 106), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 108), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 108), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 150), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 150), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 152), - [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 152), - [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 153), - [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 153), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 154), - [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 154), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 99), - [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 99), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), - [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), - [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), - [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 42), - [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 43), - [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 42), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 127), - [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 127), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 47), - [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 47), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), - [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 22), - [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 22), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 51), - [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 51), - [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 52), - [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 79), - [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 79), - [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 146), - [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 146), - [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [3796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 76), - [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 76), - [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 119), - [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 119), - [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 175), - [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 175), - [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [3834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 76), - [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 76), - [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [3844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [3846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 119), - [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 119), - [3854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 83), - [3862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 83), - [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 172), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 172), - [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 172), - [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 116), - [3890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 116), - [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 116), - [3894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [3900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 97), - [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 97), - [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 200), - [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 200), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 48), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 48), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), - [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), - [3990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2684), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 126), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 126), - [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3193), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 173), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 173), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 117), + [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 117), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 138), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 138), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 202), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 202), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 205), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 205), + [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 206), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 206), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 158), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 158), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 207), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 207), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 160), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 160), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 208), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 208), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 162), + [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 162), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 209), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 209), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 210), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 210), + [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 211), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 211), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 212), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 212), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 213), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 213), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 165), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 165), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 214), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 214), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 167), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 167), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 215), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 215), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 216), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 216), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 217), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 217), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 218), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 218), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 219), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 219), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 202), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 202), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 181), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 181), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 227), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 227), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 228), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 228), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 229), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 229), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 230), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 230), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 189), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 189), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 231), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 231), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 232), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 232), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 233), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 233), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 192), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 192), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 234), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 234), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 235), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 235), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 236), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 236), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 237), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 237), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 238), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 238), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 239), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 239), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 240), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 240), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 196), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 196), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 241), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 241), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 205), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 205), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 245), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 245), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 210), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 210), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 246), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 246), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 212), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 212), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 247), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 247), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 248), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 248), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 249), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 249), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 250), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 250), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 251), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 251), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 222), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 222), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 253), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 253), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 224), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 224), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 254), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 254), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 255), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 255), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 256), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 256), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 257), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 257), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 226), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 226), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 228), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 228), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 260), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 260), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 261), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 261), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 262), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 262), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 232), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 232), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 263), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 263), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 251), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 251), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 264), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 264), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 234), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 234), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 265), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 265), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 239), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 239), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 266), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 266), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 267), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 267), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 268), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 268), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 269), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 269), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 270), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 270), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 255), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 255), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 271), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 271), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 257), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 257), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 272), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 272), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 261), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 261), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 273), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 273), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 274), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 274), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 275), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 275), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 267), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 267), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 276), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 276), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 277), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 277), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 278), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 278), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 274), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 274), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 279), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 279), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 72), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 72), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 73), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 73), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 74), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 74), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 75), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 75), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 80), + [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 80), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 81), + [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 81), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 22), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 22), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 82), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 82), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 83), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 83), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 29), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 29), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 72), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 72), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 85), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 85), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 73), + [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 73), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 72), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 72), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 86), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 86), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 73), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 73), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 87), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 87), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 85), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 85), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 72), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 72), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 73), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 73), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 64), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 64), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 89), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 89), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 94), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 94), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 89), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 89), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 94), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 94), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 95), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 95), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 96), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 96), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 89), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 89), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 89), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 89), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 97), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 97), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 29), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 29), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 54), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 54), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 22), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 22), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 31), + [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 31), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 32), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 32), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 111), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 111), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 112), + [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 112), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 113), + [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 113), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 114), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 114), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 115), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 115), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 34), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 34), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 121), + [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 121), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 122), + [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 122), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 80), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 80), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 123), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 123), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 124), + [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 124), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 125), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 125), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 101), + [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 101), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 117), + [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 117), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 126), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 126), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), + [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 111), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 111), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 29), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 29), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 29), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 29), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 73), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 73), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 112), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 112), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 129), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 129), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 112), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 112), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 130), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 130), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 131), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 131), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 87), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 87), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 85), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 85), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 132), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 132), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 112), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 112), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 134), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 134), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 64), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 64), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 135), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 135), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 138), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 138), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 29), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 29), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 141), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 141), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 142), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 142), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 136), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 136), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 138), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 138), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 89), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 89), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 136), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 136), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 143), + [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 143), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 138), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 138), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 136), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 136), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 138), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 138), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 145), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 145), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 29), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 29), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 37), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 37), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 54), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 54), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), + [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 113), + [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 113), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 157), + [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 157), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 158), + [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 158), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 159), + [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 159), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 160), + [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 160), + [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 161), + [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 161), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 162), + [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 162), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 163), + [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 163), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 121), + [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 121), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 164), + [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 164), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 165), + [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 165), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 166), + [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 166), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 167), + [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 167), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 124), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 124), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 169), + [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 169), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 170), + [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 170), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 171), + [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 171), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 172), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 172), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 175), + [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 175), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 73), + [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 73), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 180), + [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 180), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 131), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 131), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 181), + [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 181), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 132), + [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 132), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 133), + [2641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 133), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 182), + [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 182), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 183), + [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 183), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 184), + [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 184), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 185), + [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 185), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 186), + [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 186), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 189), + [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 189), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 190), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 190), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 141), + [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 141), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 191), + [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 191), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 175), + [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 175), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 54), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 54), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 184), + [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 184), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 89), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 89), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 138), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 138), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 184), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 184), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 192), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 192), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 184), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 184), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 193), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 193), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 196), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 196), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 197), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 197), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 54), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 54), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), + [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 74), + [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 74), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [2799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), + [2802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [2805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(781), + [2808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2247), + [2811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3181), + [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(819), + [2817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(836), + [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(844), + [2823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2882), + [2826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2883), + [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3177), + [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3322), + [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2550), + [2838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2102), + [2841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(827), + [2844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(826), + [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2305), + [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2600), + [2853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), + [2856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2644), + [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2644), + [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3523), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3081), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1463), + [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3034), + [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [2880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3561), + [2883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(844), + [2886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3336), + [2889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3302), + [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), + [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2295), + [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2193), + [2901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3632), + [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3303), + [2907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(858), + [2910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [2913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3340), + [2916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1959), + [2919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2899), + [2922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3341), + [2925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3342), + [2928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3343), + [2931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2900), + [2934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), + [2937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1894), + [2940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2079), + [2943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3350), + [2946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2004), + [2949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3350), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 1), + [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 1), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 0), + [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 0), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 105), + [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 105), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 24), + [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 24), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 24), + [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 24), + [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 40), + [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 25), + [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 25), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 106), + [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 106), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), + [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), + [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 45), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), + [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 25), + [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 25), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3322), + [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 21), + [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 21), + [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 23), + [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 23), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 26), + [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 26), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 65), + [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 65), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 67), + [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 67), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 68), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 68), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 20), + [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 20), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 41), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 46), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 49), + [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 49), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 50), + [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 50), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), + [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3564), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 19), + [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 19), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 108), + [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 108), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 22), + [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 22), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 63), + [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 63), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 64), + [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 64), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 64), + [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 64), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 147), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 147), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 103), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 103), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 104), + [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 104), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 107), + [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 107), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 109), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 109), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 151), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 151), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 153), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 153), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 154), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 154), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 155), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 155), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 201), + [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 201), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 77), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 77), + [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 77), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 77), + [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 120), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 120), + [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 176), + [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 176), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 84), + [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 84), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 80), + [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 80), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), + [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), + [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 35), + [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 35), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [3776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 98), + [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 98), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 120), + [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 120), + [3798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 100), + [3808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 100), + [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [3814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), + [3816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), + [3818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 173), + [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 173), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 173), + [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 42), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 43), + [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 42), + [3830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 47), + [3844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 47), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [3850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), + [3854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), + [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 117), + [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 117), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 117), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 51), + [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 51), + [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 52), + [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [3870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 77), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 77), + [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 120), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 120), + [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 55), + [3898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 55), + [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 128), + [3902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 128), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), + [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), + [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [3924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [3962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), + [3966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), + [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), + [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 48), + [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 48), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [4014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 127), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 127), + [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3274), + [4033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2664), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 155), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 172), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 186), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 187), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 138), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 139), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 116), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 202), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 203), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 116), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 243), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 156), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), + [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 203), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 204), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 117), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 173), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 187), + [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 244), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 188), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 117), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 139), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 140), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [4388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 110), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 109), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [4615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [4621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 1), - [4689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 1), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 55), - [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 55), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [4713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [4733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 59), - [4739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 59), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 0), - [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 0), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [4785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 56), - [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [4797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 57), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 56), - [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 61), - [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), - [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 56), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [4829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 56), - [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 57), - [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 61), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 56), - [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 56), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 56), - [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 57), - [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 57), - [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 61), - [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 61), - [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 56), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), - [4887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), - [4906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(846), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(75), - [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), - [4932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(76), - [4935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(77), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2318), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), - [5059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2203), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 70), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), - [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 56), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [5281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 56), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [5394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [5420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [5434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(1953), - [5437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(406), - [5440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [5443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), - [5445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1485), - [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 119), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 63), - [5480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), - [5483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 22), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [5493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 176), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [5555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 63), - [5557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 219), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [5561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 176), - [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 102), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 219), - [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 102), - [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 251), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 76), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 251), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), - [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 22), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [5651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2800), - [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 48), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 198), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 147), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [5714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [5717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), - [5747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(820), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [5752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 100), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [5770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 78), - [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 77), - [5837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 60), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [5847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [5879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [5929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 199), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [5935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [5981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3301), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [5990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 22), - [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [5996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [6002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(768), - [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 177), - [6007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 177), SHIFT_REPEAT(780), - [6010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 78), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 178), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [6030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [6032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2212), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [6039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2193), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [6050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 34), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [6078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 101), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [6082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 63), - [6102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [6104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 89), - [6106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [6108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 90), - [6110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [6124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 91), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [6130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 92), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [6138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 220), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [6146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [6158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(991), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [6179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 110), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [6187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(444), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [6200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 148), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [6206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [6212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 149), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [4508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [4627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [4630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [4633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [4654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), REDUCE(sym_scoped_type_identifier, 3, 0, 46), + [4657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 1), + [4705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 1), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 60), + [4741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 60), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 0), + [4751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 0), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 56), + [4761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 56), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [4783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [4797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 57), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 62), + [4819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 57), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 57), + [4833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 62), + [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 57), + [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 57), + [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 58), + [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 57), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 58), + [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 58), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 62), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 57), + [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 62), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 57), + [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 58), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), + [4905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(861), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [4933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(73), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), + [4938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [4941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(80), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [4972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), + [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), + [5019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2195), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [5168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [5212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [5224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 71), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 57), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [5383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 57), + [5386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [5414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [5422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [5426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 177), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [5438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [5475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(1954), + [5478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(409), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [5485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 77), + [5487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 64), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [5516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 220), + [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 252), + [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 64), + [5528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 220), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 177), + [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 22), + [5562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 103), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [5588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), + [5590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1484), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [5599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 252), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 120), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 22), + [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 103), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [5635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3019), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), + [5644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(808), + [5647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [5722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 199), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 101), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [5772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 61), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 48), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [5798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 79), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 148), + [5806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 78), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [5878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 103), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [5967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 200), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [5971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [6017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2211), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [6054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [6082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 78), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 36), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [6110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [6112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(770), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 79), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 102), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 22), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [6189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [6191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(896), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [6234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1887), - [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [6239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2326), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 242), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 58), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [6302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [6310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 102), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [6318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 36), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [6330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [6334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(789), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [6339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [6341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2162), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 117), - [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [6368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2069), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [6373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 118), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [6393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(413), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [6468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 77), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [6514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [6538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 151), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [6586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), - [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [6594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [6604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), - [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [6620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), - [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [6696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), - [6698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [6724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 32), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [6736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 65), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [6850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [6884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [6942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 173), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [6952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [7024] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [7150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 68), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [7180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [7210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 69), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [7226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), - [7228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), - [7230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), - [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), - [7234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 53), - [7236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), - [7238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [6234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1890), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [6245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2145), + [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 64), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 59), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 221), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [6296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), + [6304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [6347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 178), + [6349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 178), SHIFT_REPEAT(784), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [6360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(451), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 149), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [6373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 150), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [6377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 118), + [6379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [6381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2317), + [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [6388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 90), + [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 91), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [6400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 92), + [6402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [6411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2062), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [6418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3211), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [6431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 93), + [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [6435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2191), + [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 34), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [6444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [6450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 119), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 111), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 179), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [6490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [6494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 243), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [6518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [6538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), + [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), + [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [6570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [6572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [6602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), + [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [6608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [6708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [6716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 152), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [6732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 66), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [6744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 32), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [6812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 174), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [6938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [7004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [7016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [7080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 69), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [7088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 70), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [7144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [7160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [7186] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [7246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [7248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), + [7250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 53), + [7252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), + [7254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), + [7256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), + [7258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -194221,19 +194880,19 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_string_content] = true, }, [5] = { - [ts_external_token_float_literal] = true, + [ts_external_token__block_comment_content] = true, }, [6] = { - [ts_external_token__block_comment_content] = true, + [ts_external_token_float_literal] = true, }, [7] = { - [ts_external_token__raw_string_literal_end] = true, + [ts_external_token_raw_string_literal_content] = true, }, [8] = { - [ts_external_token__line_doc_content] = true, + [ts_external_token__raw_string_literal_end] = true, }, [9] = { - [ts_external_token_raw_string_literal_content] = true, + [ts_external_token__line_doc_content] = true, }, }; diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 097d31c..1668704 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -66,10 +66,21 @@ Reference expressions &a; &mut self.name; +&raw const b; +&raw mut self.age; -------------------------------------------------------------------------------- (source_file + (expression_statement + (reference_expression + (identifier))) + (expression_statement + (reference_expression + (mutable_specifier) + (field_expression + (self) + (field_identifier)))) (expression_statement (reference_expression (identifier)))